blob: 002d4a968ae64cc5da1866ab9fc0c4b91b8b1b20 [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
Al Virod8c215a2011-09-09 17:36:37 -0400412 mutex_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
Jeff Diked14ad812007-07-15 23:38:54 -0700424 err = enable_chan(line);
Al Virof71f9482011-09-14 16:21:25 -0700425 if (err) /* line_close() will be called by our caller */
Al Virod8c215a2011-09-09 17:36:37 -0400426 goto out_unlock;
Jeff Diked14ad812007-07-15 23:38:54 -0700427
Jeff Diked79a5802007-02-10 01:43:52 -0800428 INIT_DELAYED_WORK(&line->task, line_timer_cb);
Jeff Dike165dc592006-01-06 00:18:57 -0800429
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700430 if (!line->sigio) {
Jeff Diked79a5802007-02-10 01:43:52 -0800431 chan_enable_winch(&line->chan_list, tty);
432 line->sigio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
Jeff Diked79a5802007-02-10 01:43:52 -0800435 chan_window_size(&line->chan_list, &tty->winsize.ws_row,
436 &tty->winsize.ws_col);
Jeff Diked79a5802007-02-10 01:43:52 -0800437out_unlock:
Al Virod8c215a2011-09-09 17:36:37 -0400438 mutex_unlock(&line->count_lock);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700439 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700442static void unregister_winch(struct tty_struct *tty);
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444void line_close(struct tty_struct *tty, struct file * filp)
445{
446 struct line *line = tty->driver_data;
447
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700448 /*
449 * If line_open fails (and tty->driver_data is never set),
Jeff Diked79a5802007-02-10 01:43:52 -0800450 * tty_open will call line_close. So just return in this case.
451 */
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700452 if (line == NULL)
Jeff Diked79a5802007-02-10 01:43:52 -0800453 return;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700454
455 /* We ignore the error anyway! */
456 flush_buffer(line);
457
Al Virod8c215a2011-09-09 17:36:37 -0400458 mutex_lock(&line->count_lock);
Al Virof71f9482011-09-14 16:21:25 -0700459 BUG_ON(!line->valid);
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700460
Al Virof71f9482011-09-14 16:21:25 -0700461 if (--line->count)
Jeff Diked79a5802007-02-10 01:43:52 -0800462 goto out_unlock;
463
Jeff Diked79a5802007-02-10 01:43:52 -0800464 line->tty = NULL;
465 tty->driver_data = NULL;
466
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700467 if (line->sigio) {
Jeff Diked79a5802007-02-10 01:43:52 -0800468 unregister_winch(tty);
469 line->sigio = 0;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700470 }
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700471
Jeff Diked79a5802007-02-10 01:43:52 -0800472out_unlock:
Al Virod8c215a2011-09-09 17:36:37 -0400473 mutex_unlock(&line->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
476void close_lines(struct line *lines, int nlines)
477{
478 int i;
479
480 for(i = 0; i < nlines; i++)
Jeff Dike165dc592006-01-06 00:18:57 -0800481 close_chan(&lines[i].chan_list, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Al Viro04292b22011-09-09 20:07:05 -0400484int setup_one_line(struct line *lines, int n, char *init,
485 const struct chan_opts *opts, char **error_out)
Jeff Diked79a5802007-02-10 01:43:52 -0800486{
487 struct line *line = &lines[n];
Al Virocfe6b7c2011-09-09 19:45:42 -0400488 struct tty_driver *driver = line->driver->driver;
Jeff Dikef28169d2007-02-10 01:43:53 -0800489 int err = -EINVAL;
Jeff Diked79a5802007-02-10 01:43:52 -0800490
Al Virod8c215a2011-09-09 17:36:37 -0400491 mutex_lock(&line->count_lock);
Jeff Diked79a5802007-02-10 01:43:52 -0800492
Al Virof71f9482011-09-14 16:21:25 -0700493 if (line->count) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800494 *error_out = "Device is already open";
Jeff Diked79a5802007-02-10 01:43:52 -0800495 goto out;
496 }
497
Al Viro31efceb2011-09-09 19:14:02 -0400498 if (!strcmp(init, "none")) {
499 if (line->valid) {
500 line->valid = 0;
501 kfree(line->init_str);
Al Virocfe6b7c2011-09-09 19:45:42 -0400502 tty_unregister_device(driver, n);
Al Viro31efceb2011-09-09 19:14:02 -0400503 parse_chan_pair(NULL, line, n, opts, error_out);
504 err = 0;
505 }
506 } else {
507 char *new = kstrdup(init, GFP_KERNEL);
508 if (!new) {
509 *error_out = "Failed to allocate memory";
510 return -ENOMEM;
511 }
Al Virocfe6b7c2011-09-09 19:45:42 -0400512 if (line->valid)
513 tty_unregister_device(driver, n);
Al Viro31efceb2011-09-09 19:14:02 -0400514 line->init_str = new;
Al Viro43574c12011-09-09 17:25:00 -0400515 line->valid = 1;
Al Viro31efceb2011-09-09 19:14:02 -0400516 err = parse_chan_pair(new, line, n, opts, error_out);
Al Virocfe6b7c2011-09-09 19:45:42 -0400517 if (!err) {
518 struct device *d = tty_register_device(driver, n, NULL);
519 if (IS_ERR(d)) {
520 *error_out = "Failed to register device";
521 err = PTR_ERR(d);
522 parse_chan_pair(NULL, line, n, opts, error_out);
523 }
524 }
Al Viro31efceb2011-09-09 19:14:02 -0400525 if (err) {
526 line->init_str = NULL;
527 line->valid = 0;
528 kfree(new);
529 }
Jeff Diked79a5802007-02-10 01:43:52 -0800530 }
531out:
Al Virod8c215a2011-09-09 17:36:37 -0400532 mutex_unlock(&line->count_lock);
Jeff Dikef28169d2007-02-10 01:43:53 -0800533 return err;
Jeff Diked79a5802007-02-10 01:43:52 -0800534}
535
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700536/*
537 * Common setup code for both startup command line and mconsole initialization.
Matt LaPlante4b3f6862006-10-03 22:21:02 +0200538 * @lines contains the array (of size @num) to modify;
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700539 * @init is the setup string;
Jeff Dikef28169d2007-02-10 01:43:53 -0800540 * @error_out is an error string in the case of failure;
Jeff Diked571cd12006-01-06 00:18:53 -0800541 */
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700542
Al Viro43574c12011-09-09 17:25:00 -0400543int line_setup(char **conf, unsigned int num, char **def,
544 char *init, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Al Viro43574c12011-09-09 17:25:00 -0400546 char *error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700548 if (*init == '=') {
549 /*
550 * We said con=/ssl= instead of con#=, so we are configuring all
551 * consoles at once.
552 */
Al Viro43574c12011-09-09 17:25:00 -0400553 *def = init + 1;
554 } else {
555 char *end;
556 unsigned n = simple_strtoul(init, &end, 0);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700557
Al Viro43574c12011-09-09 17:25:00 -0400558 if (*end != '=') {
559 error = "Couldn't parse device number";
560 goto out;
Jeff Dikef28169d2007-02-10 01:43:53 -0800561 }
Al Viro43574c12011-09-09 17:25:00 -0400562 if (n >= num) {
563 error = "Device number out of range";
564 goto out;
565 }
566 conf[n] = end + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Al Viro43574c12011-09-09 17:25:00 -0400568 return 0;
569
570out:
571 printk(KERN_ERR "Failed to set up %s with "
572 "configuration string \"%s\" : %s\n", name, init, error);
573 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Jeff Dike1f801712006-01-06 00:18:55 -0800576int line_config(struct line *lines, unsigned int num, char *str,
Jeff Dikef28169d2007-02-10 01:43:53 -0800577 const struct chan_opts *opts, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Al Virofe9a6b02011-09-08 20:44:06 -0400579 char *end;
Al Viro31efceb2011-09-09 19:14:02 -0400580 int n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700582 if (*str == '=') {
Jeff Dikef28169d2007-02-10 01:43:53 -0800583 *error_out = "Can't configure all devices from mconsole";
584 return -EINVAL;
Jeff Diked571cd12006-01-06 00:18:53 -0800585 }
586
Al Virofe9a6b02011-09-08 20:44:06 -0400587 n = simple_strtoul(str, &end, 0);
588 if (*end++ != '=') {
589 *error_out = "Couldn't parse device number";
590 return -EINVAL;
591 }
592 if (n >= num) {
593 *error_out = "Device number out of range";
594 return -EINVAL;
595 }
596
Al Viro31efceb2011-09-09 19:14:02 -0400597 return setup_one_line(lines, n, end, opts, error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700600int line_get_config(char *name, struct line *lines, unsigned int num, char *str,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 int size, char **error_out)
602{
603 struct line *line;
604 char *end;
605 int dev, n = 0;
606
607 dev = simple_strtoul(name, &end, 0);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700608 if ((*end != '\0') || (end == name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 *error_out = "line_get_config failed to parse device number";
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700610 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700613 if ((dev < 0) || (dev >= num)) {
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700614 *error_out = "device number out of range";
615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
618 line = &lines[dev];
619
Al Virod8c215a2011-09-09 17:36:37 -0400620 mutex_lock(&line->count_lock);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700621 if (!line->valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 CONFIG_CHUNK(str, size, n, "none", 1);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700623 else if (line->tty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 CONFIG_CHUNK(str, size, n, line->init_str, 1);
625 else n = chan_config_string(&line->chan_list, str, size, error_out);
Al Virod8c215a2011-09-09 17:36:37 -0400626 mutex_unlock(&line->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700628 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Jeff Dike29d56cf2005-06-25 14:55:25 -0700631int line_id(char **str, int *start_out, int *end_out)
632{
633 char *end;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700634 int n;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700635
636 n = simple_strtoul(*str, &end, 0);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700637 if ((*end != '\0') || (end == *str))
638 return -1;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700639
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700640 *str = end;
641 *start_out = n;
642 *end_out = n;
643 return n;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700644}
645
Jeff Dikef28169d2007-02-10 01:43:53 -0800646int line_remove(struct line *lines, unsigned int num, int n, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Al Viroda645f32011-09-08 20:34:52 -0400648 if (n >= num) {
649 *error_out = "Device number out of range";
650 return -EINVAL;
651 }
Al Viro31efceb2011-09-09 19:14:02 -0400652 return setup_one_line(lines, n, "none", NULL, error_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Al Virocfe6b7c2011-09-09 19:45:42 -0400655int register_lines(struct line_driver *line_driver,
656 const struct tty_operations *ops,
657 struct line *lines, int nlines)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 struct tty_driver *driver = alloc_tty_driver(nlines);
Al Virocfe6b7c2011-09-09 19:45:42 -0400660 int err;
Al Viro04292b22011-09-09 20:07:05 -0400661 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (!driver)
Al Virocfe6b7c2011-09-09 19:45:42 -0400664 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 driver->driver_name = line_driver->name;
667 driver->name = line_driver->device_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 driver->major = line_driver->major;
669 driver->minor_start = line_driver->minor_start;
670 driver->type = line_driver->type;
671 driver->subtype = line_driver->subtype;
Al Virocfe6b7c2011-09-09 19:45:42 -0400672 driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 driver->init_termios = tty_std_termios;
Al Viro04292b22011-09-09 20:07:05 -0400674
675 for (i = 0; i < nlines; i++) {
676 spin_lock_init(&lines[i].lock);
677 mutex_init(&lines[i].count_lock);
678 lines[i].driver = line_driver;
679 INIT_LIST_HEAD(&lines[i].chan_list);
680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 tty_set_operations(driver, ops);
682
Al Virocfe6b7c2011-09-09 19:45:42 -0400683 err = tty_register_driver(driver);
684 if (err) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700685 printk(KERN_ERR "register_lines : can't register %s driver\n",
686 line_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 put_tty_driver(driver);
Al Virocfe6b7c2011-09-09 19:45:42 -0400688 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
Al Virocfe6b7c2011-09-09 19:45:42 -0400691 line_driver->driver = driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 mconsole_register_dev(&line_driver->mc);
Al Virocfe6b7c2011-09-09 19:45:42 -0400693 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Jeff Dike90107722006-01-06 00:18:54 -0800696static DEFINE_SPINLOCK(winch_handler_lock);
697static LIST_HEAD(winch_handlers);
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699struct winch {
700 struct list_head list;
701 int fd;
702 int tty_fd;
703 int pid;
704 struct tty_struct *tty;
Jeff Dike42a359e2007-07-15 23:38:55 -0700705 unsigned long stack;
Al Viro7cf3cf22011-09-14 16:21:31 -0700706 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707};
708
Al Viro7cf3cf22011-09-14 16:21:31 -0700709static void __free_winch(struct work_struct *work)
Jeff Dike42a359e2007-07-15 23:38:55 -0700710{
Al Viro7cf3cf22011-09-14 16:21:31 -0700711 struct winch *winch = container_of(work, struct winch, work);
712 free_irq(WINCH_IRQ, winch);
Jeff Dike42a359e2007-07-15 23:38:55 -0700713
714 if (winch->pid != -1)
715 os_kill_process(winch->pid, 1);
Jeff Dike42a359e2007-07-15 23:38:55 -0700716 if (winch->stack != 0)
717 free_stack(winch->stack, 0);
Jeff Dike42a359e2007-07-15 23:38:55 -0700718 kfree(winch);
719}
720
Al Viro7cf3cf22011-09-14 16:21:31 -0700721static void free_winch(struct winch *winch)
722{
723 int fd = winch->fd;
724 winch->fd = -1;
725 if (fd != -1)
726 os_close_file(fd);
727 list_del(&winch->list);
728 __free_winch(&winch->work);
729}
730
Al Viro7bea96f2006-10-08 22:49:34 +0100731static irqreturn_t winch_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 struct winch *winch = data;
734 struct tty_struct *tty;
735 struct line *line;
Al Viro7cf3cf22011-09-14 16:21:31 -0700736 int fd = winch->fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 int err;
738 char c;
739
Al Viro7cf3cf22011-09-14 16:21:31 -0700740 if (fd != -1) {
741 err = generic_read(fd, &c, NULL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700742 if (err < 0) {
743 if (err != -EAGAIN) {
Al Viro7cf3cf22011-09-14 16:21:31 -0700744 winch->fd = -1;
745 list_del(&winch->list);
746 os_close_file(fd);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700747 printk(KERN_ERR "winch_interrupt : "
748 "read failed, errno = %d\n", -err);
749 printk(KERN_ERR "fd %d is losing SIGWINCH "
750 "support\n", winch->tty_fd);
Al Viro7cf3cf22011-09-14 16:21:31 -0700751 INIT_WORK(&winch->work, __free_winch);
752 schedule_work(&winch->work);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700753 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755 goto out;
756 }
757 }
Jeff Dike42a359e2007-07-15 23:38:55 -0700758 tty = winch->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (tty != NULL) {
760 line = tty->driver_data;
Jeff Dike438ee672008-02-04 22:31:19 -0800761 if (line != NULL) {
762 chan_window_size(&line->chan_list, &tty->winsize.ws_row,
763 &tty->winsize.ws_col);
764 kill_pgrp(tty->pgrp, SIGWINCH, 1);
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 out:
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700768 if (winch->fd != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 reactivate_fd(winch->fd, WINCH_IRQ);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700770 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Jeff Dike42a359e2007-07-15 23:38:55 -0700773void register_winch_irq(int fd, int tty_fd, int pid, struct tty_struct *tty,
774 unsigned long stack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 struct winch *winch;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 winch = kmalloc(sizeof(*winch), GFP_KERNEL);
779 if (winch == NULL) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700780 printk(KERN_ERR "register_winch_irq - kmalloc failed\n");
Jeff Dike42a359e2007-07-15 23:38:55 -0700781 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 *winch = ((struct winch) { .list = LIST_HEAD_INIT(winch->list),
785 .fd = fd,
786 .tty_fd = tty_fd,
787 .pid = pid,
Jeff Dike42a359e2007-07-15 23:38:55 -0700788 .tty = tty,
789 .stack = stack });
790
791 if (um_request_irq(WINCH_IRQ, fd, IRQ_READ, winch_interrupt,
Yong Zhangc0b79a92011-09-22 16:58:46 +0800792 IRQF_SHARED | IRQF_SAMPLE_RANDOM,
Jeff Dike42a359e2007-07-15 23:38:55 -0700793 "winch", winch) < 0) {
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700794 printk(KERN_ERR "register_winch_irq - failed to register "
795 "IRQ\n");
Jeff Dike42a359e2007-07-15 23:38:55 -0700796 goto out_free;
797 }
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700798
799 spin_lock(&winch_handler_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 list_add(&winch->list, &winch_handlers);
Paolo 'Blaisorblade' Giarrusso605a69a2005-07-07 17:56:52 -0700801 spin_unlock(&winch_handler_lock);
802
Jeff Dike42a359e2007-07-15 23:38:55 -0700803 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Jeff Dike42a359e2007-07-15 23:38:55 -0700805 out_free:
Jeff Dikee464bf22006-01-06 00:19:01 -0800806 kfree(winch);
Jeff Dike42a359e2007-07-15 23:38:55 -0700807 cleanup:
808 os_kill_process(pid, 1);
809 os_close_file(fd);
810 if (stack != 0)
811 free_stack(stack, 0);
Jeff Dikecd2ee4a2005-05-05 16:15:32 -0700812}
813
Jeff Dikee464bf22006-01-06 00:19:01 -0800814static void unregister_winch(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Will Newton48a0b742011-01-12 16:59:26 -0800816 struct list_head *ele, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 struct winch *winch;
818
Jeff Dikee464bf22006-01-06 00:19:01 -0800819 spin_lock(&winch_handler_lock);
820
Will Newton48a0b742011-01-12 16:59:26 -0800821 list_for_each_safe(ele, next, &winch_handlers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 winch = list_entry(ele, struct winch, list);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700823 if (winch->tty == tty) {
Al Viro7cf3cf22011-09-14 16:21:31 -0700824 free_winch(winch);
Jeff Dikee464bf22006-01-06 00:19:01 -0800825 break;
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700826 }
827 }
Jeff Dikee464bf22006-01-06 00:19:01 -0800828 spin_unlock(&winch_handler_lock);
829}
830
831static void winch_cleanup(void)
832{
833 struct list_head *ele, *next;
834 struct winch *winch;
835
836 spin_lock(&winch_handler_lock);
837
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700838 list_for_each_safe(ele, next, &winch_handlers) {
Jeff Dikee464bf22006-01-06 00:19:01 -0800839 winch = list_entry(ele, struct winch, list);
Al Viro7cf3cf22011-09-14 16:21:31 -0700840 free_winch(winch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
Jeff Dikee464bf22006-01-06 00:19:01 -0800842
843 spin_unlock(&winch_handler_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845__uml_exitcall(winch_cleanup);
846
847char *add_xterm_umid(char *base)
848{
849 char *umid, *title;
850 int len;
851
Jeff Dike7eebe8a2006-01-06 00:19:01 -0800852 umid = get_umid();
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700853 if (*umid == '\0')
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700854 return base;
Jeff Dike165dc592006-01-06 00:18:57 -0800855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 len = strlen(base) + strlen(" ()") + strlen(umid) + 1;
857 title = kmalloc(len, GFP_KERNEL);
Jeff Dike2f8a2dc2007-10-16 01:26:43 -0700858 if (title == NULL) {
859 printk(KERN_ERR "Failed to allocate buffer for xterm title\n");
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700860 return base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
863 snprintf(title, len, "%s (%s)", base, umid);
Paolo 'Blaisorblade' Giarrussob97b77c2005-05-01 08:58:56 -0700864 return title;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}