blob: 364c8a15c4c33a6113a2ff36f526a88089a062e5 [file] [log] [blame]
Jeff Dike165dc592006-01-06 00:18:57 -08001/*
Jeff Dike2f8a2dc2007-10-16 01:26:43 -07002 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Jeff Dike2f8a2dc2007-10-16 01:26:43 -07006#include "linux/irqreturn.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "linux/kd.h"
Alexey Dobriyand43c36d2009-10-07 17:09:06 +04008#include "linux/sched.h"
Jan Kiszka7f3c1fa2010-04-19 17:46:23 +09009#include "linux/slab.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include "chan_kern.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include "irq_kern.h"
Jeff Dike2f8a2dc2007-10-16 01:26:43 -070012#include "irq_user.h"
Jeff Dikeedea1382008-02-04 22:30:46 -080013#include "kern_util.h"
Jeff Dike2f8a2dc2007-10-16 01:26:43 -070014#include "os.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#define LINE_BUFSIZE 4096
17
Al Viro7bea96f2006-10-08 22:49:34 +010018static irqreturn_t line_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
Jeff Dike165dc592006-01-06 00:18:57 -080020 struct chan *chan = data;
21 struct line *line = chan->line;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23 if (line)
Alexander Beregalov03315b52010-03-05 13:42:33 -080024 chan_interrupt(&line->chan_list, &line->task, line->tty, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 return IRQ_HANDLED;
26}
27
Andrew Mortona2ce7742006-12-06 20:31:36 -080028static void line_timer_cb(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Andrew Mortona2ce7742006-12-06 20:31:36 -080030 struct line *line = container_of(work, struct line, task.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Jeff Dike2f8a2dc2007-10-16 01:26:43 -070032 if (!line->throttled)
Jeff Dikee4dcee82006-01-06 00:18:58 -080033 chan_interrupt(&line->chan_list, &line->task, line->tty,
34 line->driver->read_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
Jeff Dike2f8a2dc2007-10-16 01:26:43 -070037/*
38 * Returns the free space inside the ring buffer of this line.
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070039 *
Simon Arlottb60745b2007-10-20 01:23:03 +020040 * Should be called while holding line->lock (this does not modify data).
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070041 */
42static int write_room(struct line *line)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 int n;
45
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070046 if (line->buffer == NULL)
47 return LINE_BUFSIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070049 /* This is for the case where the buffer is wrapped! */
50 n = line->head - line->tail;
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (n <= 0)
Jeff Dikeacb2cf32008-02-04 22:30:42 -080053 n += LINE_BUFSIZE; /* The other case */
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070054 return n - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070057int line_write_room(struct tty_struct *tty)
58{
59 struct line *line = tty->driver_data;
60 unsigned long flags;
61 int room;
62
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070063 spin_lock_irqsave(&line->lock, flags);
64 room = write_room(line);
65 spin_unlock_irqrestore(&line->lock, flags);
66
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070067 return room;
68}
69
70int line_chars_in_buffer(struct tty_struct *tty)
71{
72 struct line *line = tty->driver_data;
73 unsigned long flags;
74 int ret;
75
76 spin_lock_irqsave(&line->lock, flags);
Jeff Dikeacb2cf32008-02-04 22:30:42 -080077 /* write_room subtracts 1 for the needed NULL, so we readd it.*/
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -070078 ret = LINE_BUFSIZE - (write_room(line) + 1);
79 spin_unlock_irqrestore(&line->lock, flags);
80
81 return ret;
82}
83
84/*
85 * This copies the content of buf into the circular buffer associated with
86 * this line.
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.
90 *
91 * Must be called while holding line->lock!
92 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static int buffer_data(struct line *line, const char *buf, int len)
94{
95 int end, room;
96
Jeff Dike2f8a2dc2007-10-16 01:26:43 -070097 if (line->buffer == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 line->buffer = kmalloc(LINE_BUFSIZE, GFP_ATOMIC);
99 if (line->buffer == NULL) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700100 printk(KERN_ERR "buffer_data - atomic allocation "
101 "failed\n");
102 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104 line->head = line->buffer;
105 line->tail = line->buffer;
106 }
107
108 room = write_room(line);
109 len = (len > room) ? room : len;
110
111 end = line->buffer + LINE_BUFSIZE - line->tail;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700112
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700113 if (len < end) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 memcpy(line->tail, buf, len);
115 line->tail += len;
Jeff Diked50084a2006-01-06 00:18:50 -0800116 }
117 else {
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700118 /* The circular buffer is wrapping */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 memcpy(line->tail, buf, end);
120 buf += end;
121 memcpy(line->buffer, buf, len - end);
122 line->tail = line->buffer + len - end;
123 }
124
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700125 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700128/*
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.
131 *
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.
135 *
136 * Must be called while holding line->lock!*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static int flush_buffer(struct line *line)
138{
139 int n, count;
140
141 if ((line->buffer == NULL) || (line->head == line->tail))
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700142 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 if (line->tail < line->head) {
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700145 /* line->buffer + LINE_BUFSIZE is the end of the buffer! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 count = line->buffer + LINE_BUFSIZE - line->head;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 n = write_chan(&line->chan_list, line->head, count,
149 line->driver->write_irq);
150 if (n < 0)
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700151 return n;
152 if (n == count) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700153 /*
154 * We have flushed from ->head to buffer end, now we
155 * must flush only from the beginning to ->tail.
156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 line->head = line->buffer;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700158 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 line->head += n;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162 }
163
164 count = line->tail - line->head;
Jeff Diked50084a2006-01-06 00:18:50 -0800165 n = write_chan(&line->chan_list, line->head, count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 line->driver->write_irq);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700167
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700168 if (n < 0)
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700169 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 line->head += n;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700172 return line->head == line->tail;
173}
174
175void line_flush_buffer(struct tty_struct *tty)
176{
177 struct line *line = tty->driver_data;
178 unsigned long flags;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700179
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700180 spin_lock_irqsave(&line->lock, flags);
Richard Weinbergerf1c93e42011-07-25 17:12:55 -0700181 flush_buffer(line);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700182 spin_unlock_irqrestore(&line->lock, flags);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700183}
184
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700185/*
186 * We map both ->flush_chars and ->put_char (which go in pair) onto
187 * ->flush_buffer and ->write. Hope it's not that bad.
188 */
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700189void line_flush_chars(struct tty_struct *tty)
190{
191 line_flush_buffer(tty);
192}
193
WANG Cong3168cb92008-05-06 20:42:33 -0700194int line_put_char(struct tty_struct *tty, unsigned char ch)
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700195{
WANG Cong3168cb92008-05-06 20:42:33 -0700196 return line_write(tty, &ch, sizeof(ch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199int line_write(struct tty_struct *tty, const unsigned char *buf, int len)
200{
201 struct line *line = tty->driver_data;
202 unsigned long flags;
Jeff Dikec59dbca2007-10-16 01:26:42 -0700203 int n, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700205 spin_lock_irqsave(&line->lock, flags);
Jeff Dikec59dbca2007-10-16 01:26:42 -0700206 if (line->head != line->tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 ret = buffer_data(line, buf, len);
Jeff Dikec59dbca2007-10-16 01:26:42 -0700208 else {
Jeff Diked50084a2006-01-06 00:18:50 -0800209 n = write_chan(&line->chan_list, buf, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 line->driver->write_irq);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700211 if (n < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 ret = n;
213 goto out_up;
214 }
215
216 len -= n;
217 ret += n;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700218 if (len > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 ret += buffer_data(line, buf + n, len);
220 }
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700221out_up:
222 spin_unlock_irqrestore(&line->lock, flags);
223 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Alan Cox606d0992006-12-08 02:38:45 -0800226void line_set_termios(struct tty_struct *tty, struct ktermios * old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 /* nothing */
229}
230
Jeff Dike5e7672e2006-09-27 01:50:33 -0700231static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 int cmd;
233 char *level;
234 char *name;
235} tty_ioctls[] = {
236 /* don't print these, they flood the log ... */
237 { TCGETS, NULL, "TCGETS" },
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700238 { TCSETS, NULL, "TCSETS" },
239 { TCSETSW, NULL, "TCSETSW" },
240 { TCFLSH, NULL, "TCFLSH" },
241 { TCSBRK, NULL, "TCSBRK" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 /* general tty stuff */
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700244 { TCSETSF, KERN_DEBUG, "TCSETSF" },
245 { TCGETA, KERN_DEBUG, "TCGETA" },
246 { TIOCMGET, KERN_DEBUG, "TIOCMGET" },
247 { TCSBRKP, KERN_DEBUG, "TCSBRKP" },
248 { TIOCMSET, KERN_DEBUG, "TIOCMSET" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 /* linux-specific ones */
251 { TIOCLINUX, KERN_INFO, "TIOCLINUX" },
252 { KDGKBMODE, KERN_INFO, "KDGKBMODE" },
253 { KDGKBTYPE, KERN_INFO, "KDGKBTYPE" },
254 { KDSIGACCEPT, KERN_INFO, "KDSIGACCEPT" },
255};
256
Richard Weinberger8a06dc4d2011-03-22 16:33:48 -0700257int line_ioctl(struct tty_struct *tty, unsigned int cmd,
258 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 int ret;
261 int i;
262
263 ret = 0;
264 switch(cmd) {
265#ifdef TIOCGETP
266 case TIOCGETP:
267 case TIOCSETP:
268 case TIOCSETN:
269#endif
270#ifdef TIOCGETC
271 case TIOCGETC:
272 case TIOCSETC:
273#endif
274#ifdef TIOCGLTC
275 case TIOCGLTC:
276 case TIOCSLTC:
277#endif
Alan Coxc564b6f2008-10-13 10:36:49 +0100278 /* Note: these are out of date as we now have TCGETS2 etc but this
279 whole lot should probably go away */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 case TCGETS:
281 case TCSETSF:
282 case TCSETSW:
283 case TCSETS:
284 case TCGETA:
285 case TCSETAF:
286 case TCSETAW:
287 case TCSETA:
288 case TCXONC:
289 case TCFLSH:
290 case TIOCOUTQ:
291 case TIOCINQ:
292 case TIOCGLCKTRMIOS:
293 case TIOCSLCKTRMIOS:
294 case TIOCPKT:
295 case TIOCGSOFTCAR:
296 case TIOCSSOFTCAR:
297 return -ENOIOCTLCMD;
298#if 0
299 case TCwhatever:
300 /* do something */
301 break;
302#endif
303 default:
304 for (i = 0; i < ARRAY_SIZE(tty_ioctls); i++)
305 if (cmd == tty_ioctls[i].cmd)
306 break;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700307 if (i == ARRAY_SIZE(tty_ioctls)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 printk(KERN_ERR "%s: %s: unknown ioctl: 0x%x\n",
Harvey Harrison35957262008-04-28 02:13:53 -0700309 __func__, tty->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311 ret = -ENOIOCTLCMD;
312 break;
313 }
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700314 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Jeff Dikee4dcee82006-01-06 00:18:58 -0800317void line_throttle(struct tty_struct *tty)
318{
319 struct line *line = tty->driver_data;
320
321 deactivate_chan(&line->chan_list, line->driver->read_irq);
322 line->throttled = 1;
323}
324
325void line_unthrottle(struct tty_struct *tty)
326{
327 struct line *line = tty->driver_data;
328
329 line->throttled = 0;
330 chan_interrupt(&line->chan_list, &line->task, tty,
331 line->driver->read_irq);
332
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700333 /*
334 * Maybe there is enough stuff pending that calling the interrupt
Jeff Dikee4dcee82006-01-06 00:18:58 -0800335 * throttles us again. In this case, line->throttled will be 1
336 * again and we shouldn't turn the interrupt back on.
337 */
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700338 if (!line->throttled)
Jeff Dikee4dcee82006-01-06 00:18:58 -0800339 reactivate_chan(&line->chan_list, line->driver->read_irq);
340}
341
Al Viro7bea96f2006-10-08 22:49:34 +0100342static irqreturn_t line_write_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Jeff Dike165dc592006-01-06 00:18:57 -0800344 struct chan *chan = data;
345 struct line *line = chan->line;
346 struct tty_struct *tty = line->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 int err;
348
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700349 /*
350 * Interrupts are disabled here because we registered the interrupt with
351 * IRQF_DISABLED (see line_setup_irq).
352 */
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700353
Paolo 'Blaisorblade' Giarrussoec0ac8a2007-03-07 20:41:12 -0800354 spin_lock(&line->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 err = flush_buffer(line);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700356 if (err == 0) {
357 return IRQ_NONE;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700358 } else if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 line->head = line->buffer;
360 line->tail = line->buffer;
361 }
Paolo 'Blaisorblade' Giarrussoec0ac8a2007-03-07 20:41:12 -0800362 spin_unlock(&line->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700364 if (tty == NULL)
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700365 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
WANG Cong06ac6672008-07-29 22:33:34 -0700367 tty_wakeup(tty);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700368 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Jeff Dike165dc592006-01-06 00:18:57 -0800371int line_setup_irq(int fd, int input, int output, struct line *line, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Jeff Dike5e7672e2006-09-27 01:50:33 -0700373 const struct line_driver *driver = line->driver;
Thomas Gleixnerbd6aa652006-07-01 19:29:27 -0700374 int err = 0, flags = IRQF_DISABLED | IRQF_SHARED | IRQF_SAMPLE_RANDOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700376 if (input)
377 err = um_request_irq(driver->read_irq, fd, IRQ_READ,
Jeff Diked50084a2006-01-06 00:18:50 -0800378 line_interrupt, flags,
Jeff Dike165dc592006-01-06 00:18:57 -0800379 driver->read_irq_name, data);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700380 if (err)
381 return err;
382 if (output)
383 err = um_request_irq(driver->write_irq, fd, IRQ_WRITE,
Jeff Diked50084a2006-01-06 00:18:50 -0800384 line_write_interrupt, flags,
Jeff Dike165dc592006-01-06 00:18:57 -0800385 driver->write_irq_name, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 line->have_irq = 1;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700387 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700390/*
391 * Normally, a driver like this can rely mostly on the tty layer
Jeff Diked79a5802007-02-10 01:43:52 -0800392 * locking, particularly when it comes to the driver structure.
393 * However, in this case, mconsole requests can come in "from the
394 * side", and race with opens and closes.
395 *
Jeff Dikec6256c62007-02-10 01:44:08 -0800396 * mconsole config requests will want to be sure the device isn't in
397 * use, and get_config, open, and close will want a stable
398 * configuration. The checking and modification of the configuration
399 * is done under a spinlock. Checking whether the device is in use is
400 * line->tty->count > 1, also under the spinlock.
Jeff Diked79a5802007-02-10 01:43:52 -0800401 *
Al Virof71f9482011-09-14 16:21:25 -0700402 * line->count serves to decide whether the device should be enabled or
403 * disabled on the host. If it's equal to 0, then we are doing the
Jeff Dikec6256c62007-02-10 01:44:08 -0800404 * first open or last close. Otherwise, open and close just return.
Jeff Diked79a5802007-02-10 01:43:52 -0800405 */
406
Jeff Dike1f801712006-01-06 00:18:55 -0800407int line_open(struct line *lines, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Jeff Diked79a5802007-02-10 01:43:52 -0800409 struct line *line = &lines[tty->index];
Jeff Dike165dc592006-01-06 00:18:57 -0800410 int err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Jeff Diked79a5802007-02-10 01:43:52 -0800412 spin_lock(&line->count_lock);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700413 if (!line->valid)
Jeff Diked79a5802007-02-10 01:43:52 -0800414 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Jeff Diked79a5802007-02-10 01:43:52 -0800416 err = 0;
Al Virof71f9482011-09-14 16:21:25 -0700417 if (line->count++)
Jeff Diked79a5802007-02-10 01:43:52 -0800418 goto out_unlock;
419
Al Virof71f9482011-09-14 16:21:25 -0700420 BUG_ON(tty->driver_data);
Jeff Dike165dc592006-01-06 00:18:57 -0800421 tty->driver_data = line;
422 line->tty = tty;
Jeff Dike165dc592006-01-06 00:18:57 -0800423
Al Virof71f9482011-09-14 16:21:25 -0700424 spin_unlock(&line->count_lock);
Jeff Diked14ad812007-07-15 23:38:54 -0700425 err = enable_chan(line);
Al Virof71f9482011-09-14 16:21:25 -0700426 if (err) /* line_close() will be called by our caller */
Jeff Diked14ad812007-07-15 23:38:54 -0700427 return err;
428
Jeff Diked79a5802007-02-10 01:43:52 -0800429 INIT_DELAYED_WORK(&line->task, line_timer_cb);
Jeff Dike165dc592006-01-06 00:18:57 -0800430
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700431 if (!line->sigio) {
Jeff Diked79a5802007-02-10 01:43:52 -0800432 chan_enable_winch(&line->chan_list, tty);
433 line->sigio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
Jeff Diked79a5802007-02-10 01:43:52 -0800436 chan_window_size(&line->chan_list, &tty->winsize.ws_row,
437 &tty->winsize.ws_col);
438
Al Virof71f9482011-09-14 16:21:25 -0700439 return 0;
Jeff Diked79a5802007-02-10 01:43:52 -0800440
441out_unlock:
442 spin_unlock(&line->count_lock);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700443 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700446static void unregister_winch(struct tty_struct *tty);
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448void line_close(struct tty_struct *tty, struct file * filp)
449{
450 struct line *line = tty->driver_data;
451
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700452 /*
453 * If line_open fails (and tty->driver_data is never set),
Jeff Diked79a5802007-02-10 01:43:52 -0800454 * tty_open will call line_close. So just return in this case.
455 */
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700456 if (line == NULL)
Jeff Diked79a5802007-02-10 01:43:52 -0800457 return;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700458
459 /* We ignore the error anyway! */
460 flush_buffer(line);
461
Jeff Diked79a5802007-02-10 01:43:52 -0800462 spin_lock(&line->count_lock);
Al Virof71f9482011-09-14 16:21:25 -0700463 BUG_ON(!line->valid);
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700464
Al Virof71f9482011-09-14 16:21:25 -0700465 if (--line->count)
Jeff Diked79a5802007-02-10 01:43:52 -0800466 goto out_unlock;
467
Jeff Diked79a5802007-02-10 01:43:52 -0800468 line->tty = NULL;
469 tty->driver_data = NULL;
470
Al Virof71f9482011-09-14 16:21:25 -0700471 spin_unlock(&line->count_lock);
472
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700473 if (line->sigio) {
Jeff Diked79a5802007-02-10 01:43:52 -0800474 unregister_winch(tty);
475 line->sigio = 0;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700476 }
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700477
Jeff Diked79a5802007-02-10 01:43:52 -0800478 return;
479
480out_unlock:
481 spin_unlock(&line->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484void close_lines(struct line *lines, int nlines)
485{
486 int i;
487
488 for(i = 0; i < nlines; i++)
Jeff Dike165dc592006-01-06 00:18:57 -0800489 close_chan(&lines[i].chan_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Jeff Dikef28169d2007-02-10 01:43:53 -0800492static int setup_one_line(struct line *lines, int n, char *init, int init_prio,
493 char **error_out)
Jeff Diked79a5802007-02-10 01:43:52 -0800494{
495 struct line *line = &lines[n];
Jeff Dikef28169d2007-02-10 01:43:53 -0800496 int err = -EINVAL;
Jeff Diked79a5802007-02-10 01:43:52 -0800497
498 spin_lock(&line->count_lock);
499
Al Virof71f9482011-09-14 16:21:25 -0700500 if (line->count) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800501 *error_out = "Device is already open";
Jeff Diked79a5802007-02-10 01:43:52 -0800502 goto out;
503 }
504
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700505 if (line->init_pri <= init_prio) {
Jeff Diked79a5802007-02-10 01:43:52 -0800506 line->init_pri = init_prio;
507 if (!strcmp(init, "none"))
508 line->valid = 0;
509 else {
510 line->init_str = init;
511 line->valid = 1;
512 }
513 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800514 err = 0;
Jeff Diked79a5802007-02-10 01:43:52 -0800515out:
516 spin_unlock(&line->count_lock);
Jeff Dikef28169d2007-02-10 01:43:53 -0800517 return err;
Jeff Diked79a5802007-02-10 01:43:52 -0800518}
519
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700520/*
521 * Common setup code for both startup command line and mconsole initialization.
Matt LaPlante4b3f6862006-10-03 22:21:02 +0200522 * @lines contains the array (of size @num) to modify;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700523 * @init is the setup string;
Jeff Dikef28169d2007-02-10 01:43:53 -0800524 * @error_out is an error string in the case of failure;
Jeff Diked571cd12006-01-06 00:18:53 -0800525 */
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700526
Jeff Dikef28169d2007-02-10 01:43:53 -0800527int line_setup(struct line *lines, unsigned int num, char *init,
528 char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Jeff Dikef28169d2007-02-10 01:43:53 -0800530 int i, n, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 char *end;
532
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700533 if (*init == '=') {
534 /*
535 * We said con=/ssl= instead of con#=, so we are configuring all
536 * consoles at once.
537 */
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700538 n = -1;
Jeff Diked50084a2006-01-06 00:18:50 -0800539 }
540 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 n = simple_strtoul(init, &end, 0);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700542 if (*end != '=') {
Jeff Dikef28169d2007-02-10 01:43:53 -0800543 *error_out = "Couldn't parse device number";
544 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546 init = end;
547 }
548 init++;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700549
550 if (n >= (signed int) num) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800551 *error_out = "Device number out of range";
552 return -EINVAL;
Jeff Diked50084a2006-01-06 00:18:50 -0800553 }
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700554 else if (n >= 0) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800555 err = setup_one_line(lines, n, init, INIT_ONE, error_out);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700556 if (err)
Jeff Dikef28169d2007-02-10 01:43:53 -0800557 return err;
558 }
Jeff Diked50084a2006-01-06 00:18:50 -0800559 else {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700560 for(i = 0; i < num; i++) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800561 err = setup_one_line(lines, i, init, INIT_ALL,
562 error_out);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700563 if (err)
Jeff Dikef28169d2007-02-10 01:43:53 -0800564 return err;
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
Jeff Dike418e55d2006-01-06 00:18:54 -0800567 return n == -1 ? num : n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Jeff Dike1f801712006-01-06 00:18:55 -0800570int line_config(struct line *lines, unsigned int num, char *str,
Jeff Dikef28169d2007-02-10 01:43:53 -0800571 const struct chan_opts *opts, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Jeff Dike1f801712006-01-06 00:18:55 -0800573 struct line *line;
Jeff Dike970d6e32006-01-06 00:18:48 -0800574 char *new;
Jeff Dike418e55d2006-01-06 00:18:54 -0800575 int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700577 if (*str == '=') {
Jeff Dikef28169d2007-02-10 01:43:53 -0800578 *error_out = "Can't configure all devices from mconsole";
579 return -EINVAL;
Jeff Diked571cd12006-01-06 00:18:53 -0800580 }
581
Jeff Dike970d6e32006-01-06 00:18:48 -0800582 new = kstrdup(str, GFP_KERNEL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700583 if (new == NULL) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800584 *error_out = "Failed to allocate memory";
585 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800587 n = line_setup(lines, num, new, error_out);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700588 if (n < 0)
Jeff Dikef28169d2007-02-10 01:43:53 -0800589 return n;
Jeff Dike1f801712006-01-06 00:18:55 -0800590
591 line = &lines[n];
Jeff Dikef28169d2007-02-10 01:43:53 -0800592 return parse_chan_pair(line->init_str, line, n, opts, error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700595int line_get_config(char *name, struct line *lines, unsigned int num, char *str,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int size, char **error_out)
597{
598 struct line *line;
599 char *end;
600 int dev, n = 0;
601
602 dev = simple_strtoul(name, &end, 0);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700603 if ((*end != '\0') || (end == name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 *error_out = "line_get_config failed to parse device number";
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700605 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700608 if ((dev < 0) || (dev >= num)) {
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700609 *error_out = "device number out of range";
610 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 line = &lines[dev];
614
Jeff Diked79a5802007-02-10 01:43:52 -0800615 spin_lock(&line->count_lock);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700616 if (!line->valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 CONFIG_CHUNK(str, size, n, "none", 1);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700618 else if (line->tty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 CONFIG_CHUNK(str, size, n, line->init_str, 1);
620 else n = chan_config_string(&line->chan_list, str, size, error_out);
Jeff Diked79a5802007-02-10 01:43:52 -0800621 spin_unlock(&line->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700623 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Jeff Dike29d56cf2005-06-25 14:55:25 -0700626int line_id(char **str, int *start_out, int *end_out)
627{
628 char *end;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700629 int n;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700630
631 n = simple_strtoul(*str, &end, 0);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700632 if ((*end != '\0') || (end == *str))
633 return -1;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700634
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700635 *str = end;
636 *start_out = n;
637 *end_out = n;
638 return n;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700639}
640
Jeff Dikef28169d2007-02-10 01:43:53 -0800641int line_remove(struct line *lines, unsigned int num, int n, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Jeff Dike418e55d2006-01-06 00:18:54 -0800643 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 char config[sizeof("conxxxx=none\0")];
645
Jeff Dike29d56cf2005-06-25 14:55:25 -0700646 sprintf(config, "%d=none", n);
Jeff Dikef28169d2007-02-10 01:43:53 -0800647 err = line_setup(lines, num, config, error_out);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700648 if (err >= 0)
Jeff Dike418e55d2006-01-06 00:18:54 -0800649 err = 0;
650 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Jeff Diked5c9ffc2007-02-10 01:44:08 -0800653struct tty_driver *register_lines(struct line_driver *line_driver,
654 const struct tty_operations *ops,
655 struct line *lines, int nlines)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 int i;
658 struct tty_driver *driver = alloc_tty_driver(nlines);
659
660 if (!driver)
661 return NULL;
662
663 driver->driver_name = line_driver->name;
664 driver->name = line_driver->device_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 driver->major = line_driver->major;
666 driver->minor_start = line_driver->minor_start;
667 driver->type = line_driver->type;
668 driver->subtype = line_driver->subtype;
669 driver->flags = TTY_DRIVER_REAL_RAW;
670 driver->init_termios = tty_std_termios;
671 tty_set_operations(driver, ops);
672
673 if (tty_register_driver(driver)) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700674 printk(KERN_ERR "register_lines : can't register %s driver\n",
675 line_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 put_tty_driver(driver);
677 return NULL;
678 }
679
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700680 for(i = 0; i < nlines; i++) {
681 if (!lines[i].valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 tty_unregister_device(driver, i);
683 }
684
685 mconsole_register_dev(&line_driver->mc);
686 return driver;
687}
688
Jeff Dike90107722006-01-06 00:18:54 -0800689static DEFINE_SPINLOCK(winch_handler_lock);
690static LIST_HEAD(winch_handlers);
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700691
Jeff Dike1f801712006-01-06 00:18:55 -0800692void lines_init(struct line *lines, int nlines, struct chan_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 struct line *line;
Jeff Dikef28169d2007-02-10 01:43:53 -0800695 char *error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 int i;
697
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700698 for(i = 0; i < nlines; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 line = &lines[i];
700 INIT_LIST_HEAD(&line->chan_list);
Jeff Dike90107722006-01-06 00:18:54 -0800701
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700702 if (line->init_str == NULL)
Jeff Diked50084a2006-01-06 00:18:50 -0800703 continue;
704
705 line->init_str = kstrdup(line->init_str, GFP_KERNEL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700706 if (line->init_str == NULL)
707 printk(KERN_ERR "lines_init - kstrdup returned NULL\n");
Jeff Dike1f801712006-01-06 00:18:55 -0800708
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700709 if (parse_chan_pair(line->init_str, line, i, opts, &error)) {
710 printk(KERN_ERR "parse_chan_pair failed for "
711 "device %d : %s\n", i, error);
Jeff Dike1f801712006-01-06 00:18:55 -0800712 line->valid = 0;
713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715}
716
717struct winch {
718 struct list_head list;
719 int fd;
720 int tty_fd;
721 int pid;
722 struct tty_struct *tty;
Jeff Dike42a359e2007-07-15 23:38:55 -0700723 unsigned long stack;
Al Viro7cf3cf22011-09-14 16:21:31 -0700724 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725};
726
Al Viro7cf3cf22011-09-14 16:21:31 -0700727static void __free_winch(struct work_struct *work)
Jeff Dike42a359e2007-07-15 23:38:55 -0700728{
Al Viro7cf3cf22011-09-14 16:21:31 -0700729 struct winch *winch = container_of(work, struct winch, work);
730 free_irq(WINCH_IRQ, winch);
Jeff Dike42a359e2007-07-15 23:38:55 -0700731
732 if (winch->pid != -1)
733 os_kill_process(winch->pid, 1);
Jeff Dike42a359e2007-07-15 23:38:55 -0700734 if (winch->stack != 0)
735 free_stack(winch->stack, 0);
Jeff Dike42a359e2007-07-15 23:38:55 -0700736 kfree(winch);
737}
738
Al Viro7cf3cf22011-09-14 16:21:31 -0700739static void free_winch(struct winch *winch)
740{
741 int fd = winch->fd;
742 winch->fd = -1;
743 if (fd != -1)
744 os_close_file(fd);
745 list_del(&winch->list);
746 __free_winch(&winch->work);
747}
748
Al Viro7bea96f2006-10-08 22:49:34 +0100749static irqreturn_t winch_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 struct winch *winch = data;
752 struct tty_struct *tty;
753 struct line *line;
Al Viro7cf3cf22011-09-14 16:21:31 -0700754 int fd = winch->fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 int err;
756 char c;
757
Al Viro7cf3cf22011-09-14 16:21:31 -0700758 if (fd != -1) {
759 err = generic_read(fd, &c, NULL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700760 if (err < 0) {
761 if (err != -EAGAIN) {
Al Viro7cf3cf22011-09-14 16:21:31 -0700762 winch->fd = -1;
763 list_del(&winch->list);
764 os_close_file(fd);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700765 printk(KERN_ERR "winch_interrupt : "
766 "read failed, errno = %d\n", -err);
767 printk(KERN_ERR "fd %d is losing SIGWINCH "
768 "support\n", winch->tty_fd);
Al Viro7cf3cf22011-09-14 16:21:31 -0700769 INIT_WORK(&winch->work, __free_winch);
770 schedule_work(&winch->work);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700771 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 goto out;
774 }
775 }
Jeff Dike42a359e2007-07-15 23:38:55 -0700776 tty = winch->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (tty != NULL) {
778 line = tty->driver_data;
Jeff Dike438ee672008-02-04 22:31:19 -0800779 if (line != NULL) {
780 chan_window_size(&line->chan_list, &tty->winsize.ws_row,
781 &tty->winsize.ws_col);
782 kill_pgrp(tty->pgrp, SIGWINCH, 1);
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785 out:
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700786 if (winch->fd != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 reactivate_fd(winch->fd, WINCH_IRQ);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700788 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
Jeff Dike42a359e2007-07-15 23:38:55 -0700791void register_winch_irq(int fd, int tty_fd, int pid, struct tty_struct *tty,
792 unsigned long stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
794 struct winch *winch;
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 winch = kmalloc(sizeof(*winch), GFP_KERNEL);
797 if (winch == NULL) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700798 printk(KERN_ERR "register_winch_irq - kmalloc failed\n");
Jeff Dike42a359e2007-07-15 23:38:55 -0700799 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 *winch = ((struct winch) { .list = LIST_HEAD_INIT(winch->list),
803 .fd = fd,
804 .tty_fd = tty_fd,
805 .pid = pid,
Jeff Dike42a359e2007-07-15 23:38:55 -0700806 .tty = tty,
807 .stack = stack });
808
809 if (um_request_irq(WINCH_IRQ, fd, IRQ_READ, winch_interrupt,
810 IRQF_DISABLED | IRQF_SHARED | IRQF_SAMPLE_RANDOM,
811 "winch", winch) < 0) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700812 printk(KERN_ERR "register_winch_irq - failed to register "
813 "IRQ\n");
Jeff Dike42a359e2007-07-15 23:38:55 -0700814 goto out_free;
815 }
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700816
817 spin_lock(&winch_handler_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 list_add(&winch->list, &winch_handlers);
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700819 spin_unlock(&winch_handler_lock);
820
Jeff Dike42a359e2007-07-15 23:38:55 -0700821 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Jeff Dike42a359e2007-07-15 23:38:55 -0700823 out_free:
Jeff Dikee464bf22006-01-06 00:19:01 -0800824 kfree(winch);
Jeff Dike42a359e2007-07-15 23:38:55 -0700825 cleanup:
826 os_kill_process(pid, 1);
827 os_close_file(fd);
828 if (stack != 0)
829 free_stack(stack, 0);
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700830}
831
Jeff Dikee464bf22006-01-06 00:19:01 -0800832static void unregister_winch(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Will Newton48a0b742011-01-12 16:59:26 -0800834 struct list_head *ele, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 struct winch *winch;
836
Jeff Dikee464bf22006-01-06 00:19:01 -0800837 spin_lock(&winch_handler_lock);
838
Will Newton48a0b742011-01-12 16:59:26 -0800839 list_for_each_safe(ele, next, &winch_handlers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 winch = list_entry(ele, struct winch, list);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700841 if (winch->tty == tty) {
Al Viro7cf3cf22011-09-14 16:21:31 -0700842 free_winch(winch);
Jeff Dikee464bf22006-01-06 00:19:01 -0800843 break;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700844 }
845 }
Jeff Dikee464bf22006-01-06 00:19:01 -0800846 spin_unlock(&winch_handler_lock);
847}
848
849static void winch_cleanup(void)
850{
851 struct list_head *ele, *next;
852 struct winch *winch;
853
854 spin_lock(&winch_handler_lock);
855
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700856 list_for_each_safe(ele, next, &winch_handlers) {
Jeff Dikee464bf22006-01-06 00:19:01 -0800857 winch = list_entry(ele, struct winch, list);
Al Viro7cf3cf22011-09-14 16:21:31 -0700858 free_winch(winch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
Jeff Dikee464bf22006-01-06 00:19:01 -0800860
861 spin_unlock(&winch_handler_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863__uml_exitcall(winch_cleanup);
864
865char *add_xterm_umid(char *base)
866{
867 char *umid, *title;
868 int len;
869
Jeff Dike7eebe8a2006-01-06 00:19:01 -0800870 umid = get_umid();
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700871 if (*umid == '\0')
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700872 return base;
Jeff Dike165dc592006-01-06 00:18:57 -0800873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 len = strlen(base) + strlen(" ()") + strlen(umid) + 1;
875 title = kmalloc(len, GFP_KERNEL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700876 if (title == NULL) {
877 printk(KERN_ERR "Failed to allocate buffer for xterm title\n");
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700878 return base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880
881 snprintf(title, len, "%s (%s)", base, umid);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700882 return title;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}