2 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
6 #include "linux/irqreturn.h"
8 #include "linux/sched.h"
12 #include "kern_util.h"
15 #define LINE_BUFSIZE 4096
17 static irqreturn_t
line_interrupt(int irq
, void *data
)
19 struct chan
*chan
= data
;
20 struct line
*line
= chan
->line
;
21 struct tty_struct
*tty
= line
->tty
;
24 chan_interrupt(&line
->chan_list
, &line
->task
, tty
, irq
);
28 static void line_timer_cb(struct work_struct
*work
)
30 struct line
*line
= container_of(work
, struct line
, task
.work
);
33 chan_interrupt(&line
->chan_list
, &line
->task
, line
->tty
,
34 line
->driver
->read_irq
);
38 * Returns the free space inside the ring buffer of this line.
40 * Should be called while holding line->lock (this does not modify data).
42 static int write_room(struct line
*line
)
46 if (line
->buffer
== NULL
)
47 return LINE_BUFSIZE
- 1;
49 /* This is for the case where the buffer is wrapped! */
50 n
= line
->head
- line
->tail
;
53 n
+= LINE_BUFSIZE
; /* The other case */
57 int line_write_room(struct tty_struct
*tty
)
59 struct line
*line
= tty
->driver_data
;
63 spin_lock_irqsave(&line
->lock
, flags
);
64 room
= write_room(line
);
65 spin_unlock_irqrestore(&line
->lock
, flags
);
70 int line_chars_in_buffer(struct tty_struct
*tty
)
72 struct line
*line
= tty
->driver_data
;
76 spin_lock_irqsave(&line
->lock
, flags
);
77 /* write_room subtracts 1 for the needed NULL, so we readd it.*/
78 ret
= LINE_BUFSIZE
- (write_room(line
) + 1);
79 spin_unlock_irqrestore(&line
->lock
, flags
);
85 * This copies the content of buf into the circular buffer associated with
87 * The return value is the number of characters actually copied, i.e. the ones
88 * for which there was space: this function is not supposed to ever flush out
89 * the circular buffer.
91 * Must be called while holding line->lock!
93 static int buffer_data(struct line
*line
, const char *buf
, int len
)
97 if (line
->buffer
== NULL
) {
98 line
->buffer
= kmalloc(LINE_BUFSIZE
, GFP_ATOMIC
);
99 if (line
->buffer
== NULL
) {
100 printk(KERN_ERR
"buffer_data - atomic allocation "
104 line
->head
= line
->buffer
;
105 line
->tail
= line
->buffer
;
108 room
= write_room(line
);
109 len
= (len
> room
) ? room
: len
;
111 end
= line
->buffer
+ LINE_BUFSIZE
- line
->tail
;
114 memcpy(line
->tail
, buf
, len
);
118 /* The circular buffer is wrapping */
119 memcpy(line
->tail
, buf
, end
);
121 memcpy(line
->buffer
, buf
, len
- end
);
122 line
->tail
= line
->buffer
+ len
- end
;
129 * Flushes the ring buffer to the output channels. That is, write_chan is
130 * called, passing it line->head as buffer, and an appropriate count.
132 * On exit, returns 1 when the buffer is empty,
133 * 0 when the buffer is not empty on exit,
134 * and -errno when an error occurred.
136 * Must be called while holding line->lock!*/
137 static int flush_buffer(struct line
*line
)
141 if ((line
->buffer
== NULL
) || (line
->head
== line
->tail
))
144 if (line
->tail
< line
->head
) {
145 /* line->buffer + LINE_BUFSIZE is the end of the buffer! */
146 count
= line
->buffer
+ LINE_BUFSIZE
- line
->head
;
148 n
= write_chan(&line
->chan_list
, line
->head
, count
,
149 line
->driver
->write_irq
);
154 * We have flushed from ->head to buffer end, now we
155 * must flush only from the beginning to ->tail.
157 line
->head
= line
->buffer
;
164 count
= line
->tail
- line
->head
;
165 n
= write_chan(&line
->chan_list
, line
->head
, count
,
166 line
->driver
->write_irq
);
172 return line
->head
== line
->tail
;
175 void line_flush_buffer(struct tty_struct
*tty
)
177 struct line
*line
= tty
->driver_data
;
181 spin_lock_irqsave(&line
->lock
, flags
);
182 err
= flush_buffer(line
);
183 spin_unlock_irqrestore(&line
->lock
, flags
);
187 * We map both ->flush_chars and ->put_char (which go in pair) onto
188 * ->flush_buffer and ->write. Hope it's not that bad.
190 void line_flush_chars(struct tty_struct
*tty
)
192 line_flush_buffer(tty
);
195 int line_put_char(struct tty_struct
*tty
, unsigned char ch
)
197 return line_write(tty
, &ch
, sizeof(ch
));
200 int line_write(struct tty_struct
*tty
, const unsigned char *buf
, int len
)
202 struct line
*line
= tty
->driver_data
;
206 spin_lock_irqsave(&line
->lock
, flags
);
207 if (line
->head
!= line
->tail
)
208 ret
= buffer_data(line
, buf
, len
);
210 n
= write_chan(&line
->chan_list
, buf
, len
,
211 line
->driver
->write_irq
);
220 ret
+= buffer_data(line
, buf
+ n
, len
);
223 spin_unlock_irqrestore(&line
->lock
, flags
);
227 void line_set_termios(struct tty_struct
*tty
, struct ktermios
* old
)
232 static const struct {
237 /* don't print these, they flood the log ... */
238 { TCGETS
, NULL
, "TCGETS" },
239 { TCSETS
, NULL
, "TCSETS" },
240 { TCSETSW
, NULL
, "TCSETSW" },
241 { TCFLSH
, NULL
, "TCFLSH" },
242 { TCSBRK
, NULL
, "TCSBRK" },
244 /* general tty stuff */
245 { TCSETSF
, KERN_DEBUG
, "TCSETSF" },
246 { TCGETA
, KERN_DEBUG
, "TCGETA" },
247 { TIOCMGET
, KERN_DEBUG
, "TIOCMGET" },
248 { TCSBRKP
, KERN_DEBUG
, "TCSBRKP" },
249 { TIOCMSET
, KERN_DEBUG
, "TIOCMSET" },
251 /* linux-specific ones */
252 { TIOCLINUX
, KERN_INFO
, "TIOCLINUX" },
253 { KDGKBMODE
, KERN_INFO
, "KDGKBMODE" },
254 { KDGKBTYPE
, KERN_INFO
, "KDGKBTYPE" },
255 { KDSIGACCEPT
, KERN_INFO
, "KDSIGACCEPT" },
258 int line_ioctl(struct tty_struct
*tty
, struct file
* file
,
259 unsigned int cmd
, unsigned long arg
)
279 /* Note: these are out of date as we now have TCGETS2 etc but this
280 whole lot should probably go away */
305 for (i
= 0; i
< ARRAY_SIZE(tty_ioctls
); i
++)
306 if (cmd
== tty_ioctls
[i
].cmd
)
308 if (i
== ARRAY_SIZE(tty_ioctls
)) {
309 printk(KERN_ERR
"%s: %s: unknown ioctl: 0x%x\n",
310 __func__
, tty
->name
, cmd
);
318 void line_throttle(struct tty_struct
*tty
)
320 struct line
*line
= tty
->driver_data
;
322 deactivate_chan(&line
->chan_list
, line
->driver
->read_irq
);
326 void line_unthrottle(struct tty_struct
*tty
)
328 struct line
*line
= tty
->driver_data
;
331 chan_interrupt(&line
->chan_list
, &line
->task
, tty
,
332 line
->driver
->read_irq
);
335 * Maybe there is enough stuff pending that calling the interrupt
336 * throttles us again. In this case, line->throttled will be 1
337 * again and we shouldn't turn the interrupt back on.
339 if (!line
->throttled
)
340 reactivate_chan(&line
->chan_list
, line
->driver
->read_irq
);
343 static irqreturn_t
line_write_interrupt(int irq
, void *data
)
345 struct chan
*chan
= data
;
346 struct line
*line
= chan
->line
;
347 struct tty_struct
*tty
= line
->tty
;
351 * Interrupts are disabled here because we registered the interrupt with
352 * IRQF_DISABLED (see line_setup_irq).
355 spin_lock(&line
->lock
);
356 err
= flush_buffer(line
);
359 } else if (err
< 0) {
360 line
->head
= line
->buffer
;
361 line
->tail
= line
->buffer
;
363 spin_unlock(&line
->lock
);
372 int line_setup_irq(int fd
, int input
, int output
, struct line
*line
, void *data
)
374 const struct line_driver
*driver
= line
->driver
;
375 int err
= 0, flags
= IRQF_DISABLED
| IRQF_SHARED
| IRQF_SAMPLE_RANDOM
;
378 err
= um_request_irq(driver
->read_irq
, fd
, IRQ_READ
,
379 line_interrupt
, flags
,
380 driver
->read_irq_name
, data
);
384 err
= um_request_irq(driver
->write_irq
, fd
, IRQ_WRITE
,
385 line_write_interrupt
, flags
,
386 driver
->write_irq_name
, data
);
392 * Normally, a driver like this can rely mostly on the tty layer
393 * locking, particularly when it comes to the driver structure.
394 * However, in this case, mconsole requests can come in "from the
395 * side", and race with opens and closes.
397 * mconsole config requests will want to be sure the device isn't in
398 * use, and get_config, open, and close will want a stable
399 * configuration. The checking and modification of the configuration
400 * is done under a spinlock. Checking whether the device is in use is
401 * line->tty->count > 1, also under the spinlock.
403 * tty->count serves to decide whether the device should be enabled or
404 * disabled on the host. If it's equal to 1, then we are doing the
405 * first open or last close. Otherwise, open and close just return.
408 int line_open(struct line
*lines
, struct tty_struct
*tty
)
410 struct line
*line
= &lines
[tty
->index
];
413 spin_lock(&line
->count_lock
);
421 spin_unlock(&line
->count_lock
);
423 tty
->driver_data
= line
;
426 err
= enable_chan(line
);
430 INIT_DELAYED_WORK(&line
->task
, line_timer_cb
);
433 chan_enable_winch(&line
->chan_list
, tty
);
437 chan_window_size(&line
->chan_list
, &tty
->winsize
.ws_row
,
438 &tty
->winsize
.ws_col
);
443 spin_unlock(&line
->count_lock
);
447 static void unregister_winch(struct tty_struct
*tty
);
449 void line_close(struct tty_struct
*tty
, struct file
* filp
)
451 struct line
*line
= tty
->driver_data
;
454 * If line_open fails (and tty->driver_data is never set),
455 * tty_open will call line_close. So just return in this case.
460 /* We ignore the error anyway! */
463 spin_lock(&line
->count_lock
);
470 spin_unlock(&line
->count_lock
);
473 tty
->driver_data
= NULL
;
476 unregister_winch(tty
);
483 spin_unlock(&line
->count_lock
);
486 void close_lines(struct line
*lines
, int nlines
)
490 for(i
= 0; i
< nlines
; i
++)
491 close_chan(&lines
[i
].chan_list
, 0);
494 static int setup_one_line(struct line
*lines
, int n
, char *init
, int init_prio
,
497 struct line
*line
= &lines
[n
];
500 spin_lock(&line
->count_lock
);
502 if (line
->tty
!= NULL
) {
503 *error_out
= "Device is already open";
507 if (line
->init_pri
<= init_prio
) {
508 line
->init_pri
= init_prio
;
509 if (!strcmp(init
, "none"))
512 line
->init_str
= init
;
518 spin_unlock(&line
->count_lock
);
523 * Common setup code for both startup command line and mconsole initialization.
524 * @lines contains the array (of size @num) to modify;
525 * @init is the setup string;
526 * @error_out is an error string in the case of failure;
529 int line_setup(struct line
*lines
, unsigned int num
, char *init
,
537 * We said con=/ssl= instead of con#=, so we are configuring all
543 n
= simple_strtoul(init
, &end
, 0);
545 *error_out
= "Couldn't parse device number";
552 if (n
>= (signed int) num
) {
553 *error_out
= "Device number out of range";
557 err
= setup_one_line(lines
, n
, init
, INIT_ONE
, error_out
);
562 for(i
= 0; i
< num
; i
++) {
563 err
= setup_one_line(lines
, i
, init
, INIT_ALL
,
569 return n
== -1 ? num
: n
;
572 int line_config(struct line
*lines
, unsigned int num
, char *str
,
573 const struct chan_opts
*opts
, char **error_out
)
580 *error_out
= "Can't configure all devices from mconsole";
584 new = kstrdup(str
, GFP_KERNEL
);
586 *error_out
= "Failed to allocate memory";
589 n
= line_setup(lines
, num
, new, error_out
);
594 return parse_chan_pair(line
->init_str
, line
, n
, opts
, error_out
);
597 int line_get_config(char *name
, struct line
*lines
, unsigned int num
, char *str
,
598 int size
, char **error_out
)
604 dev
= simple_strtoul(name
, &end
, 0);
605 if ((*end
!= '\0') || (end
== name
)) {
606 *error_out
= "line_get_config failed to parse device number";
610 if ((dev
< 0) || (dev
>= num
)) {
611 *error_out
= "device number out of range";
617 spin_lock(&line
->count_lock
);
619 CONFIG_CHUNK(str
, size
, n
, "none", 1);
620 else if (line
->tty
== NULL
)
621 CONFIG_CHUNK(str
, size
, n
, line
->init_str
, 1);
622 else n
= chan_config_string(&line
->chan_list
, str
, size
, error_out
);
623 spin_unlock(&line
->count_lock
);
628 int line_id(char **str
, int *start_out
, int *end_out
)
633 n
= simple_strtoul(*str
, &end
, 0);
634 if ((*end
!= '\0') || (end
== *str
))
643 int line_remove(struct line
*lines
, unsigned int num
, int n
, char **error_out
)
646 char config
[sizeof("conxxxx=none\0")];
648 sprintf(config
, "%d=none", n
);
649 err
= line_setup(lines
, num
, config
, error_out
);
655 struct tty_driver
*register_lines(struct line_driver
*line_driver
,
656 const struct tty_operations
*ops
,
657 struct line
*lines
, int nlines
)
660 struct tty_driver
*driver
= alloc_tty_driver(nlines
);
665 driver
->driver_name
= line_driver
->name
;
666 driver
->name
= line_driver
->device_name
;
667 driver
->major
= line_driver
->major
;
668 driver
->minor_start
= line_driver
->minor_start
;
669 driver
->type
= line_driver
->type
;
670 driver
->subtype
= line_driver
->subtype
;
671 driver
->flags
= TTY_DRIVER_REAL_RAW
;
672 driver
->init_termios
= tty_std_termios
;
673 tty_set_operations(driver
, ops
);
675 if (tty_register_driver(driver
)) {
676 printk(KERN_ERR
"register_lines : can't register %s driver\n",
678 put_tty_driver(driver
);
682 for(i
= 0; i
< nlines
; i
++) {
684 tty_unregister_device(driver
, i
);
687 mconsole_register_dev(&line_driver
->mc
);
691 static DEFINE_SPINLOCK(winch_handler_lock
);
692 static LIST_HEAD(winch_handlers
);
694 void lines_init(struct line
*lines
, int nlines
, struct chan_opts
*opts
)
700 for(i
= 0; i
< nlines
; i
++) {
702 INIT_LIST_HEAD(&line
->chan_list
);
704 if (line
->init_str
== NULL
)
707 line
->init_str
= kstrdup(line
->init_str
, GFP_KERNEL
);
708 if (line
->init_str
== NULL
)
709 printk(KERN_ERR
"lines_init - kstrdup returned NULL\n");
711 if (parse_chan_pair(line
->init_str
, line
, i
, opts
, &error
)) {
712 printk(KERN_ERR
"parse_chan_pair failed for "
713 "device %d : %s\n", i
, error
);
720 struct list_head list
;
724 struct tty_struct
*tty
;
728 static void free_winch(struct winch
*winch
, int free_irq_ok
)
730 list_del(&winch
->list
);
732 if (winch
->pid
!= -1)
733 os_kill_process(winch
->pid
, 1);
735 os_close_file(winch
->fd
);
736 if (winch
->stack
!= 0)
737 free_stack(winch
->stack
, 0);
739 free_irq(WINCH_IRQ
, winch
);
743 static irqreturn_t
winch_interrupt(int irq
, void *data
)
745 struct winch
*winch
= data
;
746 struct tty_struct
*tty
;
751 if (winch
->fd
!= -1) {
752 err
= generic_read(winch
->fd
, &c
, NULL
);
754 if (err
!= -EAGAIN
) {
755 printk(KERN_ERR
"winch_interrupt : "
756 "read failed, errno = %d\n", -err
);
757 printk(KERN_ERR
"fd %d is losing SIGWINCH "
758 "support\n", winch
->tty_fd
);
759 free_winch(winch
, 0);
767 line
= tty
->driver_data
;
769 chan_window_size(&line
->chan_list
, &tty
->winsize
.ws_row
,
770 &tty
->winsize
.ws_col
);
771 kill_pgrp(tty
->pgrp
, SIGWINCH
, 1);
776 reactivate_fd(winch
->fd
, WINCH_IRQ
);
780 void register_winch_irq(int fd
, int tty_fd
, int pid
, struct tty_struct
*tty
,
785 winch
= kmalloc(sizeof(*winch
), GFP_KERNEL
);
787 printk(KERN_ERR
"register_winch_irq - kmalloc failed\n");
791 *winch
= ((struct winch
) { .list
= LIST_HEAD_INIT(winch
->list
),
798 if (um_request_irq(WINCH_IRQ
, fd
, IRQ_READ
, winch_interrupt
,
799 IRQF_DISABLED
| IRQF_SHARED
| IRQF_SAMPLE_RANDOM
,
800 "winch", winch
) < 0) {
801 printk(KERN_ERR
"register_winch_irq - failed to register "
806 spin_lock(&winch_handler_lock
);
807 list_add(&winch
->list
, &winch_handlers
);
808 spin_unlock(&winch_handler_lock
);
815 os_kill_process(pid
, 1);
818 free_stack(stack
, 0);
821 static void unregister_winch(struct tty_struct
*tty
)
823 struct list_head
*ele
;
826 spin_lock(&winch_handler_lock
);
828 list_for_each(ele
, &winch_handlers
) {
829 winch
= list_entry(ele
, struct winch
, list
);
830 if (winch
->tty
== tty
) {
831 free_winch(winch
, 1);
835 spin_unlock(&winch_handler_lock
);
838 static void winch_cleanup(void)
840 struct list_head
*ele
, *next
;
843 spin_lock(&winch_handler_lock
);
845 list_for_each_safe(ele
, next
, &winch_handlers
) {
846 winch
= list_entry(ele
, struct winch
, list
);
847 free_winch(winch
, 1);
850 spin_unlock(&winch_handler_lock
);
852 __uml_exitcall(winch_cleanup
);
854 char *add_xterm_umid(char *base
)
863 len
= strlen(base
) + strlen(" ()") + strlen(umid
) + 1;
864 title
= kmalloc(len
, GFP_KERNEL
);
866 printk(KERN_ERR
"Failed to allocate buffer for xterm title\n");
870 snprintf(title
, len
, "%s (%s)", base
, umid
);