Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) |
| 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
| 6 | #include <linux/stddef.h> |
| 7 | #include <linux/kernel.h> |
| 8 | #include <linux/list.h> |
| 9 | #include <linux/slab.h> |
| 10 | #include <linux/tty.h> |
| 11 | #include <linux/string.h> |
| 12 | #include <linux/tty_flip.h> |
| 13 | #include <asm/irq.h> |
| 14 | #include "chan_kern.h" |
| 15 | #include "user_util.h" |
| 16 | #include "kern.h" |
| 17 | #include "irq_user.h" |
| 18 | #include "sigio.h" |
| 19 | #include "line.h" |
| 20 | #include "os.h" |
| 21 | |
Paolo 'Blaisorblade' Giarrusso | fac97ae | 2005-09-22 21:44:22 -0700 | [diff] [blame] | 22 | #ifdef CONFIG_NOCONFIG_CHAN |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 23 | static void *not_configged_init(char *str, int device, |
| 24 | const struct chan_opts *opts) |
Paolo 'Blaisorblade' Giarrusso | fac97ae | 2005-09-22 21:44:22 -0700 | [diff] [blame] | 25 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 26 | printk("Using a channel type which is configured out of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | "UML\n"); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 28 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | static int not_configged_open(int input, int output, int primary, void *data, |
| 32 | char **dev_out) |
| 33 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 34 | printk("Using a channel type which is configured out of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | "UML\n"); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 36 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | static void not_configged_close(int fd, void *data) |
| 40 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 41 | printk("Using a channel type which is configured out of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | "UML\n"); |
| 43 | } |
| 44 | |
| 45 | static int not_configged_read(int fd, char *c_out, void *data) |
| 46 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 47 | printk("Using a channel type which is configured out of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | "UML\n"); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 49 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | static int not_configged_write(int fd, const char *buf, int len, void *data) |
| 53 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 54 | printk("Using a channel type which is configured out of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | "UML\n"); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 56 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Paolo 'Blaisorblade' Giarrusso | 55c033c | 2005-11-13 16:07:11 -0800 | [diff] [blame] | 59 | static int not_configged_console_write(int fd, const char *buf, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 61 | printk("Using a channel type which is configured out of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | "UML\n"); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 63 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static int not_configged_window_size(int fd, void *data, unsigned short *rows, |
| 67 | unsigned short *cols) |
| 68 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 69 | printk("Using a channel type which is configured out of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | "UML\n"); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 71 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | static void not_configged_free(void *data) |
| 75 | { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 76 | printk("Using a channel type which is configured out of " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | "UML\n"); |
| 78 | } |
| 79 | |
Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 80 | static const struct chan_ops not_configged_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | .init = not_configged_init, |
| 82 | .open = not_configged_open, |
| 83 | .close = not_configged_close, |
| 84 | .read = not_configged_read, |
| 85 | .write = not_configged_write, |
| 86 | .console_write = not_configged_console_write, |
| 87 | .window_size = not_configged_window_size, |
| 88 | .free = not_configged_free, |
| 89 | .winch = 0, |
| 90 | }; |
| 91 | #endif /* CONFIG_NOCONFIG_CHAN */ |
| 92 | |
| 93 | void generic_close(int fd, void *unused) |
| 94 | { |
| 95 | os_close_file(fd); |
| 96 | } |
| 97 | |
| 98 | int generic_read(int fd, char *c_out, void *unused) |
| 99 | { |
| 100 | int n; |
| 101 | |
| 102 | n = os_read_file(fd, c_out, sizeof(*c_out)); |
| 103 | |
| 104 | if(n == -EAGAIN) |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 105 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | else if(n == 0) |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 107 | return -EIO; |
| 108 | return n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | /* XXX Trivial wrapper around os_write_file */ |
| 112 | |
| 113 | int generic_write(int fd, const char *buf, int n, void *unused) |
| 114 | { |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 115 | return os_write_file(fd, buf, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | int generic_window_size(int fd, void *unused, unsigned short *rows_out, |
| 119 | unsigned short *cols_out) |
| 120 | { |
| 121 | int rows, cols; |
| 122 | int ret; |
| 123 | |
| 124 | ret = os_window_size(fd, &rows, &cols); |
| 125 | if(ret < 0) |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 126 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | ret = ((*rows_out != rows) || (*cols_out != cols)); |
| 129 | |
| 130 | *rows_out = rows; |
| 131 | *cols_out = cols; |
| 132 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 133 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | void generic_free(void *data) |
| 137 | { |
| 138 | kfree(data); |
| 139 | } |
| 140 | |
| 141 | static void tty_receive_char(struct tty_struct *tty, char ch) |
| 142 | { |
| 143 | if(tty == NULL) return; |
| 144 | |
| 145 | if(I_IXON(tty) && !I_IXOFF(tty) && !tty->raw) { |
| 146 | if(ch == STOP_CHAR(tty)){ |
| 147 | stop_tty(tty); |
| 148 | return; |
| 149 | } |
| 150 | else if(ch == START_CHAR(tty)){ |
| 151 | start_tty(tty); |
| 152 | return; |
| 153 | } |
| 154 | } |
| 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | tty_insert_flip_char(tty, ch, TTY_NORMAL); |
| 157 | } |
| 158 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 159 | static int open_one_chan(struct chan *chan) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
| 161 | int fd; |
| 162 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 163 | if(chan->opened) |
| 164 | return 0; |
| 165 | |
| 166 | if(chan->ops->open == NULL) |
| 167 | fd = 0; |
| 168 | else fd = (*chan->ops->open)(chan->input, chan->output, chan->primary, |
| 169 | chan->data, &chan->dev); |
| 170 | if(fd < 0) |
| 171 | return fd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | chan->fd = fd; |
| 173 | |
| 174 | chan->opened = 1; |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 175 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | int open_chan(struct list_head *chans) |
| 179 | { |
| 180 | struct list_head *ele; |
| 181 | struct chan *chan; |
| 182 | int ret, err = 0; |
| 183 | |
| 184 | list_for_each(ele, chans){ |
| 185 | chan = list_entry(ele, struct chan, list); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 186 | ret = open_one_chan(chan); |
| 187 | if(chan->primary) |
| 188 | err = ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | } |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 190 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | void chan_enable_winch(struct list_head *chans, struct tty_struct *tty) |
| 194 | { |
| 195 | struct list_head *ele; |
| 196 | struct chan *chan; |
| 197 | |
| 198 | list_for_each(ele, chans){ |
| 199 | chan = list_entry(ele, struct chan, list); |
| 200 | if(chan->primary && chan->output && chan->ops->winch){ |
| 201 | register_winch(chan->fd, tty); |
| 202 | return; |
| 203 | } |
| 204 | } |
| 205 | } |
| 206 | |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 207 | void enable_chan(struct line *line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | { |
| 209 | struct list_head *ele; |
| 210 | struct chan *chan; |
| 211 | |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 212 | list_for_each(ele, &line->chan_list){ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | chan = list_entry(ele, struct chan, list); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 214 | if(open_one_chan(chan)) |
| 215 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 217 | if(chan->enabled) |
| 218 | continue; |
| 219 | line_setup_irq(chan->fd, chan->input, chan->output, line, |
| 220 | chan); |
| 221 | chan->enabled = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
| 223 | } |
| 224 | |
Jeff Dike | 190c3e4 | 2007-02-10 01:43:55 -0800 | [diff] [blame] | 225 | /* Items are added in IRQ context, when free_irq can't be called, and |
| 226 | * removed in process context, when it can. |
| 227 | * This handles interrupt sources which disappear, and which need to |
| 228 | * be permanently disabled. This is discovered in IRQ context, but |
| 229 | * the freeing of the IRQ must be done later. |
| 230 | */ |
| 231 | static DEFINE_SPINLOCK(irqs_to_free_lock); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 232 | static LIST_HEAD(irqs_to_free); |
| 233 | |
| 234 | void free_irqs(void) |
| 235 | { |
| 236 | struct chan *chan; |
Jeff Dike | 190c3e4 | 2007-02-10 01:43:55 -0800 | [diff] [blame] | 237 | LIST_HEAD(list); |
| 238 | struct list_head *ele; |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 239 | |
Jeff Dike | 190c3e4 | 2007-02-10 01:43:55 -0800 | [diff] [blame] | 240 | spin_lock_irq(&irqs_to_free_lock); |
| 241 | list_splice_init(&irqs_to_free, &list); |
| 242 | INIT_LIST_HEAD(&irqs_to_free); |
| 243 | spin_unlock_irq(&irqs_to_free_lock); |
| 244 | |
| 245 | list_for_each(ele, &list){ |
| 246 | chan = list_entry(ele, struct chan, free_list); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 247 | |
| 248 | if(chan->input) |
| 249 | free_irq(chan->line->driver->read_irq, chan); |
| 250 | if(chan->output) |
| 251 | free_irq(chan->line->driver->write_irq, chan); |
| 252 | chan->enabled = 0; |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | static void close_one_chan(struct chan *chan, int delay_free_irq) |
| 257 | { |
| 258 | if(!chan->opened) |
| 259 | return; |
| 260 | |
| 261 | if(delay_free_irq){ |
Jeff Dike | 190c3e4 | 2007-02-10 01:43:55 -0800 | [diff] [blame] | 262 | spin_lock_irq(&irqs_to_free_lock); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 263 | list_add(&chan->free_list, &irqs_to_free); |
Jeff Dike | 190c3e4 | 2007-02-10 01:43:55 -0800 | [diff] [blame] | 264 | spin_unlock_irq(&irqs_to_free_lock); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 265 | } |
| 266 | else { |
| 267 | if(chan->input) |
| 268 | free_irq(chan->line->driver->read_irq, chan); |
| 269 | if(chan->output) |
| 270 | free_irq(chan->line->driver->write_irq, chan); |
| 271 | chan->enabled = 0; |
| 272 | } |
| 273 | if(chan->ops->close != NULL) |
| 274 | (*chan->ops->close)(chan->fd, chan->data); |
| 275 | |
| 276 | chan->opened = 0; |
| 277 | chan->fd = -1; |
| 278 | } |
| 279 | |
| 280 | void close_chan(struct list_head *chans, int delay_free_irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | { |
| 282 | struct chan *chan; |
| 283 | |
| 284 | /* Close in reverse order as open in case more than one of them |
| 285 | * refers to the same device and they save and restore that device's |
| 286 | * state. Then, the first one opened will have the original state, |
| 287 | * so it must be the last closed. |
| 288 | */ |
| 289 | list_for_each_entry_reverse(chan, chans, list) { |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 290 | close_one_chan(chan, delay_free_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
| 292 | } |
| 293 | |
Jeff Dike | e4dcee8 | 2006-01-06 00:18:58 -0800 | [diff] [blame] | 294 | void deactivate_chan(struct list_head *chans, int irq) |
| 295 | { |
| 296 | struct list_head *ele; |
| 297 | |
| 298 | struct chan *chan; |
| 299 | list_for_each(ele, chans) { |
| 300 | chan = list_entry(ele, struct chan, list); |
| 301 | |
| 302 | if(chan->enabled && chan->input) |
| 303 | deactivate_fd(chan->fd, irq); |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | void reactivate_chan(struct list_head *chans, int irq) |
| 308 | { |
| 309 | struct list_head *ele; |
| 310 | struct chan *chan; |
| 311 | |
| 312 | list_for_each(ele, chans) { |
| 313 | chan = list_entry(ele, struct chan, list); |
| 314 | |
| 315 | if(chan->enabled && chan->input) |
| 316 | reactivate_fd(chan->fd, irq); |
| 317 | } |
| 318 | } |
| 319 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 320 | int write_chan(struct list_head *chans, const char *buf, int len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | int write_irq) |
| 322 | { |
| 323 | struct list_head *ele; |
| 324 | struct chan *chan = NULL; |
| 325 | int n, ret = 0; |
| 326 | |
| 327 | list_for_each(ele, chans) { |
| 328 | chan = list_entry(ele, struct chan, list); |
| 329 | if (!chan->output || (chan->ops->write == NULL)) |
| 330 | continue; |
| 331 | n = chan->ops->write(chan->fd, buf, len, chan->data); |
| 332 | if (chan->primary) { |
| 333 | ret = n; |
| 334 | if ((ret == -EAGAIN) || ((ret >= 0) && (ret < len))) |
| 335 | reactivate_fd(chan->fd, write_irq); |
| 336 | } |
| 337 | } |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 338 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | int console_write_chan(struct list_head *chans, const char *buf, int len) |
| 342 | { |
| 343 | struct list_head *ele; |
| 344 | struct chan *chan; |
| 345 | int n, ret = 0; |
| 346 | |
| 347 | list_for_each(ele, chans){ |
| 348 | chan = list_entry(ele, struct chan, list); |
| 349 | if(!chan->output || (chan->ops->console_write == NULL)) |
| 350 | continue; |
Paolo 'Blaisorblade' Giarrusso | 55c033c | 2005-11-13 16:07:11 -0800 | [diff] [blame] | 351 | n = chan->ops->console_write(chan->fd, buf, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | if(chan->primary) ret = n; |
| 353 | } |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 354 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Jeff Dike | a52f362 | 2007-02-10 01:44:06 -0800 | [diff] [blame^] | 357 | int console_open_chan(struct line *line, struct console *co) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | { |
Jeff Dike | 1f80171 | 2006-01-06 00:18:55 -0800 | [diff] [blame] | 359 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
Jeff Dike | 1f80171 | 2006-01-06 00:18:55 -0800 | [diff] [blame] | 361 | err = open_chan(&line->chan_list); |
| 362 | if(err) |
| 363 | return err; |
| 364 | |
Jeff Dike | a52f362 | 2007-02-10 01:44:06 -0800 | [diff] [blame^] | 365 | printk("Console initialized on /dev/%s%d\n", co->name, co->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | return 0; |
| 367 | } |
| 368 | |
| 369 | int chan_window_size(struct list_head *chans, unsigned short *rows_out, |
| 370 | unsigned short *cols_out) |
| 371 | { |
| 372 | struct list_head *ele; |
| 373 | struct chan *chan; |
| 374 | |
| 375 | list_for_each(ele, chans){ |
| 376 | chan = list_entry(ele, struct chan, list); |
| 377 | if(chan->primary){ |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 378 | if(chan->ops->window_size == NULL) |
| 379 | return 0; |
| 380 | return chan->ops->window_size(chan->fd, chan->data, |
| 381 | rows_out, cols_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | } |
| 383 | } |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 384 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | |
Paolo 'Blaisorblade' Giarrusso | 42947cb | 2006-02-01 03:06:29 -0800 | [diff] [blame] | 387 | static void free_one_chan(struct chan *chan, int delay_free_irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { |
| 389 | list_del(&chan->list); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 390 | |
| 391 | close_one_chan(chan, delay_free_irq); |
| 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | if(chan->ops->free != NULL) |
| 394 | (*chan->ops->free)(chan->data); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | if(chan->primary && chan->output) ignore_sigio_fd(chan->fd); |
| 397 | kfree(chan); |
| 398 | } |
| 399 | |
Paolo 'Blaisorblade' Giarrusso | 42947cb | 2006-02-01 03:06:29 -0800 | [diff] [blame] | 400 | static void free_chan(struct list_head *chans, int delay_free_irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | { |
| 402 | struct list_head *ele, *next; |
| 403 | struct chan *chan; |
| 404 | |
| 405 | list_for_each_safe(ele, next, chans){ |
| 406 | chan = list_entry(ele, struct chan, list); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 407 | free_one_chan(chan, delay_free_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
| 409 | } |
| 410 | |
| 411 | static int one_chan_config_string(struct chan *chan, char *str, int size, |
| 412 | char **error_out) |
| 413 | { |
| 414 | int n = 0; |
| 415 | |
| 416 | if(chan == NULL){ |
| 417 | CONFIG_CHUNK(str, size, n, "none", 1); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 418 | return n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | CONFIG_CHUNK(str, size, n, chan->ops->type, 0); |
| 422 | |
| 423 | if(chan->dev == NULL){ |
| 424 | CONFIG_CHUNK(str, size, n, "", 1); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 425 | return n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | CONFIG_CHUNK(str, size, n, ":", 0); |
| 429 | CONFIG_CHUNK(str, size, n, chan->dev, 0); |
| 430 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 431 | return n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
| 433 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 434 | static int chan_pair_config_string(struct chan *in, struct chan *out, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | char *str, int size, char **error_out) |
| 436 | { |
| 437 | int n; |
| 438 | |
| 439 | n = one_chan_config_string(in, str, size, error_out); |
| 440 | str += n; |
| 441 | size -= n; |
| 442 | |
| 443 | if(in == out){ |
| 444 | CONFIG_CHUNK(str, size, n, "", 1); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 445 | return n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | CONFIG_CHUNK(str, size, n, ",", 1); |
| 449 | n = one_chan_config_string(out, str, size, error_out); |
| 450 | str += n; |
| 451 | size -= n; |
| 452 | CONFIG_CHUNK(str, size, n, "", 1); |
| 453 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 454 | return n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | } |
| 456 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 457 | int chan_config_string(struct list_head *chans, char *str, int size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | char **error_out) |
| 459 | { |
| 460 | struct list_head *ele; |
| 461 | struct chan *chan, *in = NULL, *out = NULL; |
| 462 | |
| 463 | list_for_each(ele, chans){ |
| 464 | chan = list_entry(ele, struct chan, list); |
| 465 | if(!chan->primary) |
| 466 | continue; |
| 467 | if(chan->input) |
| 468 | in = chan; |
| 469 | if(chan->output) |
| 470 | out = chan; |
| 471 | } |
| 472 | |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 473 | return chan_pair_config_string(in, out, str, size, error_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | struct chan_type { |
| 477 | char *key; |
Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 478 | const struct chan_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | }; |
| 480 | |
Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 481 | static const struct chan_type chan_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | { "fd", &fd_ops }, |
| 483 | |
| 484 | #ifdef CONFIG_NULL_CHAN |
| 485 | { "null", &null_ops }, |
| 486 | #else |
| 487 | { "null", ¬_configged_ops }, |
| 488 | #endif |
| 489 | |
| 490 | #ifdef CONFIG_PORT_CHAN |
| 491 | { "port", &port_ops }, |
| 492 | #else |
| 493 | { "port", ¬_configged_ops }, |
| 494 | #endif |
| 495 | |
| 496 | #ifdef CONFIG_PTY_CHAN |
| 497 | { "pty", &pty_ops }, |
| 498 | { "pts", &pts_ops }, |
| 499 | #else |
| 500 | { "pty", ¬_configged_ops }, |
| 501 | { "pts", ¬_configged_ops }, |
| 502 | #endif |
| 503 | |
| 504 | #ifdef CONFIG_TTY_CHAN |
| 505 | { "tty", &tty_ops }, |
| 506 | #else |
| 507 | { "tty", ¬_configged_ops }, |
| 508 | #endif |
| 509 | |
| 510 | #ifdef CONFIG_XTERM_CHAN |
| 511 | { "xterm", &xterm_ops }, |
| 512 | #else |
| 513 | { "xterm", ¬_configged_ops }, |
| 514 | #endif |
| 515 | }; |
| 516 | |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 517 | static struct chan *parse_chan(struct line *line, char *str, int device, |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 518 | const struct chan_opts *opts, char **error_out) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | { |
Jeff Dike | 5e7672e | 2006-09-27 01:50:33 -0700 | [diff] [blame] | 520 | const struct chan_type *entry; |
| 521 | const struct chan_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | struct chan *chan; |
| 523 | void *data; |
| 524 | int i; |
| 525 | |
| 526 | ops = NULL; |
| 527 | data = NULL; |
Jeff Dike | 91b165c | 2006-09-25 23:33:00 -0700 | [diff] [blame] | 528 | for(i = 0; i < ARRAY_SIZE(chan_table); i++){ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | entry = &chan_table[i]; |
| 530 | if(!strncmp(str, entry->key, strlen(entry->key))){ |
| 531 | ops = entry->ops; |
| 532 | str += strlen(entry->key); |
| 533 | break; |
| 534 | } |
| 535 | } |
| 536 | if(ops == NULL){ |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 537 | *error_out = "No match for configured backends"; |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 538 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | data = (*ops->init)(str, device, opts); |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 542 | if(data == NULL){ |
| 543 | *error_out = "Configuration failed"; |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 544 | return NULL; |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 545 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
Paolo 'Blaisorblade' Giarrusso | 79ae2cb | 2005-09-22 21:44:21 -0700 | [diff] [blame] | 547 | chan = kmalloc(sizeof(*chan), GFP_ATOMIC); |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 548 | if(chan == NULL){ |
| 549 | *error_out = "Memory allocation failed"; |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 550 | return NULL; |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 551 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | *chan = ((struct chan) { .list = LIST_HEAD_INIT(chan->list), |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 553 | .free_list = |
| 554 | LIST_HEAD_INIT(chan->free_list), |
| 555 | .line = line, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | .primary = 1, |
| 557 | .input = 0, |
| 558 | .output = 0, |
| 559 | .opened = 0, |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 560 | .enabled = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | .fd = -1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | .ops = ops, |
| 563 | .data = data }); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 564 | return chan; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
| 566 | |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 567 | int parse_chan_pair(char *str, struct line *line, int device, |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 568 | const struct chan_opts *opts, char **error_out) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | { |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 570 | struct list_head *chans = &line->chan_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | struct chan *new, *chan; |
| 572 | char *in, *out; |
| 573 | |
| 574 | if(!list_empty(chans)){ |
| 575 | chan = list_entry(chans->next, struct chan, list); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 576 | free_chan(chans, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | INIT_LIST_HEAD(chans); |
| 578 | } |
| 579 | |
| 580 | out = strchr(str, ','); |
| 581 | if(out != NULL){ |
| 582 | in = str; |
| 583 | *out = '\0'; |
| 584 | out++; |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 585 | new = parse_chan(line, in, device, opts, error_out); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 586 | if(new == NULL) |
| 587 | return -1; |
| 588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | new->input = 1; |
| 590 | list_add(&new->list, chans); |
| 591 | |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 592 | new = parse_chan(line, out, device, opts, error_out); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 593 | if(new == NULL) |
| 594 | return -1; |
| 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | list_add(&new->list, chans); |
| 597 | new->output = 1; |
| 598 | } |
| 599 | else { |
Jeff Dike | f28169d | 2007-02-10 01:43:53 -0800 | [diff] [blame] | 600 | new = parse_chan(line, str, device, opts, error_out); |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 601 | if(new == NULL) |
| 602 | return -1; |
| 603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | list_add(&new->list, chans); |
| 605 | new->input = 1; |
| 606 | new->output = 1; |
| 607 | } |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 608 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | int chan_out_fd(struct list_head *chans) |
| 612 | { |
| 613 | struct list_head *ele; |
| 614 | struct chan *chan; |
| 615 | |
| 616 | list_for_each(ele, chans){ |
| 617 | chan = list_entry(ele, struct chan, list); |
| 618 | if(chan->primary && chan->output) |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 619 | return chan->fd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | } |
Jeff Dike | d50084a | 2006-01-06 00:18:50 -0800 | [diff] [blame] | 621 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | } |
| 623 | |
David Howells | 6d5aefb | 2006-12-05 19:36:26 +0000 | [diff] [blame] | 624 | void chan_interrupt(struct list_head *chans, struct delayed_work *task, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | struct tty_struct *tty, int irq) |
| 626 | { |
| 627 | struct list_head *ele, *next; |
| 628 | struct chan *chan; |
| 629 | int err; |
| 630 | char c; |
| 631 | |
| 632 | list_for_each_safe(ele, next, chans){ |
| 633 | chan = list_entry(ele, struct chan, list); |
| 634 | if(!chan->input || (chan->ops->read == NULL)) continue; |
| 635 | do { |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 636 | if (tty && !tty_buffer_request_room(tty, 1)) { |
Jeff Dike | 9159c9d | 2006-01-06 00:18:58 -0800 | [diff] [blame] | 637 | schedule_delayed_work(task, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | goto out; |
| 639 | } |
| 640 | err = chan->ops->read(chan->fd, &c, chan->data); |
| 641 | if(err > 0) |
| 642 | tty_receive_char(tty, c); |
| 643 | } while(err > 0); |
| 644 | |
| 645 | if(err == 0) reactivate_fd(chan->fd, irq); |
| 646 | if(err == -EIO){ |
| 647 | if(chan->primary){ |
| 648 | if(tty != NULL) |
| 649 | tty_hangup(tty); |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 650 | close_chan(chans, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | return; |
| 652 | } |
Jeff Dike | 165dc59 | 2006-01-06 00:18:57 -0800 | [diff] [blame] | 653 | else close_one_chan(chan, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | } |
| 655 | } |
| 656 | out: |
| 657 | if(tty) tty_flip_buffer_push(tty); |
| 658 | } |