1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
6 #include <linux/irqreturn.h>
8 #include <linux/sched/signal.h>
9 #include <linux/slab.h>
14 #include <kern_util.h>
17 #define LINE_BUFSIZE 4096
19 static irqreturn_t line_interrupt(int irq, void *data)
21 struct chan *chan = data;
22 struct line *line = chan->line;
25 chan_interrupt(line, irq);
31 * Returns the free space inside the ring buffer of this line.
33 * Should be called while holding line->lock (this does not modify data).
35 static int write_room(struct line *line)
39 if (line->buffer == NULL)
40 return LINE_BUFSIZE - 1;
42 /* This is for the case where the buffer is wrapped! */
43 n = line->head - line->tail;
46 n += LINE_BUFSIZE; /* The other case */
50 int line_write_room(struct tty_struct *tty)
52 struct line *line = tty->driver_data;
56 spin_lock_irqsave(&line->lock, flags);
57 room = write_room(line);
58 spin_unlock_irqrestore(&line->lock, flags);
63 int line_chars_in_buffer(struct tty_struct *tty)
65 struct line *line = tty->driver_data;
69 spin_lock_irqsave(&line->lock, flags);
70 /* write_room subtracts 1 for the needed NULL, so we readd it.*/
71 ret = LINE_BUFSIZE - (write_room(line) + 1);
72 spin_unlock_irqrestore(&line->lock, flags);
78 * This copies the content of buf into the circular buffer associated with
80 * The return value is the number of characters actually copied, i.e. the ones
81 * for which there was space: this function is not supposed to ever flush out
82 * the circular buffer.
84 * Must be called while holding line->lock!
86 static int buffer_data(struct line *line, const char *buf, int len)
90 if (line->buffer == NULL) {
91 line->buffer = kmalloc(LINE_BUFSIZE, GFP_ATOMIC);
92 if (line->buffer == NULL) {
93 printk(KERN_ERR "buffer_data - atomic allocation "
97 line->head = line->buffer;
98 line->tail = line->buffer;
101 room = write_room(line);
102 len = (len > room) ? room : len;
104 end = line->buffer + LINE_BUFSIZE - line->tail;
107 memcpy(line->tail, buf, len);
111 /* The circular buffer is wrapping */
112 memcpy(line->tail, buf, end);
114 memcpy(line->buffer, buf, len - end);
115 line->tail = line->buffer + len - end;
122 * Flushes the ring buffer to the output channels. That is, write_chan is
123 * called, passing it line->head as buffer, and an appropriate count.
125 * On exit, returns 1 when the buffer is empty,
126 * 0 when the buffer is not empty on exit,
127 * and -errno when an error occurred.
129 * Must be called while holding line->lock!*/
130 static int flush_buffer(struct line *line)
134 if ((line->buffer == NULL) || (line->head == line->tail))
137 if (line->tail < line->head) {
138 /* line->buffer + LINE_BUFSIZE is the end of the buffer! */
139 count = line->buffer + LINE_BUFSIZE - line->head;
141 n = write_chan(line->chan_out, line->head, count,
142 line->driver->write_irq);
147 * We have flushed from ->head to buffer end, now we
148 * must flush only from the beginning to ->tail.
150 line->head = line->buffer;
157 count = line->tail - line->head;
158 n = write_chan(line->chan_out, line->head, count,
159 line->driver->write_irq);
165 return line->head == line->tail;
168 void line_flush_buffer(struct tty_struct *tty)
170 struct line *line = tty->driver_data;
173 spin_lock_irqsave(&line->lock, flags);
175 spin_unlock_irqrestore(&line->lock, flags);
179 * We map both ->flush_chars and ->put_char (which go in pair) onto
180 * ->flush_buffer and ->write. Hope it's not that bad.
182 void line_flush_chars(struct tty_struct *tty)
184 line_flush_buffer(tty);
187 int line_write(struct tty_struct *tty, const unsigned char *buf, int len)
189 struct line *line = tty->driver_data;
193 spin_lock_irqsave(&line->lock, flags);
194 if (line->head != line->tail)
195 ret = buffer_data(line, buf, len);
197 n = write_chan(line->chan_out, buf, len,
198 line->driver->write_irq);
207 ret += buffer_data(line, buf + n, len);
210 spin_unlock_irqrestore(&line->lock, flags);
214 void line_set_termios(struct tty_struct *tty, struct ktermios * old)
219 void line_throttle(struct tty_struct *tty)
221 struct line *line = tty->driver_data;
223 deactivate_chan(line->chan_in, line->driver->read_irq);
227 void line_unthrottle(struct tty_struct *tty)
229 struct line *line = tty->driver_data;
232 chan_interrupt(line, line->driver->read_irq);
235 static irqreturn_t line_write_interrupt(int irq, void *data)
237 struct chan *chan = data;
238 struct line *line = chan->line;
242 * Interrupts are disabled here because genirq keep irqs disabled when
243 * calling the action handler.
246 spin_lock(&line->lock);
247 err = flush_buffer(line);
249 spin_unlock(&line->lock);
251 } else if ((err < 0) && (err != -EAGAIN)) {
252 line->head = line->buffer;
253 line->tail = line->buffer;
255 spin_unlock(&line->lock);
257 tty_port_tty_wakeup(&line->port);
262 int line_setup_irq(int fd, int input, int output, struct line *line, void *data)
264 const struct line_driver *driver = line->driver;
268 err = um_request_irq(driver->read_irq, fd, IRQ_READ,
269 line_interrupt, IRQF_SHARED,
270 driver->read_irq_name, data);
276 err = um_request_irq(driver->write_irq, fd, IRQ_WRITE,
277 line_write_interrupt, IRQF_SHARED,
278 driver->write_irq_name, data);
286 static int line_activate(struct tty_port *port, struct tty_struct *tty)
289 struct line *line = tty->driver_data;
291 ret = enable_chan(line);
296 chan_enable_winch(line->chan_out, port);
300 chan_window_size(line, &tty->winsize.ws_row,
301 &tty->winsize.ws_col);
306 static void unregister_winch(struct tty_struct *tty);
308 static void line_destruct(struct tty_port *port)
310 struct tty_struct *tty = tty_port_tty_get(port);
311 struct line *line = tty->driver_data;
314 unregister_winch(tty);
319 static const struct tty_port_operations line_port_ops = {
320 .activate = line_activate,
321 .destruct = line_destruct,
324 int line_open(struct tty_struct *tty, struct file *filp)
326 struct line *line = tty->driver_data;
328 return tty_port_open(&line->port, tty, filp);
331 int line_install(struct tty_driver *driver, struct tty_struct *tty,
336 ret = tty_standard_install(driver, tty);
340 tty->driver_data = line;
345 void line_close(struct tty_struct *tty, struct file * filp)
347 struct line *line = tty->driver_data;
349 tty_port_close(&line->port, tty, filp);
352 void line_hangup(struct tty_struct *tty)
354 struct line *line = tty->driver_data;
356 tty_port_hangup(&line->port);
359 void close_lines(struct line *lines, int nlines)
363 for(i = 0; i < nlines; i++)
364 close_chan(&lines[i]);
367 int setup_one_line(struct line *lines, int n, char *init,
368 const struct chan_opts *opts, char **error_out)
370 struct line *line = &lines[n];
371 struct tty_driver *driver = line->driver->driver;
374 if (line->port.count) {
375 *error_out = "Device is already open";
379 if (!strcmp(init, "none")) {
382 kfree(line->init_str);
383 tty_unregister_device(driver, n);
384 parse_chan_pair(NULL, line, n, opts, error_out);
388 char *new = kstrdup(init, GFP_KERNEL);
390 *error_out = "Failed to allocate memory";
394 tty_unregister_device(driver, n);
395 kfree(line->init_str);
397 line->init_str = new;
399 err = parse_chan_pair(new, line, n, opts, error_out);
401 struct device *d = tty_port_register_device(&line->port,
404 *error_out = "Failed to register device";
406 parse_chan_pair(NULL, line, n, opts, error_out);
410 line->init_str = NULL;
420 * Common setup code for both startup command line and mconsole initialization.
421 * @lines contains the array (of size @num) to modify;
422 * @init is the setup string;
423 * @error_out is an error string in the case of failure;
426 int line_setup(char **conf, unsigned int num, char **def,
427 char *init, char *name)
433 * We said con=/ssl= instead of con#=, so we are configuring all
439 unsigned n = simple_strtoul(init, &end, 0);
442 error = "Couldn't parse device number";
446 error = "Device number out of range";
454 printk(KERN_ERR "Failed to set up %s with "
455 "configuration string \"%s\" : %s\n", name, init, error);
459 int line_config(struct line *lines, unsigned int num, char *str,
460 const struct chan_opts *opts, char **error_out)
466 *error_out = "Can't configure all devices from mconsole";
470 n = simple_strtoul(str, &end, 0);
472 *error_out = "Couldn't parse device number";
476 *error_out = "Device number out of range";
480 return setup_one_line(lines, n, end, opts, error_out);
483 int line_get_config(char *name, struct line *lines, unsigned int num, char *str,
484 int size, char **error_out)
490 dev = simple_strtoul(name, &end, 0);
491 if ((*end != '\0') || (end == name)) {
492 *error_out = "line_get_config failed to parse device number";
496 if ((dev < 0) || (dev >= num)) {
497 *error_out = "device number out of range";
504 CONFIG_CHUNK(str, size, n, "none", 1);
506 struct tty_struct *tty = tty_port_tty_get(&line->port);
508 CONFIG_CHUNK(str, size, n, line->init_str, 1);
510 n = chan_config_string(line, str, size, error_out);
518 int line_id(char **str, int *start_out, int *end_out)
523 n = simple_strtoul(*str, &end, 0);
524 if ((*end != '\0') || (end == *str))
533 int line_remove(struct line *lines, unsigned int num, int n, char **error_out)
536 *error_out = "Device number out of range";
539 return setup_one_line(lines, n, "none", NULL, error_out);
542 int register_lines(struct line_driver *line_driver,
543 const struct tty_operations *ops,
544 struct line *lines, int nlines)
546 struct tty_driver *driver = alloc_tty_driver(nlines);
553 driver->driver_name = line_driver->name;
554 driver->name = line_driver->device_name;
555 driver->major = line_driver->major;
556 driver->minor_start = line_driver->minor_start;
557 driver->type = line_driver->type;
558 driver->subtype = line_driver->subtype;
559 driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
560 driver->init_termios = tty_std_termios;
562 for (i = 0; i < nlines; i++) {
563 tty_port_init(&lines[i].port);
564 lines[i].port.ops = &line_port_ops;
565 spin_lock_init(&lines[i].lock);
566 lines[i].driver = line_driver;
567 INIT_LIST_HEAD(&lines[i].chan_list);
569 tty_set_operations(driver, ops);
571 err = tty_register_driver(driver);
573 printk(KERN_ERR "register_lines : can't register %s driver\n",
575 put_tty_driver(driver);
576 for (i = 0; i < nlines; i++)
577 tty_port_destroy(&lines[i].port);
581 line_driver->driver = driver;
582 mconsole_register_dev(&line_driver->mc);
586 static DEFINE_SPINLOCK(winch_handler_lock);
587 static LIST_HEAD(winch_handlers);
590 struct list_head list;
594 struct tty_port *port;
596 struct work_struct work;
599 static void __free_winch(struct work_struct *work)
601 struct winch *winch = container_of(work, struct winch, work);
602 um_free_irq(WINCH_IRQ, winch);
604 if (winch->pid != -1)
605 os_kill_process(winch->pid, 1);
606 if (winch->stack != 0)
607 free_stack(winch->stack, 0);
611 static void free_winch(struct winch *winch)
617 __free_winch(&winch->work);
620 static irqreturn_t winch_interrupt(int irq, void *data)
622 struct winch *winch = data;
623 struct tty_struct *tty;
631 err = generic_read(fd, &c, NULL);
633 if (err != -EAGAIN) {
635 list_del(&winch->list);
637 printk(KERN_ERR "winch_interrupt : "
638 "read failed, errno = %d\n", -err);
639 printk(KERN_ERR "fd %d is losing SIGWINCH "
640 "support\n", winch->tty_fd);
641 INIT_WORK(&winch->work, __free_winch);
642 schedule_work(&winch->work);
648 tty = tty_port_tty_get(winch->port);
650 line = tty->driver_data;
652 chan_window_size(line, &tty->winsize.ws_row,
653 &tty->winsize.ws_col);
654 pgrp = tty_get_pgrp(tty);
656 kill_pgrp(pgrp, SIGWINCH, 1);
665 void register_winch_irq(int fd, int tty_fd, int pid, struct tty_port *port,
670 winch = kmalloc(sizeof(*winch), GFP_KERNEL);
672 printk(KERN_ERR "register_winch_irq - kmalloc failed\n");
676 *winch = ((struct winch) { .list = LIST_HEAD_INIT(winch->list),
683 if (um_request_irq(WINCH_IRQ, fd, IRQ_READ, winch_interrupt,
684 IRQF_SHARED, "winch", winch) < 0) {
685 printk(KERN_ERR "register_winch_irq - failed to register "
690 spin_lock(&winch_handler_lock);
691 list_add(&winch->list, &winch_handlers);
692 spin_unlock(&winch_handler_lock);
699 os_kill_process(pid, 1);
702 free_stack(stack, 0);
705 static void unregister_winch(struct tty_struct *tty)
707 struct list_head *ele, *next;
709 struct tty_struct *wtty;
711 spin_lock(&winch_handler_lock);
713 list_for_each_safe(ele, next, &winch_handlers) {
714 winch = list_entry(ele, struct winch, list);
715 wtty = tty_port_tty_get(winch->port);
717 list_del(&winch->list);
718 spin_unlock(&winch_handler_lock);
724 spin_unlock(&winch_handler_lock);
727 static void winch_cleanup(void)
731 spin_lock(&winch_handler_lock);
732 while ((winch = list_first_entry_or_null(&winch_handlers,
733 struct winch, list))) {
734 list_del(&winch->list);
735 spin_unlock(&winch_handler_lock);
739 spin_lock(&winch_handler_lock);
742 spin_unlock(&winch_handler_lock);
744 __uml_exitcall(winch_cleanup);
746 char *add_xterm_umid(char *base)
755 len = strlen(base) + strlen(" ()") + strlen(umid) + 1;
756 title = kmalloc(len, GFP_KERNEL);
758 printk(KERN_ERR "Failed to allocate buffer for xterm title\n");
762 snprintf(title, len, "%s (%s)", base, umid);