blob: 3eea99e98a1106aff270e5e03f003484aa6c37f7 [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"
Al Viro510c72a32011-08-18 20:08:29 +010010#include "chan.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 /*
Yong Zhangc0b79a92011-09-22 16:58:46 +0800350 * Interrupts are disabled here because genirq keep irqs disabled when
351 * calling the action handler.
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700352 */
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;
Yong Zhangc0b79a92011-09-22 16:58:46 +0800374 int err = 0, flags = 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
Al Viro43574c12011-09-09 17:25:00 -0400492static int setup_one_line(struct line *lines, int n, char *init,
Jeff Dikef28169d2007-02-10 01:43:53 -0800493 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
Al Viro43574c12011-09-09 17:25:00 -0400505 if (!strcmp(init, "none"))
506 line->valid = 0;
507 else {
508 line->init_str = init;
509 line->valid = 1;
Jeff Diked79a5802007-02-10 01:43:52 -0800510 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800511 err = 0;
Jeff Diked79a5802007-02-10 01:43:52 -0800512out:
513 spin_unlock(&line->count_lock);
Jeff Dikef28169d2007-02-10 01:43:53 -0800514 return err;
Jeff Diked79a5802007-02-10 01:43:52 -0800515}
516
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700517/*
518 * Common setup code for both startup command line and mconsole initialization.
Matt LaPlante4b3f6862006-10-03 22:21:02 +0200519 * @lines contains the array (of size @num) to modify;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700520 * @init is the setup string;
Jeff Dikef28169d2007-02-10 01:43:53 -0800521 * @error_out is an error string in the case of failure;
Jeff Diked571cd12006-01-06 00:18:53 -0800522 */
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700523
Al Viro43574c12011-09-09 17:25:00 -0400524int line_setup(char **conf, unsigned int num, char **def,
525 char *init, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Al Viro43574c12011-09-09 17:25:00 -0400527 char *error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700529 if (*init == '=') {
530 /*
531 * We said con=/ssl= instead of con#=, so we are configuring all
532 * consoles at once.
533 */
Al Viro43574c12011-09-09 17:25:00 -0400534 *def = init + 1;
535 } else {
536 char *end;
537 unsigned n = simple_strtoul(init, &end, 0);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700538
Al Viro43574c12011-09-09 17:25:00 -0400539 if (*end != '=') {
540 error = "Couldn't parse device number";
541 goto out;
Jeff Dikef28169d2007-02-10 01:43:53 -0800542 }
Al Viro43574c12011-09-09 17:25:00 -0400543 if (n >= num) {
544 error = "Device number out of range";
545 goto out;
546 }
547 conf[n] = end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
Al Viro43574c12011-09-09 17:25:00 -0400549 return 0;
550
551out:
552 printk(KERN_ERR "Failed to set up %s with "
553 "configuration string \"%s\" : %s\n", name, init, error);
554 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Jeff Dike1f801712006-01-06 00:18:55 -0800557int line_config(struct line *lines, unsigned int num, char *str,
Jeff Dikef28169d2007-02-10 01:43:53 -0800558 const struct chan_opts *opts, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Jeff Dike1f801712006-01-06 00:18:55 -0800560 struct line *line;
Jeff Dike970d6e32006-01-06 00:18:48 -0800561 char *new;
Al Virofe9a6b02011-09-08 20:44:06 -0400562 char *end;
563 int n, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700565 if (*str == '=') {
Jeff Dikef28169d2007-02-10 01:43:53 -0800566 *error_out = "Can't configure all devices from mconsole";
567 return -EINVAL;
Jeff Diked571cd12006-01-06 00:18:53 -0800568 }
569
Al Virofe9a6b02011-09-08 20:44:06 -0400570 n = simple_strtoul(str, &end, 0);
571 if (*end++ != '=') {
572 *error_out = "Couldn't parse device number";
573 return -EINVAL;
574 }
575 if (n >= num) {
576 *error_out = "Device number out of range";
577 return -EINVAL;
578 }
579
580 new = kstrdup(end, GFP_KERNEL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700581 if (new == NULL) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800582 *error_out = "Failed to allocate memory";
583 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Al Viro43574c12011-09-09 17:25:00 -0400585 err = setup_one_line(lines, n, new, error_out);
Al Virofe9a6b02011-09-08 20:44:06 -0400586 if (err)
587 return err;
Jeff Dike1f801712006-01-06 00:18:55 -0800588 line = &lines[n];
Jeff Dikef28169d2007-02-10 01:43:53 -0800589 return parse_chan_pair(line->init_str, line, n, opts, error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700592int line_get_config(char *name, struct line *lines, unsigned int num, char *str,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 int size, char **error_out)
594{
595 struct line *line;
596 char *end;
597 int dev, n = 0;
598
599 dev = simple_strtoul(name, &end, 0);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700600 if ((*end != '\0') || (end == name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 *error_out = "line_get_config failed to parse device number";
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700605 if ((dev < 0) || (dev >= num)) {
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700606 *error_out = "device number out of range";
607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610 line = &lines[dev];
611
Jeff Diked79a5802007-02-10 01:43:52 -0800612 spin_lock(&line->count_lock);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700613 if (!line->valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 CONFIG_CHUNK(str, size, n, "none", 1);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700615 else if (line->tty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 CONFIG_CHUNK(str, size, n, line->init_str, 1);
617 else n = chan_config_string(&line->chan_list, str, size, error_out);
Jeff Diked79a5802007-02-10 01:43:52 -0800618 spin_unlock(&line->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700620 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Jeff Dike29d56cf2005-06-25 14:55:25 -0700623int line_id(char **str, int *start_out, int *end_out)
624{
625 char *end;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700626 int n;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700627
628 n = simple_strtoul(*str, &end, 0);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700629 if ((*end != '\0') || (end == *str))
630 return -1;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700631
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700632 *str = end;
633 *start_out = n;
634 *end_out = n;
635 return n;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700636}
637
Jeff Dikef28169d2007-02-10 01:43:53 -0800638int line_remove(struct line *lines, unsigned int num, int n, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Al Viroda645f32011-09-08 20:34:52 -0400640 if (n >= num) {
641 *error_out = "Device number out of range";
642 return -EINVAL;
643 }
Al Viro43574c12011-09-09 17:25:00 -0400644 return setup_one_line(lines, n, "none", error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Jeff Diked5c9ffc2007-02-10 01:44:08 -0800647struct tty_driver *register_lines(struct line_driver *line_driver,
648 const struct tty_operations *ops,
649 struct line *lines, int nlines)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 int i;
652 struct tty_driver *driver = alloc_tty_driver(nlines);
653
654 if (!driver)
655 return NULL;
656
657 driver->driver_name = line_driver->name;
658 driver->name = line_driver->device_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 driver->major = line_driver->major;
660 driver->minor_start = line_driver->minor_start;
661 driver->type = line_driver->type;
662 driver->subtype = line_driver->subtype;
663 driver->flags = TTY_DRIVER_REAL_RAW;
664 driver->init_termios = tty_std_termios;
665 tty_set_operations(driver, ops);
666
667 if (tty_register_driver(driver)) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700668 printk(KERN_ERR "register_lines : can't register %s driver\n",
669 line_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 put_tty_driver(driver);
671 return NULL;
672 }
673
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700674 for(i = 0; i < nlines; i++) {
675 if (!lines[i].valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 tty_unregister_device(driver, i);
677 }
678
679 mconsole_register_dev(&line_driver->mc);
680 return driver;
681}
682
Jeff Dike90107722006-01-06 00:18:54 -0800683static DEFINE_SPINLOCK(winch_handler_lock);
684static LIST_HEAD(winch_handlers);
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700685
Jeff Dike1f801712006-01-06 00:18:55 -0800686void lines_init(struct line *lines, int nlines, struct chan_opts *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct line *line;
Jeff Dikef28169d2007-02-10 01:43:53 -0800689 char *error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 int i;
691
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700692 for(i = 0; i < nlines; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 line = &lines[i];
694 INIT_LIST_HEAD(&line->chan_list);
Jeff Dike90107722006-01-06 00:18:54 -0800695
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700696 if (line->init_str == NULL)
Jeff Diked50084a2006-01-06 00:18:50 -0800697 continue;
698
699 line->init_str = kstrdup(line->init_str, GFP_KERNEL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700700 if (line->init_str == NULL)
701 printk(KERN_ERR "lines_init - kstrdup returned NULL\n");
Jeff Dike1f801712006-01-06 00:18:55 -0800702
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700703 if (parse_chan_pair(line->init_str, line, i, opts, &error)) {
704 printk(KERN_ERR "parse_chan_pair failed for "
705 "device %d : %s\n", i, error);
Jeff Dike1f801712006-01-06 00:18:55 -0800706 line->valid = 0;
707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709}
710
711struct winch {
712 struct list_head list;
713 int fd;
714 int tty_fd;
715 int pid;
716 struct tty_struct *tty;
Jeff Dike42a359e2007-07-15 23:38:55 -0700717 unsigned long stack;
Al Viro7cf3cf22011-09-14 16:21:31 -0700718 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719};
720
Al Viro7cf3cf22011-09-14 16:21:31 -0700721static void __free_winch(struct work_struct *work)
Jeff Dike42a359e2007-07-15 23:38:55 -0700722{
Al Viro7cf3cf22011-09-14 16:21:31 -0700723 struct winch *winch = container_of(work, struct winch, work);
724 free_irq(WINCH_IRQ, winch);
Jeff Dike42a359e2007-07-15 23:38:55 -0700725
726 if (winch->pid != -1)
727 os_kill_process(winch->pid, 1);
Jeff Dike42a359e2007-07-15 23:38:55 -0700728 if (winch->stack != 0)
729 free_stack(winch->stack, 0);
Jeff Dike42a359e2007-07-15 23:38:55 -0700730 kfree(winch);
731}
732
Al Viro7cf3cf22011-09-14 16:21:31 -0700733static void free_winch(struct winch *winch)
734{
735 int fd = winch->fd;
736 winch->fd = -1;
737 if (fd != -1)
738 os_close_file(fd);
739 list_del(&winch->list);
740 __free_winch(&winch->work);
741}
742
Al Viro7bea96f2006-10-08 22:49:34 +0100743static irqreturn_t winch_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
745 struct winch *winch = data;
746 struct tty_struct *tty;
747 struct line *line;
Al Viro7cf3cf22011-09-14 16:21:31 -0700748 int fd = winch->fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 int err;
750 char c;
751
Al Viro7cf3cf22011-09-14 16:21:31 -0700752 if (fd != -1) {
753 err = generic_read(fd, &c, NULL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700754 if (err < 0) {
755 if (err != -EAGAIN) {
Al Viro7cf3cf22011-09-14 16:21:31 -0700756 winch->fd = -1;
757 list_del(&winch->list);
758 os_close_file(fd);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700759 printk(KERN_ERR "winch_interrupt : "
760 "read failed, errno = %d\n", -err);
761 printk(KERN_ERR "fd %d is losing SIGWINCH "
762 "support\n", winch->tty_fd);
Al Viro7cf3cf22011-09-14 16:21:31 -0700763 INIT_WORK(&winch->work, __free_winch);
764 schedule_work(&winch->work);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700765 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 goto out;
768 }
769 }
Jeff Dike42a359e2007-07-15 23:38:55 -0700770 tty = winch->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (tty != NULL) {
772 line = tty->driver_data;
Jeff Dike438ee672008-02-04 22:31:19 -0800773 if (line != NULL) {
774 chan_window_size(&line->chan_list, &tty->winsize.ws_row,
775 &tty->winsize.ws_col);
776 kill_pgrp(tty->pgrp, SIGWINCH, 1);
777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779 out:
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700780 if (winch->fd != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 reactivate_fd(winch->fd, WINCH_IRQ);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700782 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Jeff Dike42a359e2007-07-15 23:38:55 -0700785void register_winch_irq(int fd, int tty_fd, int pid, struct tty_struct *tty,
786 unsigned long stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 struct winch *winch;
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 winch = kmalloc(sizeof(*winch), GFP_KERNEL);
791 if (winch == NULL) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700792 printk(KERN_ERR "register_winch_irq - kmalloc failed\n");
Jeff Dike42a359e2007-07-15 23:38:55 -0700793 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 *winch = ((struct winch) { .list = LIST_HEAD_INIT(winch->list),
797 .fd = fd,
798 .tty_fd = tty_fd,
799 .pid = pid,
Jeff Dike42a359e2007-07-15 23:38:55 -0700800 .tty = tty,
801 .stack = stack });
802
803 if (um_request_irq(WINCH_IRQ, fd, IRQ_READ, winch_interrupt,
Yong Zhangc0b79a92011-09-22 16:58:46 +0800804 IRQF_SHARED | IRQF_SAMPLE_RANDOM,
Jeff Dike42a359e2007-07-15 23:38:55 -0700805 "winch", winch) < 0) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700806 printk(KERN_ERR "register_winch_irq - failed to register "
807 "IRQ\n");
Jeff Dike42a359e2007-07-15 23:38:55 -0700808 goto out_free;
809 }
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700810
811 spin_lock(&winch_handler_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 list_add(&winch->list, &winch_handlers);
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700813 spin_unlock(&winch_handler_lock);
814
Jeff Dike42a359e2007-07-15 23:38:55 -0700815 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Jeff Dike42a359e2007-07-15 23:38:55 -0700817 out_free:
Jeff Dikee464bf22006-01-06 00:19:01 -0800818 kfree(winch);
Jeff Dike42a359e2007-07-15 23:38:55 -0700819 cleanup:
820 os_kill_process(pid, 1);
821 os_close_file(fd);
822 if (stack != 0)
823 free_stack(stack, 0);
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700824}
825
Jeff Dikee464bf22006-01-06 00:19:01 -0800826static void unregister_winch(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Will Newton48a0b742011-01-12 16:59:26 -0800828 struct list_head *ele, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 struct winch *winch;
830
Jeff Dikee464bf22006-01-06 00:19:01 -0800831 spin_lock(&winch_handler_lock);
832
Will Newton48a0b742011-01-12 16:59:26 -0800833 list_for_each_safe(ele, next, &winch_handlers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 winch = list_entry(ele, struct winch, list);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700835 if (winch->tty == tty) {
Al Viro7cf3cf22011-09-14 16:21:31 -0700836 free_winch(winch);
Jeff Dikee464bf22006-01-06 00:19:01 -0800837 break;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700838 }
839 }
Jeff Dikee464bf22006-01-06 00:19:01 -0800840 spin_unlock(&winch_handler_lock);
841}
842
843static void winch_cleanup(void)
844{
845 struct list_head *ele, *next;
846 struct winch *winch;
847
848 spin_lock(&winch_handler_lock);
849
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700850 list_for_each_safe(ele, next, &winch_handlers) {
Jeff Dikee464bf22006-01-06 00:19:01 -0800851 winch = list_entry(ele, struct winch, list);
Al Viro7cf3cf22011-09-14 16:21:31 -0700852 free_winch(winch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
Jeff Dikee464bf22006-01-06 00:19:01 -0800854
855 spin_unlock(&winch_handler_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857__uml_exitcall(winch_cleanup);
858
859char *add_xterm_umid(char *base)
860{
861 char *umid, *title;
862 int len;
863
Jeff Dike7eebe8a2006-01-06 00:19:01 -0800864 umid = get_umid();
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700865 if (*umid == '\0')
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700866 return base;
Jeff Dike165dc592006-01-06 00:18:57 -0800867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 len = strlen(base) + strlen(" ()") + strlen(umid) + 1;
869 title = kmalloc(len, GFP_KERNEL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700870 if (title == NULL) {
871 printk(KERN_ERR "Failed to allocate buffer for xterm title\n");
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700872 return base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874
875 snprintf(title, len, "%s (%s)", base, umid);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700876 return title;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}