blob: e1b46bc7e43cd245794f02610afe6c88d49eeb47 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Alan Cox37bdfb02008-02-08 04:18:47 -080022 * makes for cleaner and more compact code. -TYT, 9/17/92
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 *
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
Alan Cox37bdfb02008-02-08 04:18:47 -080044 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * 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.
Alan Cox37bdfb02008-02-08 04:18:47 -080065 * alloc_tty_struct() always uses kmalloc()
66 * -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 */
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <linux/types.h>
70#include <linux/major.h>
71#include <linux/errno.h>
72#include <linux/signal.h>
73#include <linux/fcntl.h>
74#include <linux/sched.h>
75#include <linux/interrupt.h>
76#include <linux/tty.h>
77#include <linux/tty_driver.h>
78#include <linux/tty_flip.h>
79#include <linux/devpts_fs.h>
80#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040081#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/console.h>
83#include <linux/timer.h>
84#include <linux/ctype.h>
85#include <linux/kd.h>
86#include <linux/mm.h>
87#include <linux/string.h>
88#include <linux/slab.h>
89#include <linux/poll.h>
90#include <linux/proc_fs.h>
91#include <linux/init.h>
92#include <linux/module.h>
93#include <linux/smp_lock.h>
94#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/wait.h>
96#include <linux/bitops.h>
Domen Puncerb20f3ae2005-06-25 14:58:42 -070097#include <linux/delay.h>
Alan Coxa352def2008-07-16 21:53:12 +010098#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Alan Coxa352def2008-07-16 21:53:12 +0100100#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <asm/system.h>
102
103#include <linux/kbd_kern.h>
104#include <linux/vt_kern.h>
105#include <linux/selection.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107#include <linux/kmod.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700108#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#undef TTY_DEBUG_HANGUP
111
112#define TTY_PARANOIA_CHECK 1
113#define CHECK_TTY_COUNT 1
114
Alan Coxedc6afc2006-12-08 02:38:44 -0800115struct ktermios tty_std_termios = { /* for the benefit of tty drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .c_iflag = ICRNL | IXON,
117 .c_oflag = OPOST | ONLCR,
118 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
119 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
120 ECHOCTL | ECHOKE | IEXTEN,
Alan Coxedc6afc2006-12-08 02:38:44 -0800121 .c_cc = INIT_C_CC,
122 .c_ispeed = 38400,
123 .c_ospeed = 38400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126EXPORT_SYMBOL(tty_std_termios);
127
128/* This list gets poked at by procfs and various bits of boot up code. This
129 could do with some rationalisation such as pulling the tty proc function
130 into this file */
Alan Cox37bdfb02008-02-08 04:18:47 -0800131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132LIST_HEAD(tty_drivers); /* linked list of tty drivers */
133
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800134/* Mutex to protect creating and releasing a tty. This is shared with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 vt.c for deeply disgusting hack reasons */
Ingo Molnar70522e12006-03-23 03:00:31 -0800136DEFINE_MUTEX(tty_mutex);
Alan Coxde2a84f2006-09-29 02:00:57 -0700137EXPORT_SYMBOL(tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139#ifdef CONFIG_UNIX98_PTYS
140extern struct tty_driver *ptm_driver; /* Unix98 pty masters; for /dev/ptmx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static int ptmx_open(struct inode *, struct file *);
142#endif
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static void initialize_tty_struct(struct tty_struct *tty);
145
146static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
147static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
Alan Cox37bdfb02008-02-08 04:18:47 -0800148ssize_t redirected_tty_write(struct file *, const char __user *,
149 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static unsigned int tty_poll(struct file *, poll_table *);
151static int tty_open(struct inode *, struct file *);
152static int tty_release(struct inode *, struct file *);
Alan Cox04f378b2008-04-30 00:53:29 -0700153long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700154#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -0800155static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700156 unsigned long arg);
157#else
158#define tty_compat_ioctl NULL
159#endif
Alan Cox37bdfb02008-02-08 04:18:47 -0800160static int tty_fasync(int fd, struct file *filp, int on);
Christoph Hellwigd5698c22007-02-10 01:46:46 -0800161static void release_tty(struct tty_struct *tty, int idx);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700162static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700163static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Alan Coxaf9b8972006-08-27 01:24:01 -0700165/**
166 * alloc_tty_struct - allocate a tty object
167 *
168 * Return a new empty tty structure. The data fields have not
169 * been initialized in any way but has been zeroed
170 *
171 * Locking: none
Alan Coxaf9b8972006-08-27 01:24:01 -0700172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174static struct tty_struct *alloc_tty_struct(void)
175{
Alan Cox1266b1e2006-09-29 02:00:40 -0700176 return kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Alan Cox33f0f882006-01-09 20:54:13 -0800179static void tty_buffer_free_all(struct tty_struct *);
180
Alan Coxaf9b8972006-08-27 01:24:01 -0700181/**
182 * free_tty_struct - free a disused tty
183 * @tty: tty struct to free
184 *
185 * Free the write buffers, tty queue and tty memory itself.
186 *
187 * Locking: none. Must be called after tty is definitely unused
188 */
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static inline void free_tty_struct(struct tty_struct *tty)
191{
192 kfree(tty->write_buf);
Alan Cox33f0f882006-01-09 20:54:13 -0800193 tty_buffer_free_all(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 kfree(tty);
195}
196
197#define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
198
Alan Coxaf9b8972006-08-27 01:24:01 -0700199/**
200 * tty_name - return tty naming
201 * @tty: tty structure
202 * @buf: buffer for output
203 *
204 * Convert a tty structure into a name. The name reflects the kernel
205 * naming policy and if udev is in use may not reflect user space
206 *
207 * Locking: none
208 */
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210char *tty_name(struct tty_struct *tty, char *buf)
211{
212 if (!tty) /* Hmm. NULL pointer. That's fun. */
213 strcpy(buf, "NULL tty");
214 else
215 strcpy(buf, tty->name);
216 return buf;
217}
218
219EXPORT_SYMBOL(tty_name);
220
Andrew Mortond769a662005-05-05 16:15:50 -0700221int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 const char *routine)
223{
224#ifdef TTY_PARANOIA_CHECK
225 if (!tty) {
226 printk(KERN_WARNING
227 "null TTY for (%d:%d) in %s\n",
228 imajor(inode), iminor(inode), routine);
229 return 1;
230 }
231 if (tty->magic != TTY_MAGIC) {
232 printk(KERN_WARNING
233 "bad magic number for tty struct (%d:%d) in %s\n",
234 imajor(inode), iminor(inode), routine);
235 return 1;
236 }
237#endif
238 return 0;
239}
240
241static int check_tty_count(struct tty_struct *tty, const char *routine)
242{
243#ifdef CHECK_TTY_COUNT
244 struct list_head *p;
245 int count = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -0800246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 file_list_lock();
248 list_for_each(p, &tty->tty_files) {
249 count++;
250 }
251 file_list_unlock();
252 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
253 tty->driver->subtype == PTY_TYPE_SLAVE &&
254 tty->link && tty->link->count)
255 count++;
256 if (tty->count != count) {
257 printk(KERN_WARNING "Warning: dev (%s) tty->count(%d) "
258 "!= #fd's(%d) in %s\n",
259 tty->name, tty->count, count, routine);
260 return count;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif
263 return 0;
264}
265
266/*
Alan Cox33f0f882006-01-09 20:54:13 -0800267 * Tty buffer allocation management
268 */
269
Alan Cox01da5fd2006-08-27 01:24:02 -0700270/**
271 * tty_buffer_free_all - free buffers used by a tty
272 * @tty: tty to free from
273 *
274 * Remove all the buffers pending on a tty whether queued with data
275 * or in the free ring. Must be called when the tty is no longer in use
276 *
277 * Locking: none
278 */
279
Alan Cox33f0f882006-01-09 20:54:13 -0800280static void tty_buffer_free_all(struct tty_struct *tty)
281{
282 struct tty_buffer *thead;
Alan Cox37bdfb02008-02-08 04:18:47 -0800283 while ((thead = tty->buf.head) != NULL) {
Alan Cox33f0f882006-01-09 20:54:13 -0800284 tty->buf.head = thead->next;
285 kfree(thead);
286 }
Alan Cox37bdfb02008-02-08 04:18:47 -0800287 while ((thead = tty->buf.free) != NULL) {
Alan Cox33f0f882006-01-09 20:54:13 -0800288 tty->buf.free = thead->next;
289 kfree(thead);
290 }
291 tty->buf.tail = NULL;
Alan Cox01da5fd2006-08-27 01:24:02 -0700292 tty->buf.memory_used = 0;
Alan Cox33f0f882006-01-09 20:54:13 -0800293}
294
Alan Cox01da5fd2006-08-27 01:24:02 -0700295/**
296 * tty_buffer_init - prepare a tty buffer structure
297 * @tty: tty to initialise
298 *
299 * Set up the initial state of the buffer management for a tty device.
300 * Must be called before the other tty buffer functions are used.
301 *
302 * Locking: none
303 */
304
Alan Cox33f0f882006-01-09 20:54:13 -0800305static void tty_buffer_init(struct tty_struct *tty)
306{
Paul Fulghum808249c2006-02-03 03:04:41 -0800307 spin_lock_init(&tty->buf.lock);
Alan Cox33f0f882006-01-09 20:54:13 -0800308 tty->buf.head = NULL;
309 tty->buf.tail = NULL;
310 tty->buf.free = NULL;
Alan Cox01da5fd2006-08-27 01:24:02 -0700311 tty->buf.memory_used = 0;
Alan Cox33f0f882006-01-09 20:54:13 -0800312}
313
Alan Cox01da5fd2006-08-27 01:24:02 -0700314/**
315 * tty_buffer_alloc - allocate a tty buffer
316 * @tty: tty device
317 * @size: desired size (characters)
318 *
319 * Allocate a new tty buffer to hold the desired number of characters.
320 * Return NULL if out of memory or the allocation would exceed the
321 * per device queue
322 *
323 * Locking: Caller must hold tty->buf.lock
324 */
325
326static struct tty_buffer *tty_buffer_alloc(struct tty_struct *tty, size_t size)
Alan Cox33f0f882006-01-09 20:54:13 -0800327{
Alan Cox01da5fd2006-08-27 01:24:02 -0700328 struct tty_buffer *p;
329
330 if (tty->buf.memory_used + size > 65536)
331 return NULL;
332 p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC);
Alan Cox37bdfb02008-02-08 04:18:47 -0800333 if (p == NULL)
Alan Cox33f0f882006-01-09 20:54:13 -0800334 return NULL;
335 p->used = 0;
336 p->size = size;
337 p->next = NULL;
Paul Fulghum8977d922006-02-10 01:51:14 -0800338 p->commit = 0;
339 p->read = 0;
Alan Cox33f0f882006-01-09 20:54:13 -0800340 p->char_buf_ptr = (char *)(p->data);
341 p->flag_buf_ptr = (unsigned char *)p->char_buf_ptr + size;
Alan Cox01da5fd2006-08-27 01:24:02 -0700342 tty->buf.memory_used += size;
Alan Cox33f0f882006-01-09 20:54:13 -0800343 return p;
344}
345
Alan Cox01da5fd2006-08-27 01:24:02 -0700346/**
347 * tty_buffer_free - free a tty buffer
348 * @tty: tty owning the buffer
349 * @b: the buffer to free
350 *
351 * Free a tty buffer, or add it to the free list according to our
352 * internal strategy
353 *
354 * Locking: Caller must hold tty->buf.lock
355 */
Alan Cox33f0f882006-01-09 20:54:13 -0800356
357static void tty_buffer_free(struct tty_struct *tty, struct tty_buffer *b)
358{
359 /* Dumb strategy for now - should keep some stats */
Alan Cox01da5fd2006-08-27 01:24:02 -0700360 tty->buf.memory_used -= b->size;
361 WARN_ON(tty->buf.memory_used < 0);
362
Alan Cox37bdfb02008-02-08 04:18:47 -0800363 if (b->size >= 512)
Alan Cox33f0f882006-01-09 20:54:13 -0800364 kfree(b);
365 else {
366 b->next = tty->buf.free;
367 tty->buf.free = b;
368 }
369}
370
Alan Cox01da5fd2006-08-27 01:24:02 -0700371/**
Alan Cox42fd5522007-08-10 13:01:05 -0700372 * __tty_buffer_flush - flush full tty buffers
373 * @tty: tty to flush
374 *
375 * flush all the buffers containing receive data. Caller must
376 * hold the buffer lock and must have ensured no parallel flush to
377 * ldisc is running.
378 *
379 * Locking: Caller must hold tty->buf.lock
380 */
381
382static void __tty_buffer_flush(struct tty_struct *tty)
383{
384 struct tty_buffer *thead;
385
Alan Cox37bdfb02008-02-08 04:18:47 -0800386 while ((thead = tty->buf.head) != NULL) {
Alan Cox42fd5522007-08-10 13:01:05 -0700387 tty->buf.head = thead->next;
388 tty_buffer_free(tty, thead);
389 }
390 tty->buf.tail = NULL;
391}
392
393/**
Paul Fulghumc5c34d42007-05-12 10:36:55 -0700394 * tty_buffer_flush - flush full tty buffers
395 * @tty: tty to flush
396 *
Alan Cox42fd5522007-08-10 13:01:05 -0700397 * flush all the buffers containing receive data. If the buffer is
398 * being processed by flush_to_ldisc then we defer the processing
399 * to that function
Paul Fulghumc5c34d42007-05-12 10:36:55 -0700400 *
401 * Locking: none
402 */
403
404static void tty_buffer_flush(struct tty_struct *tty)
405{
Paul Fulghumc5c34d42007-05-12 10:36:55 -0700406 unsigned long flags;
Paul Fulghumc5c34d42007-05-12 10:36:55 -0700407 spin_lock_irqsave(&tty->buf.lock, flags);
Alan Cox42fd5522007-08-10 13:01:05 -0700408
409 /* If the data is being pushed to the tty layer then we can't
410 process it here. Instead set a flag and the flush_to_ldisc
411 path will process the flush request before it exits */
412 if (test_bit(TTY_FLUSHING, &tty->flags)) {
413 set_bit(TTY_FLUSHPENDING, &tty->flags);
414 spin_unlock_irqrestore(&tty->buf.lock, flags);
415 wait_event(tty->read_wait,
416 test_bit(TTY_FLUSHPENDING, &tty->flags) == 0);
417 return;
418 } else
419 __tty_buffer_flush(tty);
Paul Fulghumc5c34d42007-05-12 10:36:55 -0700420 spin_unlock_irqrestore(&tty->buf.lock, flags);
421}
422
423/**
Alan Cox01da5fd2006-08-27 01:24:02 -0700424 * tty_buffer_find - find a free tty buffer
425 * @tty: tty owning the buffer
426 * @size: characters wanted
427 *
428 * Locate an existing suitable tty buffer or if we are lacking one then
429 * allocate a new one. We round our buffers off in 256 character chunks
430 * to get better allocation behaviour.
431 *
432 * Locking: Caller must hold tty->buf.lock
433 */
434
Alan Cox33f0f882006-01-09 20:54:13 -0800435static struct tty_buffer *tty_buffer_find(struct tty_struct *tty, size_t size)
436{
437 struct tty_buffer **tbh = &tty->buf.free;
Alan Cox37bdfb02008-02-08 04:18:47 -0800438 while ((*tbh) != NULL) {
Alan Cox33f0f882006-01-09 20:54:13 -0800439 struct tty_buffer *t = *tbh;
Alan Cox37bdfb02008-02-08 04:18:47 -0800440 if (t->size >= size) {
Alan Cox33f0f882006-01-09 20:54:13 -0800441 *tbh = t->next;
442 t->next = NULL;
443 t->used = 0;
Paul Fulghum8977d922006-02-10 01:51:14 -0800444 t->commit = 0;
445 t->read = 0;
Alan Cox01da5fd2006-08-27 01:24:02 -0700446 tty->buf.memory_used += t->size;
Alan Cox33f0f882006-01-09 20:54:13 -0800447 return t;
448 }
449 tbh = &((*tbh)->next);
450 }
451 /* Round the buffer size out */
Alan Cox37bdfb02008-02-08 04:18:47 -0800452 size = (size + 0xFF) & ~0xFF;
Alan Cox01da5fd2006-08-27 01:24:02 -0700453 return tty_buffer_alloc(tty, size);
Alan Cox33f0f882006-01-09 20:54:13 -0800454 /* Should possibly check if this fails for the largest buffer we
455 have queued and recycle that ? */
456}
457
Alan Cox01da5fd2006-08-27 01:24:02 -0700458/**
459 * tty_buffer_request_room - grow tty buffer if needed
460 * @tty: tty structure
461 * @size: size desired
462 *
463 * Make at least size bytes of linear space available for the tty
464 * buffer. If we fail return the size we managed to find.
465 *
466 * Locking: Takes tty->buf.lock
467 */
Alan Cox33f0f882006-01-09 20:54:13 -0800468int tty_buffer_request_room(struct tty_struct *tty, size_t size)
469{
Paul Fulghum808249c2006-02-03 03:04:41 -0800470 struct tty_buffer *b, *n;
471 int left;
472 unsigned long flags;
473
474 spin_lock_irqsave(&tty->buf.lock, flags);
Alan Cox33f0f882006-01-09 20:54:13 -0800475
476 /* OPTIMISATION: We could keep a per tty "zero" sized buffer to
477 remove this conditional if its worth it. This would be invisible
478 to the callers */
Paul Fulghum33b37a32006-06-28 04:26:49 -0700479 if ((b = tty->buf.tail) != NULL)
Alan Cox33f0f882006-01-09 20:54:13 -0800480 left = b->size - b->used;
Paul Fulghum33b37a32006-06-28 04:26:49 -0700481 else
Paul Fulghum808249c2006-02-03 03:04:41 -0800482 left = 0;
483
484 if (left < size) {
485 /* This is the slow path - looking for new buffers to use */
486 if ((n = tty_buffer_find(tty, size)) != NULL) {
487 if (b != NULL) {
488 b->next = n;
Paul Fulghum8977d922006-02-10 01:51:14 -0800489 b->commit = b->used;
Paul Fulghum808249c2006-02-03 03:04:41 -0800490 } else
491 tty->buf.head = n;
492 tty->buf.tail = n;
Paul Fulghum808249c2006-02-03 03:04:41 -0800493 } else
494 size = left;
495 }
496
497 spin_unlock_irqrestore(&tty->buf.lock, flags);
Alan Cox33f0f882006-01-09 20:54:13 -0800498 return size;
499}
Alan Cox33f0f882006-01-09 20:54:13 -0800500EXPORT_SYMBOL_GPL(tty_buffer_request_room);
501
Alan Coxaf9b8972006-08-27 01:24:01 -0700502/**
503 * tty_insert_flip_string - Add characters to the tty buffer
504 * @tty: tty structure
505 * @chars: characters
506 * @size: size
507 *
508 * Queue a series of bytes to the tty buffering. All the characters
509 * passed are marked as without error. Returns the number added.
510 *
511 * Locking: Called functions may take tty->buf.lock
512 */
513
Andrew Mortone1a25092006-04-10 22:54:05 -0700514int tty_insert_flip_string(struct tty_struct *tty, const unsigned char *chars,
515 size_t size)
Alan Cox33f0f882006-01-09 20:54:13 -0800516{
517 int copied = 0;
518 do {
519 int space = tty_buffer_request_room(tty, size - copied);
520 struct tty_buffer *tb = tty->buf.tail;
521 /* If there is no space then tb may be NULL */
Alan Cox37bdfb02008-02-08 04:18:47 -0800522 if (unlikely(space == 0))
Alan Cox33f0f882006-01-09 20:54:13 -0800523 break;
524 memcpy(tb->char_buf_ptr + tb->used, chars, space);
525 memset(tb->flag_buf_ptr + tb->used, TTY_NORMAL, space);
526 tb->used += space;
527 copied += space;
528 chars += space;
Alexey Dobriyan527063b2006-09-29 01:59:50 -0700529 /* There is a small chance that we need to split the data over
530 several buffers. If this is the case we must loop */
531 } while (unlikely(size > copied));
Alan Cox33f0f882006-01-09 20:54:13 -0800532 return copied;
533}
Andrew Mortonee37df72006-03-31 02:30:35 -0800534EXPORT_SYMBOL(tty_insert_flip_string);
Alan Cox33f0f882006-01-09 20:54:13 -0800535
Alan Coxaf9b8972006-08-27 01:24:01 -0700536/**
537 * tty_insert_flip_string_flags - Add characters to the tty buffer
538 * @tty: tty structure
539 * @chars: characters
540 * @flags: flag bytes
541 * @size: size
542 *
543 * Queue a series of bytes to the tty buffering. For each character
544 * the flags array indicates the status of the character. Returns the
545 * number added.
546 *
547 * Locking: Called functions may take tty->buf.lock
548 */
549
Andrew Mortone1a25092006-04-10 22:54:05 -0700550int tty_insert_flip_string_flags(struct tty_struct *tty,
551 const unsigned char *chars, const char *flags, size_t size)
Alan Cox33f0f882006-01-09 20:54:13 -0800552{
553 int copied = 0;
554 do {
555 int space = tty_buffer_request_room(tty, size - copied);
556 struct tty_buffer *tb = tty->buf.tail;
557 /* If there is no space then tb may be NULL */
Alan Cox37bdfb02008-02-08 04:18:47 -0800558 if (unlikely(space == 0))
Alan Cox33f0f882006-01-09 20:54:13 -0800559 break;
560 memcpy(tb->char_buf_ptr + tb->used, chars, space);
561 memcpy(tb->flag_buf_ptr + tb->used, flags, space);
562 tb->used += space;
563 copied += space;
564 chars += space;
565 flags += space;
Alexey Dobriyan527063b2006-09-29 01:59:50 -0700566 /* There is a small chance that we need to split the data over
567 several buffers. If this is the case we must loop */
568 } while (unlikely(size > copied));
Alan Cox33f0f882006-01-09 20:54:13 -0800569 return copied;
570}
Tobias Powalowskiff4547f2006-05-22 22:35:28 -0700571EXPORT_SYMBOL(tty_insert_flip_string_flags);
Alan Cox33f0f882006-01-09 20:54:13 -0800572
Alan Coxaf9b8972006-08-27 01:24:01 -0700573/**
574 * tty_schedule_flip - push characters to ldisc
575 * @tty: tty to push from
576 *
577 * Takes any pending buffers and transfers their ownership to the
578 * ldisc side of the queue. It then schedules those characters for
579 * processing by the line discipline.
580 *
581 * Locking: Takes tty->buf.lock
582 */
583
Andrew Mortone1a25092006-04-10 22:54:05 -0700584void tty_schedule_flip(struct tty_struct *tty)
585{
586 unsigned long flags;
587 spin_lock_irqsave(&tty->buf.lock, flags);
Paul Fulghum33b37a32006-06-28 04:26:49 -0700588 if (tty->buf.tail != NULL)
Andrew Mortone1a25092006-04-10 22:54:05 -0700589 tty->buf.tail->commit = tty->buf.tail->used;
Andrew Mortone1a25092006-04-10 22:54:05 -0700590 spin_unlock_irqrestore(&tty->buf.lock, flags);
591 schedule_delayed_work(&tty->buf.work, 1);
592}
593EXPORT_SYMBOL(tty_schedule_flip);
Alan Cox33f0f882006-01-09 20:54:13 -0800594
Alan Coxaf9b8972006-08-27 01:24:01 -0700595/**
596 * tty_prepare_flip_string - make room for characters
597 * @tty: tty
598 * @chars: return pointer for character write area
599 * @size: desired size
600 *
Alan Cox33f0f882006-01-09 20:54:13 -0800601 * Prepare a block of space in the buffer for data. Returns the length
602 * available and buffer pointer to the space which is now allocated and
603 * accounted for as ready for normal characters. This is used for drivers
604 * that need their own block copy routines into the buffer. There is no
605 * guarantee the buffer is a DMA target!
Alan Coxaf9b8972006-08-27 01:24:01 -0700606 *
607 * Locking: May call functions taking tty->buf.lock
Alan Cox33f0f882006-01-09 20:54:13 -0800608 */
609
Alan Cox37bdfb02008-02-08 04:18:47 -0800610int tty_prepare_flip_string(struct tty_struct *tty, unsigned char **chars,
611 size_t size)
Alan Cox33f0f882006-01-09 20:54:13 -0800612{
613 int space = tty_buffer_request_room(tty, size);
Paul Fulghum808249c2006-02-03 03:04:41 -0800614 if (likely(space)) {
615 struct tty_buffer *tb = tty->buf.tail;
616 *chars = tb->char_buf_ptr + tb->used;
617 memset(tb->flag_buf_ptr + tb->used, TTY_NORMAL, space);
618 tb->used += space;
619 }
Alan Cox33f0f882006-01-09 20:54:13 -0800620 return space;
621}
622
623EXPORT_SYMBOL_GPL(tty_prepare_flip_string);
624
Alan Coxaf9b8972006-08-27 01:24:01 -0700625/**
626 * tty_prepare_flip_string_flags - make room for characters
627 * @tty: tty
628 * @chars: return pointer for character write area
629 * @flags: return pointer for status flag write area
630 * @size: desired size
631 *
Alan Cox33f0f882006-01-09 20:54:13 -0800632 * Prepare a block of space in the buffer for data. Returns the length
633 * available and buffer pointer to the space which is now allocated and
634 * accounted for as ready for characters. This is used for drivers
635 * that need their own block copy routines into the buffer. There is no
636 * guarantee the buffer is a DMA target!
Alan Coxaf9b8972006-08-27 01:24:01 -0700637 *
638 * Locking: May call functions taking tty->buf.lock
Alan Cox33f0f882006-01-09 20:54:13 -0800639 */
640
Alan Cox37bdfb02008-02-08 04:18:47 -0800641int tty_prepare_flip_string_flags(struct tty_struct *tty,
642 unsigned char **chars, char **flags, size_t size)
Alan Cox33f0f882006-01-09 20:54:13 -0800643{
644 int space = tty_buffer_request_room(tty, size);
Paul Fulghum808249c2006-02-03 03:04:41 -0800645 if (likely(space)) {
646 struct tty_buffer *tb = tty->buf.tail;
647 *chars = tb->char_buf_ptr + tb->used;
648 *flags = tb->flag_buf_ptr + tb->used;
649 tb->used += space;
650 }
Alan Cox33f0f882006-01-09 20:54:13 -0800651 return space;
652}
653
654EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags);
655
656
657
Alan Coxaf9b8972006-08-27 01:24:01 -0700658/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700659 * get_tty_driver - find device of a tty
660 * @dev_t: device identifier
661 * @index: returns the index of the tty
662 *
663 * This routine returns a tty driver structure, given a device number
664 * and also passes back the index number.
665 *
666 * Locking: caller must hold tty_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669static struct tty_driver *get_tty_driver(dev_t device, int *index)
670{
671 struct tty_driver *p;
672
673 list_for_each_entry(p, &tty_drivers, tty_drivers) {
674 dev_t base = MKDEV(p->major, p->minor_start);
675 if (device < base || device >= base + p->num)
676 continue;
677 *index = device - base;
678 return p;
679 }
680 return NULL;
681}
682
Jason Wesself2d937f2008-04-17 20:05:37 +0200683#ifdef CONFIG_CONSOLE_POLL
684
685/**
686 * tty_find_polling_driver - find device of a polled tty
687 * @name: name string to match
688 * @line: pointer to resulting tty line nr
689 *
690 * This routine returns a tty driver structure, given a name
691 * and the condition that the tty driver is capable of polled
692 * operation.
693 */
694struct tty_driver *tty_find_polling_driver(char *name, int *line)
695{
696 struct tty_driver *p, *res = NULL;
697 int tty_line = 0;
698 char *str;
699
700 mutex_lock(&tty_mutex);
701 /* Search through the tty devices to look for a match */
702 list_for_each_entry(p, &tty_drivers, tty_drivers) {
703 str = name + strlen(p->name);
704 tty_line = simple_strtoul(str, &str, 10);
705 if (*str == ',')
706 str++;
707 if (*str == '\0')
Harvey Harrison8da56302008-04-28 14:13:20 -0700708 str = NULL;
Jason Wesself2d937f2008-04-17 20:05:37 +0200709
Alan Coxf34d7a52008-04-30 00:54:13 -0700710 if (tty_line >= 0 && tty_line <= p->num && p->ops &&
711 p->ops->poll_init && !p->ops->poll_init(p, tty_line, str)) {
Jason Wesself2d937f2008-04-17 20:05:37 +0200712 res = p;
713 *line = tty_line;
714 break;
715 }
716 }
717 mutex_unlock(&tty_mutex);
718
719 return res;
720}
721EXPORT_SYMBOL_GPL(tty_find_polling_driver);
722#endif
723
Alan Coxaf9b8972006-08-27 01:24:01 -0700724/**
725 * tty_check_change - check for POSIX terminal changes
726 * @tty: tty to check
727 *
728 * If we try to write to, or set the state of, a terminal and we're
729 * not in the foreground, send a SIGTTOU. If the signal is blocked or
730 * ignored, go ahead and perform the operation. (POSIX 7.2)
731 *
Alan Cox978e5952008-04-30 00:53:59 -0700732 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700734
Alan Cox37bdfb02008-02-08 04:18:47 -0800735int tty_check_change(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Alan Cox47f86832008-04-30 00:53:30 -0700737 unsigned long flags;
738 int ret = 0;
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (current->signal->tty != tty)
741 return 0;
Alan Cox47f86832008-04-30 00:53:30 -0700742
743 spin_lock_irqsave(&tty->ctrl_lock, flags);
744
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800745 if (!tty->pgrp) {
746 printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n");
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700747 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800749 if (task_pgrp(current) == tty->pgrp)
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700750 goto out_unlock;
751 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (is_ignored(SIGTTOU))
Alan Cox47f86832008-04-30 00:53:30 -0700753 goto out;
754 if (is_current_pgrp_orphaned()) {
755 ret = -EIO;
756 goto out;
757 }
Oleg Nesterov040b6362007-06-01 00:46:53 -0700758 kill_pgrp(task_pgrp(current), SIGTTOU, 1);
759 set_thread_flag(TIF_SIGPENDING);
Alan Cox47f86832008-04-30 00:53:30 -0700760 ret = -ERESTARTSYS;
761out:
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700762 return ret;
763out_unlock:
Alan Cox47f86832008-04-30 00:53:30 -0700764 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
765 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768EXPORT_SYMBOL(tty_check_change);
769
Alan Cox37bdfb02008-02-08 04:18:47 -0800770static ssize_t hung_up_tty_read(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 size_t count, loff_t *ppos)
772{
773 return 0;
774}
775
Alan Cox37bdfb02008-02-08 04:18:47 -0800776static ssize_t hung_up_tty_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 size_t count, loff_t *ppos)
778{
779 return -EIO;
780}
781
782/* No kernel lock held - none needed ;) */
Alan Cox37bdfb02008-02-08 04:18:47 -0800783static unsigned int hung_up_tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
786}
787
Alan Cox04f378b2008-04-30 00:53:29 -0700788static long hung_up_tty_ioctl(struct file *file, unsigned int cmd,
789 unsigned long arg)
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700790{
791 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
792}
793
Alan Cox37bdfb02008-02-08 04:18:47 -0800794static long hung_up_tty_compat_ioctl(struct file *file,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700795 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
798}
799
Arjan van de Ven62322d22006-07-03 00:24:21 -0700800static const struct file_operations tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 .llseek = no_llseek,
802 .read = tty_read,
803 .write = tty_write,
804 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700805 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700806 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 .open = tty_open,
808 .release = tty_release,
809 .fasync = tty_fasync,
810};
811
812#ifdef CONFIG_UNIX98_PTYS
Arjan van de Ven62322d22006-07-03 00:24:21 -0700813static const struct file_operations ptmx_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 .llseek = no_llseek,
815 .read = tty_read,
816 .write = tty_write,
817 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700818 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700819 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 .open = ptmx_open,
821 .release = tty_release,
822 .fasync = tty_fasync,
823};
824#endif
825
Arjan van de Ven62322d22006-07-03 00:24:21 -0700826static const struct file_operations console_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 .llseek = no_llseek,
828 .read = tty_read,
829 .write = redirected_tty_write,
830 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700831 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700832 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 .open = tty_open,
834 .release = tty_release,
835 .fasync = tty_fasync,
836};
837
Arjan van de Ven62322d22006-07-03 00:24:21 -0700838static const struct file_operations hung_up_tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 .llseek = no_llseek,
840 .read = hung_up_tty_read,
841 .write = hung_up_tty_write,
842 .poll = hung_up_tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700843 .unlocked_ioctl = hung_up_tty_ioctl,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700844 .compat_ioctl = hung_up_tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 .release = tty_release,
846};
847
848static DEFINE_SPINLOCK(redirect_lock);
849static struct file *redirect;
850
851/**
852 * tty_wakeup - request more data
853 * @tty: terminal
854 *
855 * Internal and external helper for wakeups of tty. This function
856 * informs the line discipline if present that the driver is ready
857 * to receive more output data.
858 */
Alan Cox37bdfb02008-02-08 04:18:47 -0800859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860void tty_wakeup(struct tty_struct *tty)
861{
862 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -0800863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
865 ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800866 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100867 if (ld->ops->write_wakeup)
868 ld->ops->write_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 tty_ldisc_deref(ld);
870 }
871 }
872 wake_up_interruptible(&tty->write_wait);
873}
874
875EXPORT_SYMBOL_GPL(tty_wakeup);
876
877/**
878 * tty_ldisc_flush - flush line discipline queue
879 * @tty: tty
880 *
881 * Flush the line discipline queue (if any) for this tty. If there
882 * is no line discipline active this is a no-op.
883 */
Alan Cox37bdfb02008-02-08 04:18:47 -0800884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885void tty_ldisc_flush(struct tty_struct *tty)
886{
887 struct tty_ldisc *ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800888 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100889 if (ld->ops->flush_buffer)
890 ld->ops->flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 tty_ldisc_deref(ld);
892 }
Paul Fulghumc5c34d42007-05-12 10:36:55 -0700893 tty_buffer_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
896EXPORT_SYMBOL_GPL(tty_ldisc_flush);
Alan Coxedc6afc2006-12-08 02:38:44 -0800897
898/**
899 * tty_reset_termios - reset terminal state
900 * @tty: tty to reset
901 *
902 * Restore a terminal to the driver default state
903 */
904
905static void tty_reset_termios(struct tty_struct *tty)
906{
907 mutex_lock(&tty->termios_mutex);
908 *tty->termios = tty->driver->init_termios;
909 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
910 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
911 mutex_unlock(&tty->termios_mutex);
912}
Alan Cox37bdfb02008-02-08 04:18:47 -0800913
Alan Coxaf9b8972006-08-27 01:24:01 -0700914/**
915 * do_tty_hangup - actual handler for hangup events
David Howells65f27f32006-11-22 14:55:48 +0000916 * @work: tty device
Alan Coxaf9b8972006-08-27 01:24:01 -0700917 *
Alan Cox1bad8792008-07-22 23:38:04 +0100918 * This can be called by the "eventd" kernel thread. That is process
Alan Coxaf9b8972006-08-27 01:24:01 -0700919 * synchronous but doesn't hold any locks, so we need to make sure we
920 * have the appropriate locks for what we're doing.
921 *
922 * The hangup event clears any pending redirections onto the hung up
923 * device. It ensures future writes will error and it does the needed
924 * line discipline hangup and signal delivery. The tty object itself
925 * remains intact.
926 *
927 * Locking:
928 * BKL
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800929 * redirect lock for undoing redirection
930 * file list lock for manipulating list of ttys
931 * tty_ldisc_lock from called functions
932 * termios_mutex resetting termios data
933 * tasklist_lock to walk task list for hangup event
934 * ->siglock to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 */
David Howells65f27f32006-11-22 14:55:48 +0000936static void do_tty_hangup(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
David Howells65f27f32006-11-22 14:55:48 +0000938 struct tty_struct *tty =
939 container_of(work, struct tty_struct, hangup_work);
Alan Cox37bdfb02008-02-08 04:18:47 -0800940 struct file *cons_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 struct file *filp, *f = NULL;
942 struct task_struct *p;
943 struct tty_ldisc *ld;
944 int closecount = 0, n;
Alan Cox47f86832008-04-30 00:53:30 -0700945 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 if (!tty)
948 return;
949
950 /* inuse_filps is protected by the single kernel lock */
951 lock_kernel();
952
953 spin_lock(&redirect_lock);
954 if (redirect && redirect->private_data == tty) {
955 f = redirect;
956 redirect = NULL;
957 }
958 spin_unlock(&redirect_lock);
Alan Cox37bdfb02008-02-08 04:18:47 -0800959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 check_tty_count(tty, "do_tty_hangup");
961 file_list_lock();
962 /* This breaks for file handles being sent over AF_UNIX sockets ? */
Eric Dumazet2f512012005-10-30 15:02:16 -0800963 list_for_each_entry(filp, &tty->tty_files, f_u.fu_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (filp->f_op->write == redirected_tty_write)
965 cons_filp = filp;
966 if (filp->f_op->write != tty_write)
967 continue;
968 closecount++;
969 tty_fasync(-1, filp, 0); /* can't block */
970 filp->f_op = &hung_up_tty_fops;
971 }
972 file_list_unlock();
Alan Cox37bdfb02008-02-08 04:18:47 -0800973 /*
974 * FIXME! What are the locking issues here? This may me overdoing
975 * things... This question is especially important now that we've
976 * removed the irqlock.
977 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800979 if (ld != NULL) {
980 /* We may have no line discipline at this point */
Alan Coxa352def2008-07-16 21:53:12 +0100981 if (ld->ops->flush_buffer)
982 ld->ops->flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -0700983 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if ((test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) &&
Alan Coxa352def2008-07-16 21:53:12 +0100985 ld->ops->write_wakeup)
986 ld->ops->write_wakeup(tty);
987 if (ld->ops->hangup)
988 ld->ops->hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
Alan Cox37bdfb02008-02-08 04:18:47 -0800990 /*
991 * FIXME: Once we trust the LDISC code better we can wait here for
992 * ldisc completion and fix the driver call race
993 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 wake_up_interruptible(&tty->write_wait);
995 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 /*
997 * Shutdown the current line discipline, and reset it to
998 * N_TTY.
999 */
1000 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
Alan Coxedc6afc2006-12-08 02:38:44 -08001001 tty_reset_termios(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* Defer ldisc switch */
1003 /* tty_deferred_ldisc_switch(N_TTY);
Alan Cox37bdfb02008-02-08 04:18:47 -08001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 This should get done automatically when the port closes and
1006 tty_release is called */
Alan Cox37bdfb02008-02-08 04:18:47 -08001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001009 if (tty->session) {
1010 do_each_pid_task(tty->session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001011 spin_lock_irq(&p->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (p->signal->tty == tty)
1013 p->signal->tty = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001014 if (!p->signal->leader) {
1015 spin_unlock_irq(&p->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 continue;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001017 }
1018 __group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p);
1019 __group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001020 put_pid(p->signal->tty_old_pgrp); /* A noop */
Alan Cox47f86832008-04-30 00:53:30 -07001021 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001022 if (tty->pgrp)
1023 p->signal->tty_old_pgrp = get_pid(tty->pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07001024 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001025 spin_unlock_irq(&p->sighand->siglock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001026 } while_each_pid_task(tty->session, PIDTYPE_SID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 }
1028 read_unlock(&tasklist_lock);
1029
Alan Cox47f86832008-04-30 00:53:30 -07001030 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 tty->flags = 0;
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -06001032 put_pid(tty->session);
1033 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001034 tty->session = NULL;
1035 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 tty->ctrl_status = 0;
Alan Cox47f86832008-04-30 00:53:30 -07001037 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08001040 * If one of the devices matches a console pointer, we
1041 * cannot just call hangup() because that will cause
1042 * tty->count and state->count to go out of sync.
1043 * So we just call close() the right number of times.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 */
1045 if (cons_filp) {
Alan Coxf34d7a52008-04-30 00:54:13 -07001046 if (tty->ops->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 for (n = 0; n < closecount; n++)
Alan Coxf34d7a52008-04-30 00:54:13 -07001048 tty->ops->close(tty, cons_filp);
1049 } else if (tty->ops->hangup)
1050 (tty->ops->hangup)(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -08001051 /*
1052 * We don't want to have driver/ldisc interactions beyond
1053 * the ones we did here. The driver layer expects no
1054 * calls after ->hangup() from the ldisc side. However we
1055 * can't yet guarantee all that.
1056 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 set_bit(TTY_HUPPED, &tty->flags);
1058 if (ld) {
1059 tty_ldisc_enable(tty);
1060 tty_ldisc_deref(ld);
1061 }
1062 unlock_kernel();
1063 if (f)
1064 fput(f);
1065}
1066
Alan Coxaf9b8972006-08-27 01:24:01 -07001067/**
1068 * tty_hangup - trigger a hangup event
1069 * @tty: tty to hangup
1070 *
1071 * A carrier loss (virtual or otherwise) has occurred on this like
1072 * schedule a hangup sequence to run after this event.
1073 */
1074
Alan Cox37bdfb02008-02-08 04:18:47 -08001075void tty_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077#ifdef TTY_DEBUG_HANGUP
1078 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 printk(KERN_DEBUG "%s hangup...\n", tty_name(tty, buf));
1080#endif
1081 schedule_work(&tty->hangup_work);
1082}
1083
1084EXPORT_SYMBOL(tty_hangup);
1085
Alan Coxaf9b8972006-08-27 01:24:01 -07001086/**
1087 * tty_vhangup - process vhangup
1088 * @tty: tty to hangup
1089 *
1090 * The user has asked via system call for the terminal to be hung up.
1091 * We do this synchronously so that when the syscall returns the process
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001092 * is complete. That guarantee is necessary for security reasons.
Alan Coxaf9b8972006-08-27 01:24:01 -07001093 */
1094
Alan Cox37bdfb02008-02-08 04:18:47 -08001095void tty_vhangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097#ifdef TTY_DEBUG_HANGUP
1098 char buf[64];
1099
1100 printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty, buf));
1101#endif
David Howells65f27f32006-11-22 14:55:48 +00001102 do_tty_hangup(&tty->hangup_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
Alan Cox37bdfb02008-02-08 04:18:47 -08001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105EXPORT_SYMBOL(tty_vhangup);
1106
Alan Coxaf9b8972006-08-27 01:24:01 -07001107/**
1108 * tty_hung_up_p - was tty hung up
1109 * @filp: file pointer of tty
1110 *
1111 * Return true if the tty has been subject to a vhangup or a carrier
1112 * loss
1113 */
1114
Alan Cox37bdfb02008-02-08 04:18:47 -08001115int tty_hung_up_p(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
1117 return (filp->f_op == &hung_up_tty_fops);
1118}
1119
1120EXPORT_SYMBOL(tty_hung_up_p);
1121
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001122static void session_clear_tty(struct pid *session)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001123{
1124 struct task_struct *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001125 do_each_pid_task(session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001126 proc_clear_tty(p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001127 } while_each_pid_task(session, PIDTYPE_SID, p);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001128}
1129
Alan Coxaf9b8972006-08-27 01:24:01 -07001130/**
1131 * disassociate_ctty - disconnect controlling tty
1132 * @on_exit: true if exiting so need to "hang up" the session
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001134 * This function is typically called only by the session leader, when
1135 * it wants to disassociate itself from its controlling tty.
1136 *
1137 * It performs the following functions:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
1139 * (2) Clears the tty from being controlling the session
1140 * (3) Clears the controlling tty for all processes in the
1141 * session group.
1142 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001143 * The argument on_exit is set to 1 if called when a process is
1144 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
1145 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001146 * Locking:
Alan Coxaf9b8972006-08-27 01:24:01 -07001147 * BKL is taken for hysterical raisins
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001148 * tty_mutex is taken to protect tty
1149 * ->siglock is taken to protect ->signal/->sighand
1150 * tasklist_lock is taken to walk process list for sessions
1151 * ->siglock is taken to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154void disassociate_ctty(int on_exit)
1155{
1156 struct tty_struct *tty;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001157 struct pid *tty_pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Ingo Molnar70522e12006-03-23 03:00:31 -08001160 mutex_lock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001161 tty = get_current_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (tty) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001163 tty_pgrp = get_pid(tty->pgrp);
Ingo Molnar70522e12006-03-23 03:00:31 -08001164 mutex_unlock(&tty_mutex);
Alan Cox04f378b2008-04-30 00:53:29 -07001165 lock_kernel();
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001166 /* XXX: here we race, there is nothing protecting tty */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (on_exit && tty->driver->type != TTY_DRIVER_TYPE_PTY)
1168 tty_vhangup(tty);
Alan Cox04f378b2008-04-30 00:53:29 -07001169 unlock_kernel();
Eric W. Biederman680a9672007-02-12 00:52:52 -08001170 } else if (on_exit) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001171 struct pid *old_pgrp;
Eric W. Biederman680a9672007-02-12 00:52:52 -08001172 spin_lock_irq(&current->sighand->siglock);
1173 old_pgrp = current->signal->tty_old_pgrp;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001174 current->signal->tty_old_pgrp = NULL;
Eric W. Biederman680a9672007-02-12 00:52:52 -08001175 spin_unlock_irq(&current->sighand->siglock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001176 if (old_pgrp) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001177 kill_pgrp(old_pgrp, SIGHUP, on_exit);
1178 kill_pgrp(old_pgrp, SIGCONT, on_exit);
1179 put_pid(old_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
Ingo Molnar70522e12006-03-23 03:00:31 -08001181 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return;
1183 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001184 if (tty_pgrp) {
1185 kill_pgrp(tty_pgrp, SIGHUP, on_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (!on_exit)
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001187 kill_pgrp(tty_pgrp, SIGCONT, on_exit);
1188 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001191 spin_lock_irq(&current->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07001192 put_pid(current->signal->tty_old_pgrp);
Randy Dunlap23cac8d2007-02-20 13:58:05 -08001193 current->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001194 spin_unlock_irq(&current->sighand->siglock);
1195
1196 mutex_lock(&tty_mutex);
1197 /* It is possible that do_tty_hangup has free'd this tty */
1198 tty = get_current_tty();
1199 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -07001200 unsigned long flags;
1201 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001202 put_pid(tty->session);
1203 put_pid(tty->pgrp);
1204 tty->session = NULL;
1205 tty->pgrp = NULL;
Alan Cox47f86832008-04-30 00:53:30 -07001206 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001207 } else {
1208#ifdef TTY_DEBUG_HANGUP
1209 printk(KERN_DEBUG "error attempted to write to tty [0x%p]"
1210 " = NULL", tty);
1211#endif
1212 }
1213 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 /* Now clear signal->tty under the lock */
1216 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001217 session_clear_tty(task_session(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07001221/**
1222 *
1223 * no_tty - Ensure the current process does not have a controlling tty
1224 */
1225void no_tty(void)
1226{
1227 struct task_struct *tsk = current;
Alan Cox04f378b2008-04-30 00:53:29 -07001228 lock_kernel();
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07001229 if (tsk->signal->leader)
1230 disassociate_ctty(0);
Alan Cox04f378b2008-04-30 00:53:29 -07001231 unlock_kernel();
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07001232 proc_clear_tty(tsk);
1233}
1234
Alan Coxaf9b8972006-08-27 01:24:01 -07001235
1236/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001237 * stop_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -07001238 * @tty: tty to stop
1239 *
1240 * Perform flow control to the driver. For PTY/TTY pairs we
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001241 * must also propagate the TIOCKPKT status. May be called
Alan Coxaf9b8972006-08-27 01:24:01 -07001242 * on an already stopped device and will not re-call the driver
1243 * method.
1244 *
1245 * This functionality is used by both the line disciplines for
1246 * halting incoming flow and by the driver. It may therefore be
1247 * called from any context, may be under the tty atomic_write_lock
1248 * but not always.
1249 *
1250 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -07001251 * Uses the tty control lock internally
Alan Coxaf9b8972006-08-27 01:24:01 -07001252 */
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254void stop_tty(struct tty_struct *tty)
1255{
Alan Cox04f378b2008-04-30 00:53:29 -07001256 unsigned long flags;
1257 spin_lock_irqsave(&tty->ctrl_lock, flags);
1258 if (tty->stopped) {
1259 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return;
Alan Cox04f378b2008-04-30 00:53:29 -07001261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 tty->stopped = 1;
1263 if (tty->link && tty->link->packet) {
1264 tty->ctrl_status &= ~TIOCPKT_START;
1265 tty->ctrl_status |= TIOCPKT_STOP;
1266 wake_up_interruptible(&tty->link->read_wait);
1267 }
Alan Cox04f378b2008-04-30 00:53:29 -07001268 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -07001269 if (tty->ops->stop)
1270 (tty->ops->stop)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
1273EXPORT_SYMBOL(stop_tty);
1274
Alan Coxaf9b8972006-08-27 01:24:01 -07001275/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001276 * start_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -07001277 * @tty: tty to start
1278 *
1279 * Start a tty that has been stopped if at all possible. Perform
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001280 * any necessary wakeups and propagate the TIOCPKT status. If this
Alan Coxaf9b8972006-08-27 01:24:01 -07001281 * is the tty was previous stopped and is being started then the
1282 * driver start method is invoked and the line discipline woken.
1283 *
1284 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -07001285 * ctrl_lock
Alan Coxaf9b8972006-08-27 01:24:01 -07001286 */
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288void start_tty(struct tty_struct *tty)
1289{
Alan Cox04f378b2008-04-30 00:53:29 -07001290 unsigned long flags;
1291 spin_lock_irqsave(&tty->ctrl_lock, flags);
1292 if (!tty->stopped || tty->flow_stopped) {
1293 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 return;
Alan Cox04f378b2008-04-30 00:53:29 -07001295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 tty->stopped = 0;
1297 if (tty->link && tty->link->packet) {
1298 tty->ctrl_status &= ~TIOCPKT_STOP;
1299 tty->ctrl_status |= TIOCPKT_START;
1300 wake_up_interruptible(&tty->link->read_wait);
1301 }
Alan Cox04f378b2008-04-30 00:53:29 -07001302 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -07001303 if (tty->ops->start)
1304 (tty->ops->start)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 /* If we have a running line discipline it may need kicking */
1306 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
1309EXPORT_SYMBOL(start_tty);
1310
Alan Coxaf9b8972006-08-27 01:24:01 -07001311/**
1312 * tty_read - read method for tty device files
1313 * @file: pointer to tty file
1314 * @buf: user buffer
1315 * @count: size of user buffer
1316 * @ppos: unused
1317 *
1318 * Perform the read system call function on this terminal device. Checks
1319 * for hung up devices before calling the line discipline method.
1320 *
1321 * Locking:
Alan Cox47f86832008-04-30 00:53:30 -07001322 * Locks the line discipline internally while needed. Multiple
1323 * read calls may be outstanding in parallel.
Alan Coxaf9b8972006-08-27 01:24:01 -07001324 */
1325
Alan Cox37bdfb02008-02-08 04:18:47 -08001326static ssize_t tty_read(struct file *file, char __user *buf, size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 loff_t *ppos)
1328{
1329 int i;
Alan Cox37bdfb02008-02-08 04:18:47 -08001330 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 struct inode *inode;
1332 struct tty_ldisc *ld;
1333
1334 tty = (struct tty_struct *)file->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -08001335 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (tty_paranoia_check(tty, inode, "tty_read"))
1337 return -EIO;
1338 if (!tty || (test_bit(TTY_IO_ERROR, &tty->flags)))
1339 return -EIO;
1340
1341 /* We want to wait for the line discipline to sort out in this
1342 situation */
1343 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01001344 if (ld->ops->read)
1345 i = (ld->ops->read)(tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 else
1347 i = -EIO;
1348 tty_ldisc_deref(ld);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (i > 0)
1350 inode->i_atime = current_fs_time(inode->i_sb);
1351 return i;
1352}
1353
Alan Cox9c1729d2007-07-15 23:39:43 -07001354void tty_write_unlock(struct tty_struct *tty)
1355{
1356 mutex_unlock(&tty->atomic_write_lock);
1357 wake_up_interruptible(&tty->write_wait);
1358}
1359
1360int tty_write_lock(struct tty_struct *tty, int ndelay)
1361{
1362 if (!mutex_trylock(&tty->atomic_write_lock)) {
1363 if (ndelay)
1364 return -EAGAIN;
1365 if (mutex_lock_interruptible(&tty->atomic_write_lock))
1366 return -ERESTARTSYS;
1367 }
1368 return 0;
1369}
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371/*
1372 * Split writes up in sane blocksizes to avoid
1373 * denial-of-service type attacks
1374 */
1375static inline ssize_t do_tty_write(
1376 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
1377 struct tty_struct *tty,
1378 struct file *file,
1379 const char __user *buf,
1380 size_t count)
1381{
Alan Cox9c1729d2007-07-15 23:39:43 -07001382 ssize_t ret, written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 unsigned int chunk;
Alan Cox37bdfb02008-02-08 04:18:47 -08001384
Alan Cox9c1729d2007-07-15 23:39:43 -07001385 ret = tty_write_lock(tty, file->f_flags & O_NDELAY);
1386 if (ret < 0)
1387 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 /*
1390 * We chunk up writes into a temporary buffer. This
1391 * simplifies low-level drivers immensely, since they
1392 * don't have locking issues and user mode accesses.
1393 *
1394 * But if TTY_NO_WRITE_SPLIT is set, we should use a
1395 * big chunk-size..
1396 *
1397 * The default chunk-size is 2kB, because the NTTY
1398 * layer has problems with bigger chunks. It will
1399 * claim to be able to handle more characters than
1400 * it actually does.
Alan Coxaf9b8972006-08-27 01:24:01 -07001401 *
1402 * FIXME: This can probably go away now except that 64K chunks
1403 * are too likely to fail unless switched to vmalloc...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 */
1405 chunk = 2048;
1406 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
1407 chunk = 65536;
1408 if (count < chunk)
1409 chunk = count;
1410
Ingo Molnar70522e12006-03-23 03:00:31 -08001411 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (tty->write_cnt < chunk) {
1413 unsigned char *buf;
1414
1415 if (chunk < 1024)
1416 chunk = 1024;
1417
1418 buf = kmalloc(chunk, GFP_KERNEL);
1419 if (!buf) {
Alan Cox9c1729d2007-07-15 23:39:43 -07001420 ret = -ENOMEM;
1421 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
1423 kfree(tty->write_buf);
1424 tty->write_cnt = chunk;
1425 tty->write_buf = buf;
1426 }
1427
1428 /* Do the write .. */
1429 for (;;) {
1430 size_t size = count;
1431 if (size > chunk)
1432 size = chunk;
1433 ret = -EFAULT;
1434 if (copy_from_user(tty->write_buf, buf, size))
1435 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 ret = write(tty, file, tty->write_buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (ret <= 0)
1438 break;
1439 written += ret;
1440 buf += ret;
1441 count -= ret;
1442 if (!count)
1443 break;
1444 ret = -ERESTARTSYS;
1445 if (signal_pending(current))
1446 break;
1447 cond_resched();
1448 }
1449 if (written) {
Josef Sipeka7113a92006-12-08 02:36:55 -08001450 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 inode->i_mtime = current_fs_time(inode->i_sb);
1452 ret = written;
1453 }
Alan Cox9c1729d2007-07-15 23:39:43 -07001454out:
1455 tty_write_unlock(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return ret;
1457}
1458
1459
Alan Coxaf9b8972006-08-27 01:24:01 -07001460/**
1461 * tty_write - write method for tty device file
1462 * @file: tty file pointer
1463 * @buf: user data to write
1464 * @count: bytes to write
1465 * @ppos: unused
1466 *
1467 * Write data to a tty device via the line discipline.
1468 *
1469 * Locking:
1470 * Locks the line discipline as required
1471 * Writes to the tty driver are serialized by the atomic_write_lock
1472 * and are then processed in chunks to the device. The line discipline
1473 * write method will not be involked in parallel for each device
1474 * The line discipline write method is called under the big
1475 * kernel lock for historical reasons. New code should not rely on this.
1476 */
1477
Alan Cox37bdfb02008-02-08 04:18:47 -08001478static ssize_t tty_write(struct file *file, const char __user *buf,
1479 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
Alan Cox37bdfb02008-02-08 04:18:47 -08001481 struct tty_struct *tty;
Josef Sipeka7113a92006-12-08 02:36:55 -08001482 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 ssize_t ret;
1484 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 tty = (struct tty_struct *)file->private_data;
1487 if (tty_paranoia_check(tty, inode, "tty_write"))
1488 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001489 if (!tty || !tty->ops->write ||
Alan Cox37bdfb02008-02-08 04:18:47 -08001490 (test_bit(TTY_IO_ERROR, &tty->flags)))
1491 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001492 /* Short term debug to catch buggy drivers */
1493 if (tty->ops->write_room == NULL)
1494 printk(KERN_ERR "tty driver %s lacks a write_room method.\n",
1495 tty->driver->name);
Alan Cox37bdfb02008-02-08 04:18:47 -08001496 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01001497 if (!ld->ops->write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 ret = -EIO;
1499 else
Alan Coxa352def2008-07-16 21:53:12 +01001500 ret = do_tty_write(ld->ops->write, tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 tty_ldisc_deref(ld);
1502 return ret;
1503}
1504
Alan Cox37bdfb02008-02-08 04:18:47 -08001505ssize_t redirected_tty_write(struct file *file, const char __user *buf,
1506 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
1508 struct file *p = NULL;
1509
1510 spin_lock(&redirect_lock);
1511 if (redirect) {
1512 get_file(redirect);
1513 p = redirect;
1514 }
1515 spin_unlock(&redirect_lock);
1516
1517 if (p) {
1518 ssize_t res;
1519 res = vfs_write(p, buf, count, &p->f_pos);
1520 fput(p);
1521 return res;
1522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return tty_write(file, buf, count, ppos);
1524}
1525
Alan Cox6f670482008-07-16 21:53:41 +01001526void tty_port_init(struct tty_port *port)
1527{
1528 memset(port, 0, sizeof(*port));
1529 init_waitqueue_head(&port->open_wait);
1530 init_waitqueue_head(&port->close_wait);
1531 mutex_init(&port->mutex);
Alan Cox44b7d1b2008-07-16 21:57:18 +01001532 port->close_delay = (50 * HZ) / 100;
1533 port->closing_wait = (3000 * HZ) / 100;
Alan Cox6f670482008-07-16 21:53:41 +01001534}
1535EXPORT_SYMBOL(tty_port_init);
1536
1537int tty_port_alloc_xmit_buf(struct tty_port *port)
1538{
1539 /* We may sleep in get_zeroed_page() */
1540 mutex_lock(&port->mutex);
1541 if (port->xmit_buf == NULL)
1542 port->xmit_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1543 mutex_unlock(&port->mutex);
1544 if (port->xmit_buf == NULL)
1545 return -ENOMEM;
1546 return 0;
1547}
1548EXPORT_SYMBOL(tty_port_alloc_xmit_buf);
1549
1550void tty_port_free_xmit_buf(struct tty_port *port)
1551{
1552 mutex_lock(&port->mutex);
1553 if (port->xmit_buf != NULL) {
1554 free_page((unsigned long)port->xmit_buf);
1555 port->xmit_buf = NULL;
1556 }
1557 mutex_unlock(&port->mutex);
1558}
1559EXPORT_SYMBOL(tty_port_free_xmit_buf);
1560
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562static char ptychar[] = "pqrstuvwxyzabcde";
1563
Alan Coxaf9b8972006-08-27 01:24:01 -07001564/**
1565 * pty_line_name - generate name for a pty
1566 * @driver: the tty driver in use
1567 * @index: the minor number
1568 * @p: output buffer of at least 6 bytes
1569 *
1570 * Generate a name from a driver reference and write it to the output
1571 * buffer.
1572 *
1573 * Locking: None
1574 */
1575static void pty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
1577 int i = index + driver->name_base;
1578 /* ->name is initialized to "ttyp", but "tty" is expected */
1579 sprintf(p, "%s%c%x",
Alan Cox37bdfb02008-02-08 04:18:47 -08001580 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1581 ptychar[i >> 4 & 0xf], i & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Alan Coxaf9b8972006-08-27 01:24:01 -07001584/**
1585 * pty_line_name - generate name for a tty
1586 * @driver: the tty driver in use
1587 * @index: the minor number
1588 * @p: output buffer of at least 7 bytes
1589 *
1590 * Generate a name from a driver reference and write it to the output
1591 * buffer.
1592 *
1593 * Locking: None
1594 */
1595static void tty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 sprintf(p, "%s%d", driver->name, index + driver->name_base);
1598}
1599
Alan Coxaf9b8972006-08-27 01:24:01 -07001600/**
1601 * init_dev - initialise a tty device
1602 * @driver: tty driver we are opening a device on
1603 * @idx: device index
1604 * @tty: returned tty structure
1605 *
1606 * Prepare a tty device. This may not be a "new" clean device but
1607 * could also be an active device. The pty drivers require special
1608 * handling because of this.
1609 *
1610 * Locking:
1611 * The function is called under the tty_mutex, which
1612 * protects us from the tty struct or driver itself going away.
1613 *
1614 * On exit the tty device has the line discipline attached and
1615 * a reference count of 1. If a pair was created for pty/tty use
1616 * and the other was a pty master then it too has a reference count of 1.
1617 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
Ingo Molnar70522e12006-03-23 03:00:31 -08001619 * failed open. The new code protects the open with a mutex, so it's
1620 * really quite straightforward. The mutex locking can probably be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 * relaxed for the (most common) case of reopening a tty.
1622 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624static int init_dev(struct tty_driver *driver, int idx,
1625 struct tty_struct **ret_tty)
1626{
1627 struct tty_struct *tty, *o_tty;
Alan Coxedc6afc2006-12-08 02:38:44 -08001628 struct ktermios *tp, **tp_loc, *o_tp, **o_tp_loc;
1629 struct ktermios *ltp, **ltp_loc, *o_ltp, **o_ltp_loc;
Alan Coxaf9b8972006-08-27 01:24:01 -07001630 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 /* check whether we're reopening an existing tty */
1633 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1634 tty = devpts_get_tty(idx);
Aristeu Sergio Rozanski Filho5a39e8c2007-02-28 20:13:53 -08001635 /*
1636 * If we don't have a tty here on a slave open, it's because
1637 * the master already started the close process and there's
1638 * no relation between devpts file and tty anymore.
1639 */
1640 if (!tty && driver->subtype == PTY_TYPE_SLAVE) {
1641 retval = -EIO;
1642 goto end_init;
1643 }
1644 /*
1645 * It's safe from now on because init_dev() is called with
1646 * tty_mutex held and release_dev() won't change tty->count
1647 * or tty->flags without having to grab tty_mutex
1648 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (tty && driver->subtype == PTY_TYPE_MASTER)
1650 tty = tty->link;
1651 } else {
1652 tty = driver->ttys[idx];
1653 }
1654 if (tty) goto fast_track;
1655
1656 /*
1657 * First time open is complex, especially for PTY devices.
1658 * This code guarantees that either everything succeeds and the
1659 * TTY is ready for operation, or else the table slots are vacated
Alan Cox37bdfb02008-02-08 04:18:47 -08001660 * and the allocated memory released. (Except that the termios
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 * and locked termios may be retained.)
1662 */
1663
1664 if (!try_module_get(driver->owner)) {
1665 retval = -ENODEV;
1666 goto end_init;
1667 }
1668
1669 o_tty = NULL;
1670 tp = o_tp = NULL;
1671 ltp = o_ltp = NULL;
1672
1673 tty = alloc_tty_struct();
Alan Cox37bdfb02008-02-08 04:18:47 -08001674 if (!tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 goto fail_no_mem;
1676 initialize_tty_struct(tty);
1677 tty->driver = driver;
Alan Coxf34d7a52008-04-30 00:54:13 -07001678 tty->ops = driver->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 tty->index = idx;
1680 tty_line_name(driver, idx, tty->name);
1681
1682 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1683 tp_loc = &tty->termios;
1684 ltp_loc = &tty->termios_locked;
1685 } else {
1686 tp_loc = &driver->termios[idx];
1687 ltp_loc = &driver->termios_locked[idx];
1688 }
1689
1690 if (!*tp_loc) {
Jesper Juhlabcb1ff32007-08-24 02:28:42 +02001691 tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 if (!tp)
1693 goto free_mem_out;
1694 *tp = driver->init_termios;
1695 }
1696
1697 if (!*ltp_loc) {
Jean Delvare506eb992007-07-15 23:40:14 -07001698 ltp = kzalloc(sizeof(struct ktermios), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (!ltp)
1700 goto free_mem_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 }
1702
1703 if (driver->type == TTY_DRIVER_TYPE_PTY) {
1704 o_tty = alloc_tty_struct();
1705 if (!o_tty)
1706 goto free_mem_out;
1707 initialize_tty_struct(o_tty);
1708 o_tty->driver = driver->other;
Alan Coxf34d7a52008-04-30 00:54:13 -07001709 o_tty->ops = driver->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 o_tty->index = idx;
1711 tty_line_name(driver->other, idx, o_tty->name);
1712
1713 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1714 o_tp_loc = &o_tty->termios;
1715 o_ltp_loc = &o_tty->termios_locked;
1716 } else {
1717 o_tp_loc = &driver->other->termios[idx];
1718 o_ltp_loc = &driver->other->termios_locked[idx];
1719 }
1720
1721 if (!*o_tp_loc) {
Jesper Juhlabcb1ff32007-08-24 02:28:42 +02001722 o_tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (!o_tp)
1724 goto free_mem_out;
1725 *o_tp = driver->other->init_termios;
1726 }
1727
1728 if (!*o_ltp_loc) {
Jean Delvare506eb992007-07-15 23:40:14 -07001729 o_ltp = kzalloc(sizeof(struct ktermios), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 if (!o_ltp)
1731 goto free_mem_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
1733
1734 /*
1735 * Everything allocated ... set up the o_tty structure.
1736 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001737 if (!(driver->other->flags & TTY_DRIVER_DEVPTS_MEM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 driver->other->ttys[idx] = o_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (!*o_tp_loc)
1740 *o_tp_loc = o_tp;
1741 if (!*o_ltp_loc)
1742 *o_ltp_loc = o_ltp;
1743 o_tty->termios = *o_tp_loc;
1744 o_tty->termios_locked = *o_ltp_loc;
1745 driver->other->refcount++;
1746 if (driver->subtype == PTY_TYPE_MASTER)
1747 o_tty->count++;
1748
1749 /* Establish the links in both directions */
1750 tty->link = o_tty;
1751 o_tty->link = tty;
1752 }
1753
Alan Cox37bdfb02008-02-08 04:18:47 -08001754 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 * All structures have been allocated, so now we install them.
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001756 * Failures after this point use release_tty to clean up, so
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 * there's no need to null out the local pointers.
1758 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001759 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 driver->ttys[idx] = tty;
Alan Cox37bdfb02008-02-08 04:18:47 -08001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (!*tp_loc)
1763 *tp_loc = tp;
1764 if (!*ltp_loc)
1765 *ltp_loc = ltp;
1766 tty->termios = *tp_loc;
1767 tty->termios_locked = *ltp_loc;
Alan Coxedc6afc2006-12-08 02:38:44 -08001768 /* Compatibility until drivers always set this */
1769 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
1770 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 driver->refcount++;
1772 tty->count++;
1773
Alan Cox37bdfb02008-02-08 04:18:47 -08001774 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 * Structures all installed ... call the ldisc open routines.
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001776 * If we fail here just call release_tty to clean up. No need
1777 * to decrement the use counts, as release_tty doesn't care.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 */
1779
Alan Cox01e1abb2008-07-22 11:16:55 +01001780 retval = tty_ldisc_setup(tty, o_tty);
1781
1782 if (retval)
1783 goto release_mem_out;
1784 goto success;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 /*
1787 * This fast open can be used if the tty is already open.
1788 * No memory is allocated, and the only failures are from
1789 * attempting to open a closing tty or attempting multiple
1790 * opens on a pty master.
1791 */
1792fast_track:
1793 if (test_bit(TTY_CLOSING, &tty->flags)) {
1794 retval = -EIO;
1795 goto end_init;
1796 }
1797 if (driver->type == TTY_DRIVER_TYPE_PTY &&
1798 driver->subtype == PTY_TYPE_MASTER) {
1799 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08001800 * special case for PTY masters: only one open permitted,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 * and the slave side open count is incremented as well.
1802 */
1803 if (tty->count) {
1804 retval = -EIO;
1805 goto end_init;
1806 }
1807 tty->link->count++;
1808 }
1809 tty->count++;
1810 tty->driver = driver; /* N.B. why do this every time?? */
1811
1812 /* FIXME */
Alan Cox37bdfb02008-02-08 04:18:47 -08001813 if (!test_bit(TTY_LDISC, &tty->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 printk(KERN_ERR "init_dev but no ldisc\n");
1815success:
1816 *ret_tty = tty;
Alan Cox37bdfb02008-02-08 04:18:47 -08001817
Ingo Molnar70522e12006-03-23 03:00:31 -08001818 /* All paths come through here to release the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819end_init:
1820 return retval;
1821
1822 /* Release locally allocated memory ... nothing placed in slots */
1823free_mem_out:
Jesper Juhl735d5662005-11-07 01:01:29 -08001824 kfree(o_tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (o_tty)
1826 free_tty_struct(o_tty);
Jesper Juhl735d5662005-11-07 01:01:29 -08001827 kfree(ltp);
1828 kfree(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 free_tty_struct(tty);
1830
1831fail_no_mem:
1832 module_put(driver->owner);
1833 retval = -ENOMEM;
1834 goto end_init;
1835
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001836 /* call the tty release_tty routine to clean out this slot */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837release_mem_out:
Akinobu Mita40509142006-09-29 02:01:27 -07001838 if (printk_ratelimit())
1839 printk(KERN_INFO "init_dev: ldisc open failed, "
1840 "clearing slot %d\n", idx);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001841 release_tty(tty, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 goto end_init;
1843}
1844
Alan Coxaf9b8972006-08-27 01:24:01 -07001845/**
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001846 * release_one_tty - release tty structure memory
Alan Coxaf9b8972006-08-27 01:24:01 -07001847 *
1848 * Releases memory associated with a tty structure, and clears out the
1849 * driver table slots. This function is called when a device is no longer
1850 * in use. It also gets called when setup of a device fails.
1851 *
1852 * Locking:
1853 * tty_mutex - sometimes only
1854 * takes the file list lock internally when working on the list
1855 * of ttys that the driver keeps.
1856 * FIXME: should we require tty_mutex is held here ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 */
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001858static void release_one_tty(struct tty_struct *tty, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 int devpts = tty->driver->flags & TTY_DRIVER_DEVPTS_MEM;
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001861 struct ktermios *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 if (!devpts)
1864 tty->driver->ttys[idx] = NULL;
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
1867 tp = tty->termios;
1868 if (!devpts)
1869 tty->driver->termios[idx] = NULL;
1870 kfree(tp);
1871
1872 tp = tty->termios_locked;
1873 if (!devpts)
1874 tty->driver->termios_locked[idx] = NULL;
1875 kfree(tp);
1876 }
1877
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 tty->magic = 0;
1880 tty->driver->refcount--;
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 file_list_lock();
1883 list_del_init(&tty->tty_files);
1884 file_list_unlock();
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 free_tty_struct(tty);
1887}
1888
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001889/**
1890 * release_tty - release tty structure memory
1891 *
1892 * Release both @tty and a possible linked partner (think pty pair),
1893 * and decrement the refcount of the backing module.
1894 *
1895 * Locking:
1896 * tty_mutex - sometimes only
1897 * takes the file list lock internally when working on the list
1898 * of ttys that the driver keeps.
1899 * FIXME: should we require tty_mutex is held here ??
1900 */
1901static void release_tty(struct tty_struct *tty, int idx)
1902{
1903 struct tty_driver *driver = tty->driver;
1904
1905 if (tty->link)
1906 release_one_tty(tty->link, idx);
1907 release_one_tty(tty, idx);
1908 module_put(driver->owner);
1909}
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911/*
1912 * Even releasing the tty structures is a tricky business.. We have
1913 * to be very careful that the structures are all released at the
1914 * same time, as interrupts might otherwise get the wrong pointers.
1915 *
1916 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1917 * lead to double frees or releasing memory still in use.
1918 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001919static void release_dev(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 struct tty_struct *tty, *o_tty;
1922 int pty_master, tty_closing, o_tty_closing, do_sleep;
Paul Fulghum14a62832006-04-10 22:54:19 -07001923 int devpts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 int idx;
1925 char buf[64];
Alan Cox37bdfb02008-02-08 04:18:47 -08001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 tty = (struct tty_struct *)filp->private_data;
Alan Cox37bdfb02008-02-08 04:18:47 -08001928 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode,
1929 "release_dev"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return;
1931
1932 check_tty_count(tty, "release_dev");
1933
1934 tty_fasync(-1, filp, 0);
1935
1936 idx = tty->index;
1937 pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1938 tty->driver->subtype == PTY_TYPE_MASTER);
1939 devpts = (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 o_tty = tty->link;
1941
1942#ifdef TTY_PARANOIA_CHECK
1943 if (idx < 0 || idx >= tty->driver->num) {
1944 printk(KERN_DEBUG "release_dev: bad idx when trying to "
1945 "free (%s)\n", tty->name);
1946 return;
1947 }
1948 if (!(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1949 if (tty != tty->driver->ttys[idx]) {
1950 printk(KERN_DEBUG "release_dev: driver.table[%d] not tty "
1951 "for (%s)\n", idx, tty->name);
1952 return;
1953 }
1954 if (tty->termios != tty->driver->termios[idx]) {
1955 printk(KERN_DEBUG "release_dev: driver.termios[%d] not termios "
1956 "for (%s)\n",
1957 idx, tty->name);
1958 return;
1959 }
1960 if (tty->termios_locked != tty->driver->termios_locked[idx]) {
1961 printk(KERN_DEBUG "release_dev: driver.termios_locked[%d] not "
1962 "termios_locked for (%s)\n",
1963 idx, tty->name);
1964 return;
1965 }
1966 }
1967#endif
1968
1969#ifdef TTY_DEBUG_HANGUP
1970 printk(KERN_DEBUG "release_dev of %s (tty count=%d)...",
1971 tty_name(tty, buf), tty->count);
1972#endif
1973
1974#ifdef TTY_PARANOIA_CHECK
1975 if (tty->driver->other &&
1976 !(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1977 if (o_tty != tty->driver->other->ttys[idx]) {
1978 printk(KERN_DEBUG "release_dev: other->table[%d] "
1979 "not o_tty for (%s)\n",
1980 idx, tty->name);
1981 return;
1982 }
1983 if (o_tty->termios != tty->driver->other->termios[idx]) {
1984 printk(KERN_DEBUG "release_dev: other->termios[%d] "
1985 "not o_termios for (%s)\n",
1986 idx, tty->name);
1987 return;
1988 }
Alan Cox37bdfb02008-02-08 04:18:47 -08001989 if (o_tty->termios_locked !=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 tty->driver->other->termios_locked[idx]) {
1991 printk(KERN_DEBUG "release_dev: other->termios_locked["
1992 "%d] not o_termios_locked for (%s)\n",
1993 idx, tty->name);
1994 return;
1995 }
1996 if (o_tty->link != tty) {
1997 printk(KERN_DEBUG "release_dev: bad pty pointers\n");
1998 return;
1999 }
2000 }
2001#endif
Alan Coxf34d7a52008-04-30 00:54:13 -07002002 if (tty->ops->close)
2003 tty->ops->close(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 /*
2006 * Sanity check: if tty->count is going to zero, there shouldn't be
2007 * any waiters on tty->read_wait or tty->write_wait. We test the
2008 * wait queues and kick everyone out _before_ actually starting to
2009 * close. This ensures that we won't block while releasing the tty
2010 * structure.
2011 *
2012 * The test for the o_tty closing is necessary, since the master and
2013 * slave sides may close in any order. If the slave side closes out
2014 * first, its count will be one, since the master side holds an open.
2015 * Thus this test wouldn't be triggered at the time the slave closes,
2016 * so we do it now.
2017 *
2018 * Note that it's possible for the tty to be opened again while we're
2019 * flushing out waiters. By recalculating the closing flags before
2020 * each iteration we avoid any problems.
2021 */
2022 while (1) {
2023 /* Guard against races with tty->count changes elsewhere and
2024 opens on /dev/tty */
Alan Cox37bdfb02008-02-08 04:18:47 -08002025
Ingo Molnar70522e12006-03-23 03:00:31 -08002026 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 tty_closing = tty->count <= 1;
2028 o_tty_closing = o_tty &&
2029 (o_tty->count <= (pty_master ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 do_sleep = 0;
2031
2032 if (tty_closing) {
2033 if (waitqueue_active(&tty->read_wait)) {
2034 wake_up(&tty->read_wait);
2035 do_sleep++;
2036 }
2037 if (waitqueue_active(&tty->write_wait)) {
2038 wake_up(&tty->write_wait);
2039 do_sleep++;
2040 }
2041 }
2042 if (o_tty_closing) {
2043 if (waitqueue_active(&o_tty->read_wait)) {
2044 wake_up(&o_tty->read_wait);
2045 do_sleep++;
2046 }
2047 if (waitqueue_active(&o_tty->write_wait)) {
2048 wake_up(&o_tty->write_wait);
2049 do_sleep++;
2050 }
2051 }
2052 if (!do_sleep)
2053 break;
2054
2055 printk(KERN_WARNING "release_dev: %s: read/write wait queue "
2056 "active!\n", tty_name(tty, buf));
Ingo Molnar70522e12006-03-23 03:00:31 -08002057 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 schedule();
Alan Cox37bdfb02008-02-08 04:18:47 -08002059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08002062 * The closing flags are now consistent with the open counts on
2063 * both sides, and we've completed the last operation that could
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * block, so it's safe to proceed with closing.
2065 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 if (pty_master) {
2067 if (--o_tty->count < 0) {
2068 printk(KERN_WARNING "release_dev: bad pty slave count "
2069 "(%d) for %s\n",
2070 o_tty->count, tty_name(o_tty, buf));
2071 o_tty->count = 0;
2072 }
2073 }
2074 if (--tty->count < 0) {
2075 printk(KERN_WARNING "release_dev: bad tty->count (%d) for %s\n",
2076 tty->count, tty_name(tty, buf));
2077 tty->count = 0;
2078 }
Alan Cox37bdfb02008-02-08 04:18:47 -08002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 /*
2081 * We've decremented tty->count, so we need to remove this file
2082 * descriptor off the tty->tty_files list; this serves two
2083 * purposes:
2084 * - check_tty_count sees the correct number of file descriptors
2085 * associated with this tty.
2086 * - do_tty_hangup no longer sees this file descriptor as
2087 * something that needs to be handled for hangups.
2088 */
2089 file_kill(filp);
2090 filp->private_data = NULL;
2091
2092 /*
2093 * Perform some housekeeping before deciding whether to return.
2094 *
2095 * Set the TTY_CLOSING flag if this was the last open. In the
2096 * case of a pty we may have to wait around for the other side
2097 * to close, and TTY_CLOSING makes sure we can't be reopened.
2098 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002099 if (tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 set_bit(TTY_CLOSING, &tty->flags);
Alan Cox37bdfb02008-02-08 04:18:47 -08002101 if (o_tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 set_bit(TTY_CLOSING, &o_tty->flags);
2103
2104 /*
2105 * If _either_ side is closing, make sure there aren't any
2106 * processes that still think tty or o_tty is their controlling
2107 * tty.
2108 */
2109 if (tty_closing || o_tty_closing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002111 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (o_tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002113 session_clear_tty(o_tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 read_unlock(&tasklist_lock);
2115 }
2116
Ingo Molnar70522e12006-03-23 03:00:31 -08002117 mutex_unlock(&tty_mutex);
Paul Fulghumda965822006-02-14 13:53:00 -08002118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 /* check whether both sides are closing ... */
2120 if (!tty_closing || (o_tty && !o_tty_closing))
2121 return;
Alan Cox37bdfb02008-02-08 04:18:47 -08002122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123#ifdef TTY_DEBUG_HANGUP
2124 printk(KERN_DEBUG "freeing tty structure...");
2125#endif
2126 /*
Alan Cox01e1abb2008-07-22 11:16:55 +01002127 * Ask the line discipline code to release its structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 */
Alan Cox01e1abb2008-07-22 11:16:55 +01002129 tty_ldisc_release(tty, o_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 /*
Christoph Hellwigd5698c22007-02-10 01:46:46 -08002131 * The release_tty function takes care of the details of clearing
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 * the slots and preserving the termios structure.
2133 */
Christoph Hellwigd5698c22007-02-10 01:46:46 -08002134 release_tty(tty, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 /* Make this pty number available for reallocation */
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -07002137 if (devpts)
2138 devpts_kill_index(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139}
2140
Alan Coxaf9b8972006-08-27 01:24:01 -07002141/**
2142 * tty_open - open a tty device
2143 * @inode: inode of device file
2144 * @filp: file pointer to tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002146 * tty_open and tty_release keep up the tty count that contains the
2147 * number of opens done on a tty. We cannot use the inode-count, as
2148 * different inodes might point to the same tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002150 * Open-counting is needed for pty masters, as well as for keeping
2151 * track of serial lines: DTR is dropped when the last close happens.
2152 * (This is not done solely through tty->count, now. - Ted 1/27/92)
2153 *
2154 * The termios state of a pty is reset on first open so that
2155 * settings don't persist across reuse.
2156 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002157 * Locking: tty_mutex protects tty, get_tty_driver and init_dev work.
2158 * tty->count should protect the rest.
2159 * ->siglock protects ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002161
Jonathan Corbet39d95b92008-05-16 09:10:50 -06002162static int __tty_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
2164 struct tty_struct *tty;
2165 int noctty, retval;
2166 struct tty_driver *driver;
2167 int index;
2168 dev_t device = inode->i_rdev;
2169 unsigned short saved_flags = filp->f_flags;
2170
2171 nonseekable_open(inode, filp);
Alan Cox37bdfb02008-02-08 04:18:47 -08002172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173retry_open:
2174 noctty = filp->f_flags & O_NOCTTY;
2175 index = -1;
2176 retval = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08002177
Ingo Molnar70522e12006-03-23 03:00:31 -08002178 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Alan Cox37bdfb02008-02-08 04:18:47 -08002180 if (device == MKDEV(TTYAUX_MAJOR, 0)) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002181 tty = get_current_tty();
2182 if (!tty) {
Ingo Molnar70522e12006-03-23 03:00:31 -08002183 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 return -ENXIO;
2185 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002186 driver = tty->driver;
2187 index = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
2189 /* noctty = 1; */
2190 goto got_driver;
2191 }
2192#ifdef CONFIG_VT
Alan Cox37bdfb02008-02-08 04:18:47 -08002193 if (device == MKDEV(TTY_MAJOR, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 extern struct tty_driver *console_driver;
2195 driver = console_driver;
2196 index = fg_console;
2197 noctty = 1;
2198 goto got_driver;
2199 }
2200#endif
Alan Cox37bdfb02008-02-08 04:18:47 -08002201 if (device == MKDEV(TTYAUX_MAJOR, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 driver = console_device(&index);
2203 if (driver) {
2204 /* Don't let /dev/console block */
2205 filp->f_flags |= O_NONBLOCK;
2206 noctty = 1;
2207 goto got_driver;
2208 }
Ingo Molnar70522e12006-03-23 03:00:31 -08002209 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 return -ENODEV;
2211 }
2212
2213 driver = get_tty_driver(device, &index);
2214 if (!driver) {
Ingo Molnar70522e12006-03-23 03:00:31 -08002215 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return -ENODEV;
2217 }
2218got_driver:
2219 retval = init_dev(driver, index, &tty);
Ingo Molnar70522e12006-03-23 03:00:31 -08002220 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 if (retval)
2222 return retval;
2223
2224 filp->private_data = tty;
2225 file_move(filp, &tty->tty_files);
2226 check_tty_count(tty, "tty_open");
2227 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2228 tty->driver->subtype == PTY_TYPE_MASTER)
2229 noctty = 1;
2230#ifdef TTY_DEBUG_HANGUP
2231 printk(KERN_DEBUG "opening %s...", tty->name);
2232#endif
2233 if (!retval) {
Alan Coxf34d7a52008-04-30 00:54:13 -07002234 if (tty->ops->open)
2235 retval = tty->ops->open(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 else
2237 retval = -ENODEV;
2238 }
2239 filp->f_flags = saved_flags;
2240
Alan Cox37bdfb02008-02-08 04:18:47 -08002241 if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) &&
2242 !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 retval = -EBUSY;
2244
2245 if (retval) {
2246#ifdef TTY_DEBUG_HANGUP
2247 printk(KERN_DEBUG "error %d in opening %s...", retval,
2248 tty->name);
2249#endif
2250 release_dev(filp);
2251 if (retval != -ERESTARTSYS)
2252 return retval;
2253 if (signal_pending(current))
2254 return retval;
2255 schedule();
2256 /*
2257 * Need to reset f_op in case a hangup happened.
2258 */
2259 if (filp->f_op == &hung_up_tty_fops)
2260 filp->f_op = &tty_fops;
2261 goto retry_open;
2262 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002263
2264 mutex_lock(&tty_mutex);
2265 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 if (!noctty &&
2267 current->signal->leader &&
2268 !current->signal->tty &&
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002269 tty->session == NULL)
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07002270 __proc_set_tty(current, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002271 spin_unlock_irq(&current->sighand->siglock);
2272 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return 0;
2274}
2275
Jonathan Corbet39d95b92008-05-16 09:10:50 -06002276/* BKL pushdown: scary code avoidance wrapper */
2277static int tty_open(struct inode *inode, struct file *filp)
2278{
2279 int ret;
2280
2281 lock_kernel();
2282 ret = __tty_open(inode, filp);
2283 unlock_kernel();
2284 return ret;
2285}
2286
2287
2288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289#ifdef CONFIG_UNIX98_PTYS
Alan Coxaf9b8972006-08-27 01:24:01 -07002290/**
2291 * ptmx_open - open a unix 98 pty master
2292 * @inode: inode of device file
2293 * @filp: file pointer to tty
2294 *
2295 * Allocate a unix98 pty master device from the ptmx driver.
2296 *
2297 * Locking: tty_mutex protects theinit_dev work. tty->count should
Alan Cox37bdfb02008-02-08 04:18:47 -08002298 * protect the rest.
Alan Coxaf9b8972006-08-27 01:24:01 -07002299 * allocated_ptys_lock handles the list of free pty numbers
2300 */
2301
Jonathan Corbet39d95b92008-05-16 09:10:50 -06002302static int __ptmx_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303{
2304 struct tty_struct *tty;
2305 int retval;
2306 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 nonseekable_open(inode, filp);
2309
2310 /* find a device that is not in use. */
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -07002311 index = devpts_new_index();
2312 if (index < 0)
2313 return index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Ingo Molnar70522e12006-03-23 03:00:31 -08002315 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 retval = init_dev(ptm_driver, index, &tty);
Ingo Molnar70522e12006-03-23 03:00:31 -08002317 mutex_unlock(&tty_mutex);
Alan Cox37bdfb02008-02-08 04:18:47 -08002318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 if (retval)
2320 goto out;
2321
2322 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
2323 filp->private_data = tty;
2324 file_move(filp, &tty->tty_files);
2325
Sukadev Bhattiprolu4f8f9d62008-04-30 00:54:20 -07002326 retval = devpts_pty_new(tty->link);
2327 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 goto out1;
2329
Hiroshi Shimamoto86a96532008-04-30 00:54:20 -07002330 check_tty_count(tty, "ptmx_open");
Alan Coxf34d7a52008-04-30 00:54:13 -07002331 retval = ptm_driver->ops->open(tty, filp);
Miloslav Trmac41126222008-04-18 13:30:14 -07002332 if (!retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return 0;
2334out1:
2335 release_dev(filp);
Paul Fulghum9453a5a2006-04-10 22:54:18 -07002336 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337out:
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -07002338 devpts_kill_index(index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return retval;
2340}
Jonathan Corbet39d95b92008-05-16 09:10:50 -06002341
2342static int ptmx_open(struct inode *inode, struct file *filp)
2343{
2344 int ret;
2345
2346 lock_kernel();
2347 ret = __ptmx_open(inode, filp);
2348 unlock_kernel();
2349 return ret;
2350}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351#endif
2352
Alan Coxaf9b8972006-08-27 01:24:01 -07002353/**
2354 * tty_release - vfs callback for close
2355 * @inode: inode of tty
2356 * @filp: file pointer for handle to tty
2357 *
2358 * Called the last time each file handle is closed that references
2359 * this tty. There may however be several such references.
2360 *
2361 * Locking:
2362 * Takes bkl. See release_dev
2363 */
2364
Alan Cox37bdfb02008-02-08 04:18:47 -08002365static int tty_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
2367 lock_kernel();
2368 release_dev(filp);
2369 unlock_kernel();
2370 return 0;
2371}
2372
Alan Coxaf9b8972006-08-27 01:24:01 -07002373/**
2374 * tty_poll - check tty status
2375 * @filp: file being polled
2376 * @wait: poll wait structures to update
2377 *
2378 * Call the line discipline polling method to obtain the poll
2379 * status of the device.
2380 *
2381 * Locking: locks called line discipline but ldisc poll method
2382 * may be re-entered freely by other callers.
2383 */
2384
Alan Cox37bdfb02008-02-08 04:18:47 -08002385static unsigned int tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Alan Cox37bdfb02008-02-08 04:18:47 -08002387 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 struct tty_ldisc *ld;
2389 int ret = 0;
2390
2391 tty = (struct tty_struct *)filp->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -08002392 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_poll"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08002394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002396 if (ld->ops->poll)
2397 ret = (ld->ops->poll)(tty, filp, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 tty_ldisc_deref(ld);
2399 return ret;
2400}
2401
Alan Cox37bdfb02008-02-08 04:18:47 -08002402static int tty_fasync(int fd, struct file *filp, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
Alan Cox37bdfb02008-02-08 04:18:47 -08002404 struct tty_struct *tty;
Alan Cox47f86832008-04-30 00:53:30 -07002405 unsigned long flags;
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002406 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002408 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 tty = (struct tty_struct *)filp->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -08002410 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_fasync"))
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002411 goto out;
Alan Cox37bdfb02008-02-08 04:18:47 -08002412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 retval = fasync_helper(fd, filp, on, &tty->fasync);
2414 if (retval <= 0)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002415 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 if (on) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002418 enum pid_type type;
2419 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 if (!waitqueue_active(&tty->read_wait))
2421 tty->minimum_to_wake = 1;
Alan Cox47f86832008-04-30 00:53:30 -07002422 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002423 if (tty->pgrp) {
2424 pid = tty->pgrp;
2425 type = PIDTYPE_PGID;
2426 } else {
2427 pid = task_pid(current);
2428 type = PIDTYPE_PID;
2429 }
Alan Cox47f86832008-04-30 00:53:30 -07002430 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002431 retval = __f_setown(filp, pid, type, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 if (retval)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002433 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 } else {
2435 if (!tty->fasync && !waitqueue_active(&tty->read_wait))
2436 tty->minimum_to_wake = N_TTY_BUF_SIZE;
2437 }
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002438 retval = 0;
2439out:
2440 unlock_kernel();
2441 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
2443
Alan Coxaf9b8972006-08-27 01:24:01 -07002444/**
2445 * tiocsti - fake input character
2446 * @tty: tty to fake input into
2447 * @p: pointer to character
2448 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02002449 * Fake input to a tty device. Does the necessary locking and
Alan Coxaf9b8972006-08-27 01:24:01 -07002450 * input management.
2451 *
2452 * FIXME: does not honour flow control ??
2453 *
2454 * Locking:
2455 * Called functions take tty_ldisc_lock
2456 * current->signal->tty check is safe without locks
Alan Cox28298232006-09-29 02:00:58 -07002457 *
2458 * FIXME: may race normal receive processing
Alan Coxaf9b8972006-08-27 01:24:01 -07002459 */
2460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461static int tiocsti(struct tty_struct *tty, char __user *p)
2462{
2463 char ch, mbz = 0;
2464 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08002465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2467 return -EPERM;
2468 if (get_user(ch, p))
2469 return -EFAULT;
2470 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002471 ld->ops->receive_buf(tty, &ch, &mbz, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 tty_ldisc_deref(ld);
2473 return 0;
2474}
2475
Alan Coxaf9b8972006-08-27 01:24:01 -07002476/**
2477 * tiocgwinsz - implement window query ioctl
2478 * @tty; tty
2479 * @arg: user buffer for result
2480 *
Alan Cox808a0d32006-09-29 02:00:40 -07002481 * Copies the kernel idea of the window size into the user buffer.
Alan Coxaf9b8972006-08-27 01:24:01 -07002482 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002483 * Locking: tty->termios_mutex is taken to ensure the winsize data
Alan Cox808a0d32006-09-29 02:00:40 -07002484 * is consistent.
Alan Coxaf9b8972006-08-27 01:24:01 -07002485 */
2486
Alan Cox37bdfb02008-02-08 04:18:47 -08002487static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
Alan Cox808a0d32006-09-29 02:00:40 -07002489 int err;
2490
Arjan van de Ven5785c952006-09-29 02:00:43 -07002491 mutex_lock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002492 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
Arjan van de Ven5785c952006-09-29 02:00:43 -07002493 mutex_unlock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002494
2495 return err ? -EFAULT: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
Alan Coxaf9b8972006-08-27 01:24:01 -07002498/**
2499 * tiocswinsz - implement window size set ioctl
2500 * @tty; tty
2501 * @arg: user buffer for result
2502 *
2503 * Copies the user idea of the window size to the kernel. Traditionally
2504 * this is just advisory information but for the Linux console it
2505 * actually has driver level meaning and triggers a VC resize.
2506 *
2507 * Locking:
Alan Coxca9bda02006-09-29 02:00:03 -07002508 * Called function use the console_sem is used to ensure we do
2509 * not try and resize the console twice at once.
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002510 * The tty->termios_mutex is used to ensure we don't double
2511 * resize and get confused. Lock order - tty->termios_mutex before
Alan Coxca9bda02006-09-29 02:00:03 -07002512 * console sem
Alan Coxaf9b8972006-08-27 01:24:01 -07002513 */
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515static int tiocswinsz(struct tty_struct *tty, struct tty_struct *real_tty,
Alan Cox37bdfb02008-02-08 04:18:47 -08002516 struct winsize __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
2518 struct winsize tmp_ws;
Alan Cox47f86832008-04-30 00:53:30 -07002519 struct pid *pgrp, *rpgrp;
2520 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2523 return -EFAULT;
Alan Coxca9bda02006-09-29 02:00:03 -07002524
Arjan van de Ven5785c952006-09-29 02:00:43 -07002525 mutex_lock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 if (!memcmp(&tmp_ws, &tty->winsize, sizeof(*arg)))
Alan Coxca9bda02006-09-29 02:00:03 -07002527 goto done;
2528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529#ifdef CONFIG_VT
2530 if (tty->driver->type == TTY_DRIVER_TYPE_CONSOLE) {
Arjan van de Ven5785c952006-09-29 02:00:43 -07002531 if (vc_lock_resize(tty->driver_data, tmp_ws.ws_col,
2532 tmp_ws.ws_row)) {
2533 mutex_unlock(&tty->termios_mutex);
Alan Cox37bdfb02008-02-08 04:18:47 -08002534 return -ENXIO;
Alan Coxca9bda02006-09-29 02:00:03 -07002535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 }
2537#endif
Alan Cox47f86832008-04-30 00:53:30 -07002538 /* Get the PID values and reference them so we can
2539 avoid holding the tty ctrl lock while sending signals */
2540 spin_lock_irqsave(&tty->ctrl_lock, flags);
2541 pgrp = get_pid(tty->pgrp);
2542 rpgrp = get_pid(real_tty->pgrp);
2543 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2544
2545 if (pgrp)
2546 kill_pgrp(pgrp, SIGWINCH, 1);
2547 if (rpgrp != pgrp && rpgrp)
2548 kill_pgrp(rpgrp, SIGWINCH, 1);
2549
2550 put_pid(pgrp);
2551 put_pid(rpgrp);
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 tty->winsize = tmp_ws;
2554 real_tty->winsize = tmp_ws;
Alan Coxca9bda02006-09-29 02:00:03 -07002555done:
Arjan van de Ven5785c952006-09-29 02:00:43 -07002556 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 return 0;
2558}
2559
Alan Coxaf9b8972006-08-27 01:24:01 -07002560/**
2561 * tioccons - allow admin to move logical console
2562 * @file: the file to become console
2563 *
2564 * Allow the adminstrator to move the redirected console device
2565 *
2566 * Locking: uses redirect_lock to guard the redirect information
2567 */
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569static int tioccons(struct file *file)
2570{
2571 if (!capable(CAP_SYS_ADMIN))
2572 return -EPERM;
2573 if (file->f_op->write == redirected_tty_write) {
2574 struct file *f;
2575 spin_lock(&redirect_lock);
2576 f = redirect;
2577 redirect = NULL;
2578 spin_unlock(&redirect_lock);
2579 if (f)
2580 fput(f);
2581 return 0;
2582 }
2583 spin_lock(&redirect_lock);
2584 if (redirect) {
2585 spin_unlock(&redirect_lock);
2586 return -EBUSY;
2587 }
2588 get_file(file);
2589 redirect = file;
2590 spin_unlock(&redirect_lock);
2591 return 0;
2592}
2593
Alan Coxaf9b8972006-08-27 01:24:01 -07002594/**
2595 * fionbio - non blocking ioctl
2596 * @file: file to set blocking value
2597 * @p: user parameter
2598 *
2599 * Historical tty interfaces had a blocking control ioctl before
2600 * the generic functionality existed. This piece of history is preserved
2601 * in the expected tty API of posix OS's.
2602 *
2603 * Locking: none, the open fle handle ensures it won't go away.
2604 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606static int fionbio(struct file *file, int __user *p)
2607{
2608 int nonblock;
2609
2610 if (get_user(nonblock, p))
2611 return -EFAULT;
2612
Alan Cox04f378b2008-04-30 00:53:29 -07002613 /* file->f_flags is still BKL protected in the fs layer - vomit */
2614 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 if (nonblock)
2616 file->f_flags |= O_NONBLOCK;
2617 else
2618 file->f_flags &= ~O_NONBLOCK;
Alan Cox04f378b2008-04-30 00:53:29 -07002619 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 return 0;
2621}
2622
Alan Coxaf9b8972006-08-27 01:24:01 -07002623/**
2624 * tiocsctty - set controlling tty
2625 * @tty: tty structure
2626 * @arg: user argument
2627 *
2628 * This ioctl is used to manage job control. It permits a session
2629 * leader to set this tty as the controlling tty for the session.
2630 *
2631 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002632 * Takes tty_mutex() to protect tty instance
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002633 * Takes tasklist_lock internally to walk sessions
2634 * Takes ->siglock() when updating signal->tty
Alan Coxaf9b8972006-08-27 01:24:01 -07002635 */
2636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637static int tiocsctty(struct tty_struct *tty, int arg)
2638{
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002639 int ret = 0;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002640 if (current->signal->leader && (task_session(current) == tty->session))
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002641 return ret;
2642
2643 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 /*
2645 * The process must be a session leader and
2646 * not have a controlling tty already.
2647 */
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002648 if (!current->signal->leader || current->signal->tty) {
2649 ret = -EPERM;
2650 goto unlock;
2651 }
2652
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002653 if (tty->session) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 /*
2655 * This tty is already the controlling
2656 * tty for another session group!
2657 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002658 if (arg == 1 && capable(CAP_SYS_ADMIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 /*
2660 * Steal it away
2661 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002663 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 read_unlock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002665 } else {
2666 ret = -EPERM;
2667 goto unlock;
2668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002670 proc_set_tty(current, tty);
2671unlock:
Alan Cox28298232006-09-29 02:00:58 -07002672 mutex_unlock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002673 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674}
2675
Alan Coxaf9b8972006-08-27 01:24:01 -07002676/**
Alan Cox5d0fdf12008-04-30 00:53:31 -07002677 * tty_get_pgrp - return a ref counted pgrp pid
2678 * @tty: tty to read
2679 *
2680 * Returns a refcounted instance of the pid struct for the process
2681 * group controlling the tty.
2682 */
2683
2684struct pid *tty_get_pgrp(struct tty_struct *tty)
2685{
2686 unsigned long flags;
2687 struct pid *pgrp;
2688
2689 spin_lock_irqsave(&tty->ctrl_lock, flags);
2690 pgrp = get_pid(tty->pgrp);
2691 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2692
2693 return pgrp;
2694}
2695EXPORT_SYMBOL_GPL(tty_get_pgrp);
2696
2697/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002698 * tiocgpgrp - get process group
2699 * @tty: tty passed by user
2700 * @real_tty: tty side of the tty pased by the user if a pty else the tty
2701 * @p: returned pid
2702 *
2703 * Obtain the process group of the tty. If there is no process group
2704 * return an error.
2705 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002706 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002707 */
2708
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2710{
Alan Cox5d0fdf12008-04-30 00:53:31 -07002711 struct pid *pid;
2712 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 /*
2714 * (tty == real_tty) is a cheap way of
2715 * testing if the tty is NOT a master pty.
2716 */
2717 if (tty == real_tty && current->signal->tty != real_tty)
2718 return -ENOTTY;
Alan Cox5d0fdf12008-04-30 00:53:31 -07002719 pid = tty_get_pgrp(real_tty);
2720 ret = put_user(pid_vnr(pid), p);
2721 put_pid(pid);
2722 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723}
2724
Alan Coxaf9b8972006-08-27 01:24:01 -07002725/**
2726 * tiocspgrp - attempt to set process group
2727 * @tty: tty passed by user
2728 * @real_tty: tty side device matching tty passed by user
2729 * @p: pid pointer
2730 *
2731 * Set the process group of the tty to the session passed. Only
2732 * permitted where the tty session is our session.
2733 *
Alan Cox47f86832008-04-30 00:53:30 -07002734 * Locking: RCU, ctrl lock
Alan Coxaf9b8972006-08-27 01:24:01 -07002735 */
2736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2738{
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002739 struct pid *pgrp;
2740 pid_t pgrp_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 int retval = tty_check_change(real_tty);
Alan Cox47f86832008-04-30 00:53:30 -07002742 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
2744 if (retval == -EIO)
2745 return -ENOTTY;
2746 if (retval)
2747 return retval;
2748 if (!current->signal->tty ||
2749 (current->signal->tty != real_tty) ||
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002750 (real_tty->session != task_session(current)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 return -ENOTTY;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002752 if (get_user(pgrp_nr, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 return -EFAULT;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002754 if (pgrp_nr < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 return -EINVAL;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002756 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002757 pgrp = find_vpid(pgrp_nr);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002758 retval = -ESRCH;
2759 if (!pgrp)
2760 goto out_unlock;
2761 retval = -EPERM;
2762 if (session_of_pgrp(pgrp) != task_session(current))
2763 goto out_unlock;
2764 retval = 0;
Alan Cox47f86832008-04-30 00:53:30 -07002765 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002766 put_pid(real_tty->pgrp);
2767 real_tty->pgrp = get_pid(pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002768 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002769out_unlock:
2770 rcu_read_unlock();
2771 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772}
2773
Alan Coxaf9b8972006-08-27 01:24:01 -07002774/**
2775 * tiocgsid - get session id
2776 * @tty: tty passed by user
2777 * @real_tty: tty side of the tty pased by the user if a pty else the tty
2778 * @p: pointer to returned session id
2779 *
2780 * Obtain the session id of the tty. If there is no session
2781 * return an error.
2782 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002783 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002784 */
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786static int tiocgsid(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2787{
2788 /*
2789 * (tty == real_tty) is a cheap way of
2790 * testing if the tty is NOT a master pty.
2791 */
2792 if (tty == real_tty && current->signal->tty != real_tty)
2793 return -ENOTTY;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002794 if (!real_tty->session)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 return -ENOTTY;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002796 return put_user(pid_vnr(real_tty->session), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797}
2798
Alan Coxaf9b8972006-08-27 01:24:01 -07002799/**
2800 * tiocsetd - set line discipline
2801 * @tty: tty device
2802 * @p: pointer to user data
2803 *
2804 * Set the line discipline according to user request.
2805 *
2806 * Locking: see tty_set_ldisc, this function is just a helper
2807 */
2808
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809static int tiocsetd(struct tty_struct *tty, int __user *p)
2810{
2811 int ldisc;
Alan Cox04f378b2008-04-30 00:53:29 -07002812 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
2814 if (get_user(ldisc, p))
2815 return -EFAULT;
Alan Cox04f378b2008-04-30 00:53:29 -07002816
2817 lock_kernel();
2818 ret = tty_set_ldisc(tty, ldisc);
2819 unlock_kernel();
2820
2821 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822}
2823
Alan Coxaf9b8972006-08-27 01:24:01 -07002824/**
2825 * send_break - performed time break
2826 * @tty: device to break on
2827 * @duration: timeout in mS
2828 *
2829 * Perform a timed break on hardware that lacks its own driver level
2830 * timed break functionality.
2831 *
2832 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002833 * atomic_write_lock serializes
Alan Coxaf9b8972006-08-27 01:24:01 -07002834 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002835 */
2836
Domen Puncerb20f3ae2005-06-25 14:58:42 -07002837static int send_break(struct tty_struct *tty, unsigned int duration)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
Alan Cox9e989662008-07-22 11:18:03 +01002839 int retval;
2840
2841 if (tty->ops->break_ctl == NULL)
2842 return 0;
2843
2844 if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK)
2845 retval = tty->ops->break_ctl(tty, duration);
2846 else {
2847 /* Do the work ourselves */
2848 if (tty_write_lock(tty, 0) < 0)
2849 return -EINTR;
2850 retval = tty->ops->break_ctl(tty, -1);
2851 if (retval)
2852 goto out;
2853 if (!signal_pending(current))
2854 msleep_interruptible(duration);
2855 retval = tty->ops->break_ctl(tty, 0);
2856out:
2857 tty_write_unlock(tty);
2858 if (signal_pending(current))
2859 retval = -EINTR;
2860 }
2861 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862}
2863
Alan Coxaf9b8972006-08-27 01:24:01 -07002864/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002865 * tty_tiocmget - get modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002866 * @tty: tty device
2867 * @file: user file pointer
2868 * @p: pointer to result
2869 *
2870 * Obtain the modem status bits from the tty driver if the feature
2871 * is supported. Return -EINVAL if it is not available.
2872 *
2873 * Locking: none (up to the driver)
2874 */
2875
2876static int tty_tiocmget(struct tty_struct *tty, struct file *file, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
2878 int retval = -EINVAL;
2879
Alan Coxf34d7a52008-04-30 00:54:13 -07002880 if (tty->ops->tiocmget) {
2881 retval = tty->ops->tiocmget(tty, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883 if (retval >= 0)
2884 retval = put_user(retval, p);
2885 }
2886 return retval;
2887}
2888
Alan Coxaf9b8972006-08-27 01:24:01 -07002889/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002890 * tty_tiocmset - set modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002891 * @tty: tty device
2892 * @file: user file pointer
2893 * @cmd: command - clear bits, set bits or set all
2894 * @p: pointer to desired bits
2895 *
2896 * Set the modem status bits from the tty driver if the feature
2897 * is supported. Return -EINVAL if it is not available.
2898 *
2899 * Locking: none (up to the driver)
2900 */
2901
2902static int tty_tiocmset(struct tty_struct *tty, struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 unsigned __user *p)
2904{
Alan Coxae677512008-07-16 21:56:54 +01002905 int retval;
2906 unsigned int set, clear, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Alan Coxae677512008-07-16 21:56:54 +01002908 if (tty->ops->tiocmset == NULL)
2909 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Alan Coxae677512008-07-16 21:56:54 +01002911 retval = get_user(val, p);
2912 if (retval)
2913 return retval;
2914 set = clear = 0;
2915 switch (cmd) {
2916 case TIOCMBIS:
2917 set = val;
2918 break;
2919 case TIOCMBIC:
2920 clear = val;
2921 break;
2922 case TIOCMSET:
2923 set = val;
2924 clear = ~val;
2925 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 }
Alan Coxae677512008-07-16 21:56:54 +01002927 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2928 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2929 return tty->ops->tiocmset(tty, file, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930}
2931
2932/*
2933 * Split this up, as gcc can choke on it otherwise..
2934 */
Alan Cox04f378b2008-04-30 00:53:29 -07002935long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
2937 struct tty_struct *tty, *real_tty;
2938 void __user *p = (void __user *)arg;
2939 int retval;
2940 struct tty_ldisc *ld;
Alan Cox04f378b2008-04-30 00:53:29 -07002941 struct inode *inode = file->f_dentry->d_inode;
Alan Cox37bdfb02008-02-08 04:18:47 -08002942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 tty = (struct tty_struct *)file->private_data;
2944 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
2945 return -EINVAL;
2946
2947 real_tty = tty;
2948 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2949 tty->driver->subtype == PTY_TYPE_MASTER)
2950 real_tty = tty->link;
2951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 /*
2954 * Factor out some common prep work
2955 */
2956 switch (cmd) {
2957 case TIOCSETD:
2958 case TIOCSBRK:
2959 case TIOCCBRK:
2960 case TCSBRK:
Alan Cox37bdfb02008-02-08 04:18:47 -08002961 case TCSBRKP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 retval = tty_check_change(tty);
2963 if (retval)
2964 return retval;
2965 if (cmd != TIOCCBRK) {
2966 tty_wait_until_sent(tty, 0);
2967 if (signal_pending(current))
2968 return -EINTR;
2969 }
2970 break;
2971 }
2972
Alan Cox9e989662008-07-22 11:18:03 +01002973 /*
2974 * Now do the stuff.
2975 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 switch (cmd) {
Alan Cox37bdfb02008-02-08 04:18:47 -08002977 case TIOCSTI:
2978 return tiocsti(tty, p);
2979 case TIOCGWINSZ:
2980 return tiocgwinsz(tty, p);
2981 case TIOCSWINSZ:
2982 return tiocswinsz(tty, real_tty, p);
2983 case TIOCCONS:
2984 return real_tty != tty ? -EINVAL : tioccons(file);
2985 case FIONBIO:
2986 return fionbio(file, p);
2987 case TIOCEXCL:
2988 set_bit(TTY_EXCLUSIVE, &tty->flags);
2989 return 0;
2990 case TIOCNXCL:
2991 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2992 return 0;
2993 case TIOCNOTTY:
2994 if (current->signal->tty != tty)
2995 return -ENOTTY;
2996 no_tty();
2997 return 0;
2998 case TIOCSCTTY:
2999 return tiocsctty(tty, arg);
3000 case TIOCGPGRP:
3001 return tiocgpgrp(tty, real_tty, p);
3002 case TIOCSPGRP:
3003 return tiocspgrp(tty, real_tty, p);
3004 case TIOCGSID:
3005 return tiocgsid(tty, real_tty, p);
3006 case TIOCGETD:
Alan Coxa352def2008-07-16 21:53:12 +01003007 return put_user(tty->ldisc.ops->num, (int __user *)p);
Alan Cox37bdfb02008-02-08 04:18:47 -08003008 case TIOCSETD:
3009 return tiocsetd(tty, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010#ifdef CONFIG_VT
Alan Cox37bdfb02008-02-08 04:18:47 -08003011 case TIOCLINUX:
3012 return tioclinux(tty, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013#endif
Alan Cox37bdfb02008-02-08 04:18:47 -08003014 /*
3015 * Break handling
3016 */
3017 case TIOCSBRK: /* Turn break on, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07003018 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01003019 return tty->ops->break_ctl(tty, -1);
Alan Cox37bdfb02008-02-08 04:18:47 -08003020 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08003021 case TIOCCBRK: /* Turn break off, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07003022 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01003023 return tty->ops->break_ctl(tty, 0);
Alan Cox37bdfb02008-02-08 04:18:47 -08003024 return 0;
3025 case TCSBRK: /* SVID version: non-zero arg --> no break */
3026 /* non-zero arg means wait for all output data
3027 * to be sent (performed above) but don't send break.
3028 * This is used by the tcdrain() termios function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 */
Alan Cox37bdfb02008-02-08 04:18:47 -08003030 if (!arg)
3031 return send_break(tty, 250);
3032 return 0;
3033 case TCSBRKP: /* support for POSIX tcsendbreak() */
3034 return send_break(tty, arg ? arg*100 : 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Alan Cox37bdfb02008-02-08 04:18:47 -08003036 case TIOCMGET:
3037 return tty_tiocmget(tty, file, p);
3038 case TIOCMSET:
3039 case TIOCMBIC:
3040 case TIOCMBIS:
3041 return tty_tiocmset(tty, file, cmd, p);
3042 case TCFLSH:
3043 switch (arg) {
3044 case TCIFLUSH:
3045 case TCIOFLUSH:
3046 /* flush tty buffer and allow ldisc to process ioctl */
3047 tty_buffer_flush(tty);
Paul Fulghumc5c34d42007-05-12 10:36:55 -07003048 break;
Alan Cox37bdfb02008-02-08 04:18:47 -08003049 }
3050 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 }
Alan Coxf34d7a52008-04-30 00:54:13 -07003052 if (tty->ops->ioctl) {
3053 retval = (tty->ops->ioctl)(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 if (retval != -ENOIOCTLCMD)
3055 return retval;
3056 }
3057 ld = tty_ldisc_ref_wait(tty);
3058 retval = -EINVAL;
Alan Coxa352def2008-07-16 21:53:12 +01003059 if (ld->ops->ioctl) {
3060 retval = ld->ops->ioctl(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 if (retval == -ENOIOCTLCMD)
3062 retval = -EINVAL;
3063 }
3064 tty_ldisc_deref(ld);
3065 return retval;
3066}
3067
Paul Fulghume10cc1d2007-05-10 22:22:50 -07003068#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -08003069static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07003070 unsigned long arg)
3071{
3072 struct inode *inode = file->f_dentry->d_inode;
3073 struct tty_struct *tty = file->private_data;
3074 struct tty_ldisc *ld;
3075 int retval = -ENOIOCTLCMD;
3076
3077 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
3078 return -EINVAL;
3079
Alan Coxf34d7a52008-04-30 00:54:13 -07003080 if (tty->ops->compat_ioctl) {
3081 retval = (tty->ops->compat_ioctl)(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07003082 if (retval != -ENOIOCTLCMD)
3083 return retval;
3084 }
3085
3086 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01003087 if (ld->ops->compat_ioctl)
3088 retval = ld->ops->compat_ioctl(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07003089 tty_ldisc_deref(ld);
3090
3091 return retval;
3092}
3093#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095/*
3096 * This implements the "Secure Attention Key" --- the idea is to
3097 * prevent trojan horses by killing all processes associated with this
3098 * tty when the user hits the "Secure Attention Key". Required for
3099 * super-paranoid applications --- see the Orange Book for more details.
Alan Cox37bdfb02008-02-08 04:18:47 -08003100 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 * This code could be nicer; ideally it should send a HUP, wait a few
3102 * seconds, then send a INT, and then a KILL signal. But you then
3103 * have to coordinate with the init process, since all processes associated
3104 * with the current tty must be dead before the new getty is allowed
3105 * to spawn.
3106 *
3107 * Now, if it would be correct ;-/ The current code has a nasty hole -
3108 * it doesn't catch files in flight. We may send the descriptor to ourselves
3109 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
3110 *
3111 * Nasty bug: do_SAK is being called in interrupt context. This can
3112 * deadlock. We punt it up to process context. AKPM - 16Mar2001
3113 */
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08003114void __do_SAK(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115{
3116#ifdef TTY_SOFT_SAK
3117 tty_hangup(tty);
3118#else
Eric W. Biederman652486f2006-03-28 16:11:02 -08003119 struct task_struct *g, *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003120 struct pid *session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 int i;
3122 struct file *filp;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07003123 struct fdtable *fdt;
Alan Cox37bdfb02008-02-08 04:18:47 -08003124
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 if (!tty)
3126 return;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003127 session = tty->session;
Alan Cox37bdfb02008-02-08 04:18:47 -08003128
Dan Carpenterb3f13de2006-12-13 00:35:09 -08003129 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Alan Coxf34d7a52008-04-30 00:54:13 -07003131 tty_driver_flush_buffer(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -08003132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 read_lock(&tasklist_lock);
Eric W. Biederman652486f2006-03-28 16:11:02 -08003134 /* Kill the entire session */
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003135 do_each_pid_task(session, PIDTYPE_SID, p) {
Eric W. Biederman652486f2006-03-28 16:11:02 -08003136 printk(KERN_NOTICE "SAK: killed process %d"
Pavel Emelianova47afb02007-10-18 23:39:46 -07003137 " (%s): task_session_nr(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003138 task_pid_nr(p), p->comm);
Eric W. Biederman652486f2006-03-28 16:11:02 -08003139 send_sig(SIGKILL, p, 1);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003140 } while_each_pid_task(session, PIDTYPE_SID, p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08003141 /* Now kill any processes that happen to have the
3142 * tty open.
3143 */
3144 do_each_thread(g, p) {
3145 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 printk(KERN_NOTICE "SAK: killed process %d"
Pavel Emelianova47afb02007-10-18 23:39:46 -07003147 " (%s): task_session_nr(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003148 task_pid_nr(p), p->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 send_sig(SIGKILL, p, 1);
3150 continue;
3151 }
3152 task_lock(p);
3153 if (p->files) {
Dipankar Sarmaca99c1d2006-04-18 22:21:46 -07003154 /*
3155 * We don't take a ref to the file, so we must
3156 * hold ->file_lock instead.
3157 */
3158 spin_lock(&p->files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07003159 fdt = files_fdtable(p->files);
Alan Cox37bdfb02008-02-08 04:18:47 -08003160 for (i = 0; i < fdt->max_fds; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 filp = fcheck_files(p->files, i);
3162 if (!filp)
3163 continue;
3164 if (filp->f_op->read == tty_read &&
3165 filp->private_data == tty) {
3166 printk(KERN_NOTICE "SAK: killed process %d"
3167 " (%s): fd#%d opened to the tty\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003168 task_pid_nr(p), p->comm, i);
Eric W. Biederman20ac9432006-04-13 04:49:07 -06003169 force_sig(SIGKILL, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 break;
3171 }
3172 }
Dipankar Sarmaca99c1d2006-04-18 22:21:46 -07003173 spin_unlock(&p->files->file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 }
3175 task_unlock(p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08003176 } while_each_thread(g, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 read_unlock(&tasklist_lock);
3178#endif
3179}
3180
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08003181static void do_SAK_work(struct work_struct *work)
3182{
3183 struct tty_struct *tty =
3184 container_of(work, struct tty_struct, SAK_work);
3185 __do_SAK(tty);
3186}
3187
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188/*
3189 * The tq handling here is a little racy - tty->SAK_work may already be queued.
3190 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
3191 * the values which we write to it will be identical to the values which it
3192 * already has. --akpm
3193 */
3194void do_SAK(struct tty_struct *tty)
3195{
3196 if (!tty)
3197 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 schedule_work(&tty->SAK_work);
3199}
3200
3201EXPORT_SYMBOL(do_SAK);
3202
Alan Coxaf9b8972006-08-27 01:24:01 -07003203/**
3204 * flush_to_ldisc
David Howells65f27f32006-11-22 14:55:48 +00003205 * @work: tty structure passed from work queue.
Alan Coxaf9b8972006-08-27 01:24:01 -07003206 *
3207 * This routine is called out of the software interrupt to flush data
3208 * from the buffer chain to the line discipline.
3209 *
3210 * Locking: holds tty->buf.lock to guard buffer list. Drops the lock
3211 * while invoking the line discipline receive_buf method. The
3212 * receive_buf method is single threaded for each tty instance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 */
Alan Cox37bdfb02008-02-08 04:18:47 -08003214
David Howells65f27f32006-11-22 14:55:48 +00003215static void flush_to_ldisc(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216{
David Howells65f27f32006-11-22 14:55:48 +00003217 struct tty_struct *tty =
3218 container_of(work, struct tty_struct, buf.work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 unsigned long flags;
3220 struct tty_ldisc *disc;
Paul Fulghum2c3bb202006-06-28 04:26:48 -07003221 struct tty_buffer *tbuf, *head;
Paul Fulghum8977d922006-02-10 01:51:14 -08003222 char *char_buf;
3223 unsigned char *flag_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
3225 disc = tty_ldisc_ref(tty);
3226 if (disc == NULL) /* !TTY_LDISC */
3227 return;
3228
Paul Fulghum808249c2006-02-03 03:04:41 -08003229 spin_lock_irqsave(&tty->buf.lock, flags);
Alan Cox37bdfb02008-02-08 04:18:47 -08003230 /* So we know a flush is running */
3231 set_bit(TTY_FLUSHING, &tty->flags);
Paul Fulghum2c3bb202006-06-28 04:26:48 -07003232 head = tty->buf.head;
3233 if (head != NULL) {
3234 tty->buf.head = NULL;
3235 for (;;) {
3236 int count = head->commit - head->read;
3237 if (!count) {
3238 if (head->next == NULL)
3239 break;
3240 tbuf = head;
3241 head = head->next;
3242 tty_buffer_free(tty, tbuf);
3243 continue;
3244 }
Alan Cox42fd5522007-08-10 13:01:05 -07003245 /* Ldisc or user is trying to flush the buffers
3246 we are feeding to the ldisc, stop feeding the
3247 line discipline as we want to empty the queue */
3248 if (test_bit(TTY_FLUSHPENDING, &tty->flags))
3249 break;
Paul Fulghum2c3bb202006-06-28 04:26:48 -07003250 if (!tty->receive_room) {
3251 schedule_delayed_work(&tty->buf.work, 1);
3252 break;
3253 }
3254 if (count > tty->receive_room)
3255 count = tty->receive_room;
3256 char_buf = head->char_buf_ptr + head->read;
3257 flag_buf = head->flag_buf_ptr + head->read;
3258 head->read += count;
Paul Fulghum8977d922006-02-10 01:51:14 -08003259 spin_unlock_irqrestore(&tty->buf.lock, flags);
Alan Coxa352def2008-07-16 21:53:12 +01003260 disc->ops->receive_buf(tty, char_buf,
3261 flag_buf, count);
Paul Fulghum8977d922006-02-10 01:51:14 -08003262 spin_lock_irqsave(&tty->buf.lock, flags);
3263 }
Alan Cox42fd5522007-08-10 13:01:05 -07003264 /* Restore the queue head */
Paul Fulghum2c3bb202006-06-28 04:26:48 -07003265 tty->buf.head = head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 }
Alan Cox42fd5522007-08-10 13:01:05 -07003267 /* We may have a deferred request to flush the input buffer,
3268 if so pull the chain under the lock and empty the queue */
3269 if (test_bit(TTY_FLUSHPENDING, &tty->flags)) {
3270 __tty_buffer_flush(tty);
3271 clear_bit(TTY_FLUSHPENDING, &tty->flags);
3272 wake_up(&tty->read_wait);
3273 }
3274 clear_bit(TTY_FLUSHING, &tty->flags);
Paul Fulghum808249c2006-02-03 03:04:41 -08003275 spin_unlock_irqrestore(&tty->buf.lock, flags);
Paul Fulghum817d6d32006-06-28 04:26:47 -07003276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 tty_ldisc_deref(disc);
3278}
3279
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280/**
3281 * tty_flip_buffer_push - terminal
3282 * @tty: tty to push
3283 *
3284 * Queue a push of the terminal flip buffers to the line discipline. This
3285 * function must not be called from IRQ context if tty->low_latency is set.
3286 *
3287 * In the event of the queue being busy for flipping the work will be
3288 * held off and retried later.
Alan Coxaf9b8972006-08-27 01:24:01 -07003289 *
3290 * Locking: tty buffer lock. Driver locks in low latency mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 */
3292
3293void tty_flip_buffer_push(struct tty_struct *tty)
3294{
Paul Fulghum808249c2006-02-03 03:04:41 -08003295 unsigned long flags;
3296 spin_lock_irqsave(&tty->buf.lock, flags);
Paul Fulghum33b37a32006-06-28 04:26:49 -07003297 if (tty->buf.tail != NULL)
Paul Fulghum8977d922006-02-10 01:51:14 -08003298 tty->buf.tail->commit = tty->buf.tail->used;
Paul Fulghum808249c2006-02-03 03:04:41 -08003299 spin_unlock_irqrestore(&tty->buf.lock, flags);
3300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 if (tty->low_latency)
David Howells65f27f32006-11-22 14:55:48 +00003302 flush_to_ldisc(&tty->buf.work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 else
Alan Cox33f0f882006-01-09 20:54:13 -08003304 schedule_delayed_work(&tty->buf.work, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
3307EXPORT_SYMBOL(tty_flip_buffer_push);
3308
Alan Cox33f0f882006-01-09 20:54:13 -08003309
Alan Coxaf9b8972006-08-27 01:24:01 -07003310/**
3311 * initialize_tty_struct
3312 * @tty: tty to initialize
3313 *
3314 * This subroutine initializes a tty structure that has been newly
3315 * allocated.
3316 *
3317 * Locking: none - tty in question must not be exposed at this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 */
Alan Coxaf9b8972006-08-27 01:24:01 -07003319
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320static void initialize_tty_struct(struct tty_struct *tty)
3321{
3322 memset(tty, 0, sizeof(struct tty_struct));
3323 tty->magic = TTY_MAGIC;
Alan Cox01e1abb2008-07-22 11:16:55 +01003324 tty_ldisc_init(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003325 tty->session = NULL;
3326 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 tty->overrun_time = jiffies;
Alan Cox33f0f882006-01-09 20:54:13 -08003328 tty->buf.head = tty->buf.tail = NULL;
3329 tty_buffer_init(tty);
David Howells65f27f32006-11-22 14:55:48 +00003330 INIT_DELAYED_WORK(&tty->buf.work, flush_to_ldisc);
Arjan van de Ven5785c952006-09-29 02:00:43 -07003331 mutex_init(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 init_waitqueue_head(&tty->write_wait);
3333 init_waitqueue_head(&tty->read_wait);
David Howells65f27f32006-11-22 14:55:48 +00003334 INIT_WORK(&tty->hangup_work, do_tty_hangup);
Ingo Molnar70522e12006-03-23 03:00:31 -08003335 mutex_init(&tty->atomic_read_lock);
3336 mutex_init(&tty->atomic_write_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 spin_lock_init(&tty->read_lock);
Alan Cox04f378b2008-04-30 00:53:29 -07003338 spin_lock_init(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 INIT_LIST_HEAD(&tty->tty_files);
Eric W. Biederman7f1f86a2007-02-13 14:38:58 -07003340 INIT_WORK(&tty->SAK_work, do_SAK_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341}
3342
Alan Coxf34d7a52008-04-30 00:54:13 -07003343/**
3344 * tty_put_char - write one character to a tty
3345 * @tty: tty
3346 * @ch: character
3347 *
3348 * Write one byte to the tty using the provided put_char method
3349 * if present. Returns the number of characters successfully output.
3350 *
3351 * Note: the specific put_char operation in the driver layer may go
3352 * away soon. Don't call it directly, use this method
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 */
Alan Coxaf9b8972006-08-27 01:24:01 -07003354
Alan Coxf34d7a52008-04-30 00:54:13 -07003355int tty_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356{
Alan Coxf34d7a52008-04-30 00:54:13 -07003357 if (tty->ops->put_char)
3358 return tty->ops->put_char(tty, ch);
3359 return tty->ops->write(tty, &ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360}
3361
Alan Coxf34d7a52008-04-30 00:54:13 -07003362EXPORT_SYMBOL_GPL(tty_put_char);
3363
gregkh@suse.de7fe845d2005-03-15 14:23:15 -08003364static struct class *tty_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
3366/**
Alan Coxaf9b8972006-08-27 01:24:01 -07003367 * tty_register_device - register a tty device
3368 * @driver: the tty driver that describes the tty device
3369 * @index: the index in the tty driver for this tty device
3370 * @device: a struct device that is associated with this tty device.
3371 * This field is optional, if there is no known struct device
3372 * for this tty device it can be set to NULL safely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 *
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07003374 * Returns a pointer to the struct device for this tty device
3375 * (or ERR_PTR(-EFOO) on error).
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02003376 *
Alan Coxaf9b8972006-08-27 01:24:01 -07003377 * This call is required to be made to register an individual tty device
3378 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3379 * that bit is not set, this function should not be called by a tty
3380 * driver.
3381 *
3382 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 */
Alan Coxaf9b8972006-08-27 01:24:01 -07003384
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07003385struct device *tty_register_device(struct tty_driver *driver, unsigned index,
3386 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387{
3388 char name[64];
3389 dev_t dev = MKDEV(driver->major, driver->minor_start) + index;
3390
3391 if (index >= driver->num) {
3392 printk(KERN_ERR "Attempt to register invalid tty line number "
3393 " (%d).\n", index);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02003394 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 }
3396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 if (driver->type == TTY_DRIVER_TYPE_PTY)
3398 pty_line_name(driver, index, name);
3399 else
3400 tty_line_name(driver, index, name);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02003401
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003402 return device_create_drvdata(tty_class, device, dev, NULL, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403}
3404
3405/**
Alan Coxaf9b8972006-08-27 01:24:01 -07003406 * tty_unregister_device - unregister a tty device
3407 * @driver: the tty driver that describes the tty device
3408 * @index: the index in the tty driver for this tty device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 *
Alan Coxaf9b8972006-08-27 01:24:01 -07003410 * If a tty device is registered with a call to tty_register_device() then
3411 * this function must be called when the tty device is gone.
3412 *
3413 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 */
Alan Coxaf9b8972006-08-27 01:24:01 -07003415
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416void tty_unregister_device(struct tty_driver *driver, unsigned index)
3417{
Alan Cox37bdfb02008-02-08 04:18:47 -08003418 device_destroy(tty_class,
3419 MKDEV(driver->major, driver->minor_start) + index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420}
3421
3422EXPORT_SYMBOL(tty_register_device);
3423EXPORT_SYMBOL(tty_unregister_device);
3424
3425struct tty_driver *alloc_tty_driver(int lines)
3426{
3427 struct tty_driver *driver;
3428
Jean Delvare506eb992007-07-15 23:40:14 -07003429 driver = kzalloc(sizeof(struct tty_driver), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 if (driver) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 driver->magic = TTY_DRIVER_MAGIC;
3432 driver->num = lines;
3433 /* later we'll move allocation of tables here */
3434 }
3435 return driver;
3436}
3437
3438void put_tty_driver(struct tty_driver *driver)
3439{
3440 kfree(driver);
3441}
3442
Jeff Dikeb68e31d2006-10-02 02:17:18 -07003443void tty_set_operations(struct tty_driver *driver,
3444 const struct tty_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445{
Alan Coxf34d7a52008-04-30 00:54:13 -07003446 driver->ops = op;
3447};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
3449EXPORT_SYMBOL(alloc_tty_driver);
3450EXPORT_SYMBOL(put_tty_driver);
3451EXPORT_SYMBOL(tty_set_operations);
3452
3453/*
3454 * Called by a tty driver to register itself.
3455 */
3456int tty_register_driver(struct tty_driver *driver)
3457{
3458 int error;
Alan Cox37bdfb02008-02-08 04:18:47 -08003459 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 dev_t dev;
3461 void **p = NULL;
3462
3463 if (driver->flags & TTY_DRIVER_INSTALLED)
3464 return 0;
3465
Andy Whitcroft543691a62007-05-06 14:49:33 -07003466 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM) && driver->num) {
3467 p = kzalloc(driver->num * 3 * sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 if (!p)
3469 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 }
3471
3472 if (!driver->major) {
Alan Cox37bdfb02008-02-08 04:18:47 -08003473 error = alloc_chrdev_region(&dev, driver->minor_start,
3474 driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 if (!error) {
3476 driver->major = MAJOR(dev);
3477 driver->minor_start = MINOR(dev);
3478 }
3479 } else {
3480 dev = MKDEV(driver->major, driver->minor_start);
Geert Uytterhoevene5717c42007-02-20 15:45:21 +01003481 error = register_chrdev_region(dev, driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 }
3483 if (error < 0) {
3484 kfree(p);
3485 return error;
3486 }
3487
3488 if (p) {
3489 driver->ttys = (struct tty_struct **)p;
Alan Coxedc6afc2006-12-08 02:38:44 -08003490 driver->termios = (struct ktermios **)(p + driver->num);
Alan Cox37bdfb02008-02-08 04:18:47 -08003491 driver->termios_locked = (struct ktermios **)
3492 (p + driver->num * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 } else {
3494 driver->ttys = NULL;
3495 driver->termios = NULL;
3496 driver->termios_locked = NULL;
3497 }
3498
3499 cdev_init(&driver->cdev, &tty_fops);
3500 driver->cdev.owner = driver->owner;
3501 error = cdev_add(&driver->cdev, dev, driver->num);
3502 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 unregister_chrdev_region(dev, driver->num);
3504 driver->ttys = NULL;
3505 driver->termios = driver->termios_locked = NULL;
3506 kfree(p);
3507 return error;
3508 }
3509
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003510 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 list_add(&driver->tty_drivers, &tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003512 mutex_unlock(&tty_mutex);
Alan Cox37bdfb02008-02-08 04:18:47 -08003513
3514 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) {
3515 for (i = 0; i < driver->num; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 tty_register_device(driver, i, NULL);
3517 }
3518 proc_tty_register_driver(driver);
3519 return 0;
3520}
3521
3522EXPORT_SYMBOL(tty_register_driver);
3523
3524/*
3525 * Called by a tty driver to unregister itself.
3526 */
3527int tty_unregister_driver(struct tty_driver *driver)
3528{
3529 int i;
Alan Coxedc6afc2006-12-08 02:38:44 -08003530 struct ktermios *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 void *p;
3532
3533 if (driver->refcount)
3534 return -EBUSY;
3535
3536 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3537 driver->num);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003538 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 list_del(&driver->tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003540 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
3542 /*
3543 * Free the termios and termios_locked structures because
3544 * we don't want to get memory leaks when modular tty
3545 * drivers are removed from the kernel.
3546 */
3547 for (i = 0; i < driver->num; i++) {
3548 tp = driver->termios[i];
3549 if (tp) {
3550 driver->termios[i] = NULL;
3551 kfree(tp);
3552 }
3553 tp = driver->termios_locked[i];
3554 if (tp) {
3555 driver->termios_locked[i] = NULL;
3556 kfree(tp);
3557 }
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07003558 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 tty_unregister_device(driver, i);
3560 }
3561 p = driver->ttys;
3562 proc_tty_unregister_driver(driver);
3563 driver->ttys = NULL;
3564 driver->termios = driver->termios_locked = NULL;
3565 kfree(p);
3566 cdev_del(&driver->cdev);
3567 return 0;
3568}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569EXPORT_SYMBOL(tty_unregister_driver);
3570
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003571dev_t tty_devnum(struct tty_struct *tty)
3572{
3573 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3574}
3575EXPORT_SYMBOL(tty_devnum);
3576
3577void proc_clear_tty(struct task_struct *p)
3578{
3579 spin_lock_irq(&p->sighand->siglock);
3580 p->signal->tty = NULL;
3581 spin_unlock_irq(&p->sighand->siglock);
3582}
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003583
Alan Cox47f86832008-04-30 00:53:30 -07003584/* Called under the sighand lock */
3585
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003586static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003587{
3588 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -07003589 unsigned long flags;
3590 /* We should not have a session or pgrp to put here but.... */
3591 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -06003592 put_pid(tty->session);
3593 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003594 tty->pgrp = get_pid(task_pgrp(tsk));
Alan Cox47f86832008-04-30 00:53:30 -07003595 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
3596 tty->session = get_pid(task_session(tsk));
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003597 }
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003598 put_pid(tsk->signal->tty_old_pgrp);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003599 tsk->signal->tty = tty;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003600 tsk->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003601}
3602
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07003603static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003604{
3605 spin_lock_irq(&tsk->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003606 __proc_set_tty(tsk, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003607 spin_unlock_irq(&tsk->sighand->siglock);
3608}
3609
3610struct tty_struct *get_current_tty(void)
3611{
3612 struct tty_struct *tty;
3613 WARN_ON_ONCE(!mutex_is_locked(&tty_mutex));
3614 tty = current->signal->tty;
3615 /*
3616 * session->tty can be changed/cleared from under us, make sure we
3617 * issue the load. The obtained pointer, when not NULL, is valid as
3618 * long as we hold tty_mutex.
3619 */
3620 barrier();
3621 return tty;
3622}
Heiko Carstensa311f742006-12-13 00:33:41 -08003623EXPORT_SYMBOL_GPL(get_current_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
3625/*
3626 * Initialize the console device. This is called *early*, so
3627 * we can't necessarily depend on lots of kernel help here.
3628 * Just do some early initializations, and do the complex setup
3629 * later.
3630 */
3631void __init console_init(void)
3632{
3633 initcall_t *call;
3634
3635 /* Setup the default TTY line discipline. */
Alan Cox01e1abb2008-07-22 11:16:55 +01003636 tty_ldisc_begin();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
3638 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08003639 * set up the console device so that later boot sequences can
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 * inform about problems etc..
3641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642 call = __con_initcall_start;
3643 while (call < __con_initcall_end) {
3644 (*call)();
3645 call++;
3646 }
3647}
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649static int __init tty_class_init(void)
3650{
gregkh@suse.de7fe845d2005-03-15 14:23:15 -08003651 tty_class = class_create(THIS_MODULE, "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 if (IS_ERR(tty_class))
3653 return PTR_ERR(tty_class);
3654 return 0;
3655}
3656
3657postcore_initcall(tty_class_init);
3658
3659/* 3/2004 jmc: why do these devices exist? */
3660
3661static struct cdev tty_cdev, console_cdev;
3662#ifdef CONFIG_UNIX98_PTYS
3663static struct cdev ptmx_cdev;
3664#endif
3665#ifdef CONFIG_VT
3666static struct cdev vc0_cdev;
3667#endif
3668
3669/*
3670 * Ok, now we can initialize the rest of the tty devices and can count
3671 * on memory allocations, interrupts etc..
3672 */
3673static int __init tty_init(void)
3674{
3675 cdev_init(&tty_cdev, &tty_fops);
3676 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3677 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3678 panic("Couldn't register /dev/tty driver\n");
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003679 device_create_drvdata(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL,
3680 "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
3682 cdev_init(&console_cdev, &console_fops);
3683 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3684 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3685 panic("Couldn't register /dev/console driver\n");
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003686 device_create_drvdata(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL,
3687 "console");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
3689#ifdef CONFIG_UNIX98_PTYS
3690 cdev_init(&ptmx_cdev, &ptmx_fops);
3691 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
3692 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
3693 panic("Couldn't register /dev/ptmx driver\n");
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003694 device_create_drvdata(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695#endif
3696
3697#ifdef CONFIG_VT
3698 cdev_init(&vc0_cdev, &console_fops);
3699 if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) ||
3700 register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0)
3701 panic("Couldn't register /dev/tty0 driver\n");
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003702 device_create_drvdata(tty_class, NULL, MKDEV(TTY_MAJOR, 0), NULL, "tty0");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
3704 vty_init();
3705#endif
3706 return 0;
3707}
3708module_init(tty_init);