blob: 36df55ad64c2e1e2fbcbbf5e7a9b5803f9b98478 [file] [log] [blame]
Jeff Dike165dc592006-01-06 00:18:57 -08001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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' Giarrussofac97ae2005-09-22 21:44:22 -070022/* XXX: could well be moved to somewhere else, if needed. */
23static int my_printf(const char * fmt, ...)
24 __attribute__ ((format (printf, 1, 2)));
Jeff Dike84ddaa82005-05-20 13:59:12 -070025
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -070026static int my_printf(const char * fmt, ...)
27{
28 /* Yes, can be called on atomic context.*/
29 char *buf = kmalloc(4096, GFP_ATOMIC);
30 va_list args;
31 int r;
32
33 if (!buf) {
34 /* We print directly fmt.
35 * Yes, yes, yes, feel free to complain. */
36 r = strlen(fmt);
37 } else {
38 va_start(args, fmt);
39 r = vsprintf(buf, fmt, args);
40 va_end(args);
41 fmt = buf;
42 }
43
44 if (r)
45 r = os_write_file(1, fmt, r);
46 return r;
47
48}
49
50#ifdef CONFIG_NOCONFIG_CHAN
51/* Despite its name, there's no added trailing newline. */
52static int my_puts(const char * buf)
53{
54 return os_write_file(1, buf, strlen(buf));
55}
Jeff Dike84ddaa82005-05-20 13:59:12 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static void *not_configged_init(char *str, int device, struct chan_opts *opts)
58{
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -070059 my_puts("Using a channel type which is configured out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 "UML\n");
Jeff Diked50084a2006-01-06 00:18:50 -080061 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
64static int not_configged_open(int input, int output, int primary, void *data,
65 char **dev_out)
66{
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -070067 my_puts("Using a channel type which is configured out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 "UML\n");
Jeff Diked50084a2006-01-06 00:18:50 -080069 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
72static void not_configged_close(int fd, void *data)
73{
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -070074 my_puts("Using a channel type which is configured out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 "UML\n");
76}
77
78static int not_configged_read(int fd, char *c_out, void *data)
79{
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -070080 my_puts("Using a channel type which is configured out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 "UML\n");
Jeff Diked50084a2006-01-06 00:18:50 -080082 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
85static int not_configged_write(int fd, const char *buf, int len, void *data)
86{
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -070087 my_puts("Using a channel type which is configured out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 "UML\n");
Jeff Diked50084a2006-01-06 00:18:50 -080089 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Paolo 'Blaisorblade' Giarrusso55c033c2005-11-13 16:07:11 -080092static int not_configged_console_write(int fd, const char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -070094 my_puts("Using a channel type which is configured out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 "UML\n");
Jeff Diked50084a2006-01-06 00:18:50 -080096 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99static int not_configged_window_size(int fd, void *data, unsigned short *rows,
100 unsigned short *cols)
101{
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -0700102 my_puts("Using a channel type which is configured out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 "UML\n");
Jeff Diked50084a2006-01-06 00:18:50 -0800104 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static void not_configged_free(void *data)
108{
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -0700109 my_puts("Using a channel type which is configured out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 "UML\n");
111}
112
113static struct chan_ops not_configged_ops = {
114 .init = not_configged_init,
115 .open = not_configged_open,
116 .close = not_configged_close,
117 .read = not_configged_read,
118 .write = not_configged_write,
119 .console_write = not_configged_console_write,
120 .window_size = not_configged_window_size,
121 .free = not_configged_free,
122 .winch = 0,
123};
124#endif /* CONFIG_NOCONFIG_CHAN */
125
126void generic_close(int fd, void *unused)
127{
128 os_close_file(fd);
129}
130
131int generic_read(int fd, char *c_out, void *unused)
132{
133 int n;
134
135 n = os_read_file(fd, c_out, sizeof(*c_out));
136
137 if(n == -EAGAIN)
Jeff Diked50084a2006-01-06 00:18:50 -0800138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 else if(n == 0)
Jeff Diked50084a2006-01-06 00:18:50 -0800140 return -EIO;
141 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144/* XXX Trivial wrapper around os_write_file */
145
146int generic_write(int fd, const char *buf, int n, void *unused)
147{
Jeff Diked50084a2006-01-06 00:18:50 -0800148 return os_write_file(fd, buf, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151int generic_window_size(int fd, void *unused, unsigned short *rows_out,
152 unsigned short *cols_out)
153{
154 int rows, cols;
155 int ret;
156
157 ret = os_window_size(fd, &rows, &cols);
158 if(ret < 0)
Jeff Diked50084a2006-01-06 00:18:50 -0800159 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 ret = ((*rows_out != rows) || (*cols_out != cols));
162
163 *rows_out = rows;
164 *cols_out = cols;
165
Jeff Diked50084a2006-01-06 00:18:50 -0800166 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169void generic_free(void *data)
170{
171 kfree(data);
172}
173
174static void tty_receive_char(struct tty_struct *tty, char ch)
175{
176 if(tty == NULL) return;
177
178 if(I_IXON(tty) && !I_IXOFF(tty) && !tty->raw) {
179 if(ch == STOP_CHAR(tty)){
180 stop_tty(tty);
181 return;
182 }
183 else if(ch == START_CHAR(tty)){
184 start_tty(tty);
185 return;
186 }
187 }
188
Jeff Diked50084a2006-01-06 00:18:50 -0800189 if((tty->flip.flag_buf_ptr == NULL) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 (tty->flip.char_buf_ptr == NULL))
191 return;
192 tty_insert_flip_char(tty, ch, TTY_NORMAL);
193}
194
Jeff Diked50084a2006-01-06 00:18:50 -0800195static int open_one_chan(struct chan *chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 int fd;
198
Jeff Diked50084a2006-01-06 00:18:50 -0800199 if(chan->opened)
200 return 0;
201
202 if(chan->ops->open == NULL)
203 fd = 0;
204 else fd = (*chan->ops->open)(chan->input, chan->output, chan->primary,
205 chan->data, &chan->dev);
206 if(fd < 0)
207 return fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 chan->fd = fd;
209
210 chan->opened = 1;
Jeff Diked50084a2006-01-06 00:18:50 -0800211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214int open_chan(struct list_head *chans)
215{
216 struct list_head *ele;
217 struct chan *chan;
218 int ret, err = 0;
219
220 list_for_each(ele, chans){
221 chan = list_entry(ele, struct chan, list);
Jeff Diked50084a2006-01-06 00:18:50 -0800222 ret = open_one_chan(chan);
223 if(chan->primary)
224 err = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
Jeff Diked50084a2006-01-06 00:18:50 -0800226 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229void chan_enable_winch(struct list_head *chans, struct tty_struct *tty)
230{
231 struct list_head *ele;
232 struct chan *chan;
233
234 list_for_each(ele, chans){
235 chan = list_entry(ele, struct chan, list);
236 if(chan->primary && chan->output && chan->ops->winch){
237 register_winch(chan->fd, tty);
238 return;
239 }
240 }
241}
242
Jeff Dike165dc592006-01-06 00:18:57 -0800243void enable_chan(struct line *line)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct list_head *ele;
246 struct chan *chan;
247
Jeff Dike165dc592006-01-06 00:18:57 -0800248 list_for_each(ele, &line->chan_list){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 chan = list_entry(ele, struct chan, list);
Jeff Dike165dc592006-01-06 00:18:57 -0800250 if(open_one_chan(chan))
251 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Jeff Dike165dc592006-01-06 00:18:57 -0800253 if(chan->enabled)
254 continue;
255 line_setup_irq(chan->fd, chan->input, chan->output, line,
256 chan);
257 chan->enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259}
260
Jeff Dike165dc592006-01-06 00:18:57 -0800261static LIST_HEAD(irqs_to_free);
262
263void free_irqs(void)
264{
265 struct chan *chan;
266
267 while(!list_empty(&irqs_to_free)){
268 chan = list_entry(irqs_to_free.next, struct chan, free_list);
269 list_del(&chan->free_list);
270
271 if(chan->input)
272 free_irq(chan->line->driver->read_irq, chan);
273 if(chan->output)
274 free_irq(chan->line->driver->write_irq, chan);
275 chan->enabled = 0;
276 }
277}
278
279static void close_one_chan(struct chan *chan, int delay_free_irq)
280{
281 if(!chan->opened)
282 return;
283
284 if(delay_free_irq){
285 list_add(&chan->free_list, &irqs_to_free);
286 }
287 else {
288 if(chan->input)
289 free_irq(chan->line->driver->read_irq, chan);
290 if(chan->output)
291 free_irq(chan->line->driver->write_irq, chan);
292 chan->enabled = 0;
293 }
294 if(chan->ops->close != NULL)
295 (*chan->ops->close)(chan->fd, chan->data);
296
297 chan->opened = 0;
298 chan->fd = -1;
299}
300
301void close_chan(struct list_head *chans, int delay_free_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 struct chan *chan;
304
305 /* Close in reverse order as open in case more than one of them
306 * refers to the same device and they save and restore that device's
307 * state. Then, the first one opened will have the original state,
308 * so it must be the last closed.
309 */
310 list_for_each_entry_reverse(chan, chans, list) {
Jeff Dike165dc592006-01-06 00:18:57 -0800311 close_one_chan(chan, delay_free_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313}
314
Jeff Diked50084a2006-01-06 00:18:50 -0800315int write_chan(struct list_head *chans, const char *buf, int len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 int write_irq)
317{
318 struct list_head *ele;
319 struct chan *chan = NULL;
320 int n, ret = 0;
321
322 list_for_each(ele, chans) {
323 chan = list_entry(ele, struct chan, list);
324 if (!chan->output || (chan->ops->write == NULL))
325 continue;
326 n = chan->ops->write(chan->fd, buf, len, chan->data);
327 if (chan->primary) {
328 ret = n;
329 if ((ret == -EAGAIN) || ((ret >= 0) && (ret < len)))
330 reactivate_fd(chan->fd, write_irq);
331 }
332 }
Jeff Diked50084a2006-01-06 00:18:50 -0800333 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336int console_write_chan(struct list_head *chans, const char *buf, int len)
337{
338 struct list_head *ele;
339 struct chan *chan;
340 int n, ret = 0;
341
342 list_for_each(ele, chans){
343 chan = list_entry(ele, struct chan, list);
344 if(!chan->output || (chan->ops->console_write == NULL))
345 continue;
Paolo 'Blaisorblade' Giarrusso55c033c2005-11-13 16:07:11 -0800346 n = chan->ops->console_write(chan->fd, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if(chan->primary) ret = n;
348 }
Jeff Diked50084a2006-01-06 00:18:50 -0800349 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Jeff Diked50084a2006-01-06 00:18:50 -0800352int console_open_chan(struct line *line, struct console *co,
353 struct chan_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Jeff Dike1f801712006-01-06 00:18:55 -0800355 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Jeff Dike1f801712006-01-06 00:18:55 -0800357 err = open_chan(&line->chan_list);
358 if(err)
359 return err;
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 printk("Console initialized on /dev/%s%d\n",co->name,co->index);
362 return 0;
363}
364
365int chan_window_size(struct list_head *chans, unsigned short *rows_out,
366 unsigned short *cols_out)
367{
368 struct list_head *ele;
369 struct chan *chan;
370
371 list_for_each(ele, chans){
372 chan = list_entry(ele, struct chan, list);
373 if(chan->primary){
Jeff Diked50084a2006-01-06 00:18:50 -0800374 if(chan->ops->window_size == NULL)
375 return 0;
376 return chan->ops->window_size(chan->fd, chan->data,
377 rows_out, cols_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379 }
Jeff Diked50084a2006-01-06 00:18:50 -0800380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Jeff Dike165dc592006-01-06 00:18:57 -0800383void free_one_chan(struct chan *chan, int delay_free_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 list_del(&chan->list);
Jeff Dike165dc592006-01-06 00:18:57 -0800386
387 close_one_chan(chan, delay_free_irq);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if(chan->ops->free != NULL)
390 (*chan->ops->free)(chan->data);
Jeff Dike165dc592006-01-06 00:18:57 -0800391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if(chan->primary && chan->output) ignore_sigio_fd(chan->fd);
393 kfree(chan);
394}
395
Jeff Dike165dc592006-01-06 00:18:57 -0800396void free_chan(struct list_head *chans, int delay_free_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 struct list_head *ele, *next;
399 struct chan *chan;
400
401 list_for_each_safe(ele, next, chans){
402 chan = list_entry(ele, struct chan, list);
Jeff Dike165dc592006-01-06 00:18:57 -0800403 free_one_chan(chan, delay_free_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405}
406
407static int one_chan_config_string(struct chan *chan, char *str, int size,
408 char **error_out)
409{
410 int n = 0;
411
412 if(chan == NULL){
413 CONFIG_CHUNK(str, size, n, "none", 1);
Jeff Diked50084a2006-01-06 00:18:50 -0800414 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
417 CONFIG_CHUNK(str, size, n, chan->ops->type, 0);
418
419 if(chan->dev == NULL){
420 CONFIG_CHUNK(str, size, n, "", 1);
Jeff Diked50084a2006-01-06 00:18:50 -0800421 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
424 CONFIG_CHUNK(str, size, n, ":", 0);
425 CONFIG_CHUNK(str, size, n, chan->dev, 0);
426
Jeff Diked50084a2006-01-06 00:18:50 -0800427 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Jeff Diked50084a2006-01-06 00:18:50 -0800430static int chan_pair_config_string(struct chan *in, struct chan *out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 char *str, int size, char **error_out)
432{
433 int n;
434
435 n = one_chan_config_string(in, str, size, error_out);
436 str += n;
437 size -= n;
438
439 if(in == out){
440 CONFIG_CHUNK(str, size, n, "", 1);
Jeff Diked50084a2006-01-06 00:18:50 -0800441 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
444 CONFIG_CHUNK(str, size, n, ",", 1);
445 n = one_chan_config_string(out, str, size, error_out);
446 str += n;
447 size -= n;
448 CONFIG_CHUNK(str, size, n, "", 1);
449
Jeff Diked50084a2006-01-06 00:18:50 -0800450 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Jeff Diked50084a2006-01-06 00:18:50 -0800453int chan_config_string(struct list_head *chans, char *str, int size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 char **error_out)
455{
456 struct list_head *ele;
457 struct chan *chan, *in = NULL, *out = NULL;
458
459 list_for_each(ele, chans){
460 chan = list_entry(ele, struct chan, list);
461 if(!chan->primary)
462 continue;
463 if(chan->input)
464 in = chan;
465 if(chan->output)
466 out = chan;
467 }
468
Jeff Diked50084a2006-01-06 00:18:50 -0800469 return chan_pair_config_string(in, out, str, size, error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472struct chan_type {
473 char *key;
474 struct chan_ops *ops;
475};
476
477struct chan_type chan_table[] = {
478 { "fd", &fd_ops },
479
480#ifdef CONFIG_NULL_CHAN
481 { "null", &null_ops },
482#else
483 { "null", &not_configged_ops },
484#endif
485
486#ifdef CONFIG_PORT_CHAN
487 { "port", &port_ops },
488#else
489 { "port", &not_configged_ops },
490#endif
491
492#ifdef CONFIG_PTY_CHAN
493 { "pty", &pty_ops },
494 { "pts", &pts_ops },
495#else
496 { "pty", &not_configged_ops },
497 { "pts", &not_configged_ops },
498#endif
499
500#ifdef CONFIG_TTY_CHAN
501 { "tty", &tty_ops },
502#else
503 { "tty", &not_configged_ops },
504#endif
505
506#ifdef CONFIG_XTERM_CHAN
507 { "xterm", &xterm_ops },
508#else
509 { "xterm", &not_configged_ops },
510#endif
511};
512
Jeff Dike165dc592006-01-06 00:18:57 -0800513static struct chan *parse_chan(struct line *line, char *str, int device,
514 struct chan_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 struct chan_type *entry;
517 struct chan_ops *ops;
518 struct chan *chan;
519 void *data;
520 int i;
521
522 ops = NULL;
523 data = NULL;
524 for(i = 0; i < sizeof(chan_table)/sizeof(chan_table[0]); i++){
525 entry = &chan_table[i];
526 if(!strncmp(str, entry->key, strlen(entry->key))){
527 ops = entry->ops;
528 str += strlen(entry->key);
529 break;
530 }
531 }
532 if(ops == NULL){
Paolo 'Blaisorblade' Giarrussofac97ae2005-09-22 21:44:22 -0700533 my_printf("parse_chan couldn't parse \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 str);
Jeff Diked50084a2006-01-06 00:18:50 -0800535 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
Jeff Diked50084a2006-01-06 00:18:50 -0800537 if(ops->init == NULL)
538 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 data = (*ops->init)(str, device, opts);
Jeff Diked50084a2006-01-06 00:18:50 -0800540 if(data == NULL)
541 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Paolo 'Blaisorblade' Giarrusso79ae2cb2005-09-22 21:44:21 -0700543 chan = kmalloc(sizeof(*chan), GFP_ATOMIC);
Jeff Diked50084a2006-01-06 00:18:50 -0800544 if(chan == NULL)
545 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 *chan = ((struct chan) { .list = LIST_HEAD_INIT(chan->list),
Jeff Dike165dc592006-01-06 00:18:57 -0800547 .free_list =
548 LIST_HEAD_INIT(chan->free_list),
549 .line = line,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 .primary = 1,
551 .input = 0,
552 .output = 0,
553 .opened = 0,
Jeff Dike165dc592006-01-06 00:18:57 -0800554 .enabled = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 .fd = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 .ops = ops,
557 .data = data });
Jeff Diked50084a2006-01-06 00:18:50 -0800558 return chan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Jeff Dike165dc592006-01-06 00:18:57 -0800561int parse_chan_pair(char *str, struct line *line, int device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct chan_opts *opts)
563{
Jeff Dike165dc592006-01-06 00:18:57 -0800564 struct list_head *chans = &line->chan_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 struct chan *new, *chan;
566 char *in, *out;
567
568 if(!list_empty(chans)){
569 chan = list_entry(chans->next, struct chan, list);
Jeff Dike165dc592006-01-06 00:18:57 -0800570 free_chan(chans, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 INIT_LIST_HEAD(chans);
572 }
573
574 out = strchr(str, ',');
575 if(out != NULL){
576 in = str;
577 *out = '\0';
578 out++;
Jeff Dike165dc592006-01-06 00:18:57 -0800579 new = parse_chan(line, in, device, opts);
Jeff Diked50084a2006-01-06 00:18:50 -0800580 if(new == NULL)
581 return -1;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 new->input = 1;
584 list_add(&new->list, chans);
585
Jeff Dike165dc592006-01-06 00:18:57 -0800586 new = parse_chan(line, out, device, opts);
Jeff Diked50084a2006-01-06 00:18:50 -0800587 if(new == NULL)
588 return -1;
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 list_add(&new->list, chans);
591 new->output = 1;
592 }
593 else {
Jeff Dike165dc592006-01-06 00:18:57 -0800594 new = parse_chan(line, str, device, opts);
Jeff Diked50084a2006-01-06 00:18:50 -0800595 if(new == NULL)
596 return -1;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 list_add(&new->list, chans);
599 new->input = 1;
600 new->output = 1;
601 }
Jeff Diked50084a2006-01-06 00:18:50 -0800602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
605int chan_out_fd(struct list_head *chans)
606{
607 struct list_head *ele;
608 struct chan *chan;
609
610 list_for_each(ele, chans){
611 chan = list_entry(ele, struct chan, list);
612 if(chan->primary && chan->output)
Jeff Diked50084a2006-01-06 00:18:50 -0800613 return chan->fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Jeff Diked50084a2006-01-06 00:18:50 -0800615 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618void chan_interrupt(struct list_head *chans, struct work_struct *task,
619 struct tty_struct *tty, int irq)
620{
621 struct list_head *ele, *next;
622 struct chan *chan;
623 int err;
624 char c;
625
626 list_for_each_safe(ele, next, chans){
627 chan = list_entry(ele, struct chan, list);
628 if(!chan->input || (chan->ops->read == NULL)) continue;
629 do {
Jeff Diked50084a2006-01-06 00:18:50 -0800630 if((tty != NULL) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 (tty->flip.count >= TTY_FLIPBUF_SIZE)){
Jeff Dike9159c9d2006-01-06 00:18:58 -0800632 schedule_delayed_work(task, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 goto out;
634 }
635 err = chan->ops->read(chan->fd, &c, chan->data);
636 if(err > 0)
637 tty_receive_char(tty, c);
638 } while(err > 0);
639
640 if(err == 0) reactivate_fd(chan->fd, irq);
641 if(err == -EIO){
642 if(chan->primary){
643 if(tty != NULL)
644 tty_hangup(tty);
Jeff Dike165dc592006-01-06 00:18:57 -0800645 close_chan(chans, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return;
647 }
Jeff Dike165dc592006-01-06 00:18:57 -0800648 else close_one_chan(chan, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650 }
651 out:
652 if(tty) tty_flip_buffer_push(tty);
653}