blob: 330543b3129b5a7ac613e3566456eaf3ef50040c [file] [log] [blame]
Jeff Dike67608e02007-02-10 01:44:02 -08001/*
Jeff Dikee99525f2007-10-16 01:26:41 -07002 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Jeff Dikee99525f2007-10-16 01:26:41 -07006#include "linux/completion.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "linux/interrupt.h"
Jeff Dikee99525f2007-10-16 01:26:41 -07008#include "linux/list.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include "asm/atomic.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include "init.h"
Jeff Dikee99525f2007-10-16 01:26:41 -070011#include "irq_kern.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "os.h"
Jeff Dikee99525f2007-10-16 01:26:41 -070013#include "port.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15struct port_list {
16 struct list_head list;
17 atomic_t wait_count;
18 int has_connection;
19 struct completion done;
20 int port;
21 int fd;
22 spinlock_t lock;
23 struct list_head pending;
24 struct list_head connections;
25};
26
27struct port_dev {
28 struct port_list *port;
29 int helper_pid;
30 int telnetd_pid;
31};
32
33struct connection {
34 struct list_head list;
35 int fd;
36 int helper_pid;
37 int socket[2];
38 int telnetd_pid;
39 struct port_list *port;
40};
41
Al Viro7bea96f2006-10-08 22:49:34 +010042static irqreturn_t pipe_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 struct connection *conn = data;
45 int fd;
46
47 fd = os_rcv_fd(conn->socket[0], &conn->helper_pid);
Jeff Dikee99525f2007-10-16 01:26:41 -070048 if (fd < 0) {
49 if (fd == -EAGAIN)
Jeff Dike67608e02007-02-10 01:44:02 -080050 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Jeff Dike67608e02007-02-10 01:44:02 -080052 printk(KERN_ERR "pipe_interrupt : os_rcv_fd returned %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 -fd);
54 os_close_file(conn->fd);
55 }
56
57 list_del(&conn->list);
58
59 conn->fd = fd;
60 list_add(&conn->list, &conn->port->connections);
61
62 complete(&conn->port->done);
Jeff Dike67608e02007-02-10 01:44:02 -080063 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66#define NO_WAITER_MSG \
67 "****\n" \
68 "There are currently no UML consoles waiting for port connections.\n" \
69 "Either disconnect from one to make it available or activate some more\n" \
70 "by enabling more consoles in the UML /etc/inittab.\n" \
71 "****\n"
72
73static int port_accept(struct port_list *port)
74{
75 struct connection *conn;
Jeff Dikee99525f2007-10-16 01:26:41 -070076 int fd, socket[2], pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 fd = port_connection(port->fd, socket, &pid);
Jeff Dikee99525f2007-10-16 01:26:41 -070079 if (fd < 0) {
80 if (fd != -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 printk(KERN_ERR "port_accept : port_connection "
82 "returned %d\n", -fd);
83 goto out;
84 }
85
86 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
Jeff Dikee99525f2007-10-16 01:26:41 -070087 if (conn == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 printk(KERN_ERR "port_accept : failed to allocate "
89 "connection\n");
90 goto out_close;
91 }
Jeff Dike67608e02007-02-10 01:44:02 -080092 *conn = ((struct connection)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 { .list = LIST_HEAD_INIT(conn->list),
94 .fd = fd,
95 .socket = { socket[0], socket[1] },
96 .telnetd_pid = pid,
97 .port = port });
98
Jeff Dikee99525f2007-10-16 01:26:41 -070099 if (um_request_irq(TELNETD_IRQ, socket[0], IRQ_READ, pipe_interrupt,
Thomas Gleixnerbd6aa652006-07-01 19:29:27 -0700100 IRQF_DISABLED | IRQF_SHARED | IRQF_SAMPLE_RANDOM,
Jeff Dikee99525f2007-10-16 01:26:41 -0700101 "telnetd", conn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 printk(KERN_ERR "port_accept : failed to get IRQ for "
103 "telnetd\n");
104 goto out_free;
105 }
106
Jeff Dikee99525f2007-10-16 01:26:41 -0700107 if (atomic_read(&port->wait_count) == 0) {
Jeff Dikea6ea4cc2007-05-06 14:51:43 -0700108 os_write_file(fd, NO_WAITER_MSG, sizeof(NO_WAITER_MSG));
Jeff Dikee99525f2007-10-16 01:26:41 -0700109 printk(KERN_ERR "No one waiting for port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 list_add(&conn->list, &port->pending);
Jeff Dike67608e02007-02-10 01:44:02 -0800112 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 out_free:
115 kfree(conn);
116 out_close:
117 os_close_file(fd);
Jeff Dikee99525f2007-10-16 01:26:41 -0700118 os_kill_process(pid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 out:
Jeff Dikee99525f2007-10-16 01:26:41 -0700120 return 0;
Jeff Dike67608e02007-02-10 01:44:02 -0800121}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Jeff Diked832fc62007-02-10 01:44:01 -0800123static DECLARE_MUTEX(ports_sem);
Jeff Dikec59bce62007-02-10 01:44:04 -0800124static LIST_HEAD(ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Jeff Dikee99525f2007-10-16 01:26:41 -0700126static void port_work_proc(struct work_struct *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 struct port_list *port;
129 struct list_head *ele;
130 unsigned long flags;
131
132 local_irq_save(flags);
Jeff Dikee99525f2007-10-16 01:26:41 -0700133 list_for_each(ele, &ports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 port = list_entry(ele, struct port_list, list);
Jeff Dikee99525f2007-10-16 01:26:41 -0700135 if (!port->has_connection)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 continue;
Jeff Dikee99525f2007-10-16 01:26:41 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 reactivate_fd(port->fd, ACCEPT_IRQ);
Jeff Dikee99525f2007-10-16 01:26:41 -0700139 while (port_accept(port))
140 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 port->has_connection = 0;
142 }
143 local_irq_restore(flags);
144}
145
David Howells6d5aefb2006-12-05 19:36:26 +0000146DECLARE_WORK(port_work, port_work_proc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Al Viro7bea96f2006-10-08 22:49:34 +0100148static irqreturn_t port_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct port_list *port = data;
151
152 port->has_connection = 1;
153 schedule_work(&port_work);
Jeff Dike67608e02007-02-10 01:44:02 -0800154 return IRQ_HANDLED;
155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157void *port_data(int port_num)
158{
159 struct list_head *ele;
160 struct port_list *port;
161 struct port_dev *dev = NULL;
162 int fd;
163
164 down(&ports_sem);
Jeff Dikee99525f2007-10-16 01:26:41 -0700165 list_for_each(ele, &ports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 port = list_entry(ele, struct port_list, list);
Jeff Dikee99525f2007-10-16 01:26:41 -0700167 if (port->port == port_num)
168 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170 port = kmalloc(sizeof(struct port_list), GFP_KERNEL);
Jeff Dikee99525f2007-10-16 01:26:41 -0700171 if (port == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 printk(KERN_ERR "Allocation of port list failed\n");
173 goto out;
174 }
175
176 fd = port_listen_fd(port_num);
Jeff Dikee99525f2007-10-16 01:26:41 -0700177 if (fd < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 printk(KERN_ERR "binding to port %d failed, errno = %d\n",
179 port_num, -fd);
180 goto out_free;
181 }
Jeff Dikee99525f2007-10-16 01:26:41 -0700182
183 if (um_request_irq(ACCEPT_IRQ, fd, IRQ_READ, port_interrupt,
Jeff Dike67608e02007-02-10 01:44:02 -0800184 IRQF_DISABLED | IRQF_SHARED | IRQF_SAMPLE_RANDOM,
Jeff Dikee99525f2007-10-16 01:26:41 -0700185 "port", port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 printk(KERN_ERR "Failed to get IRQ for port %d\n", port_num);
187 goto out_close;
188 }
189
Jeff Dike67608e02007-02-10 01:44:02 -0800190 *port = ((struct port_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 { .list = LIST_HEAD_INIT(port->list),
192 .wait_count = ATOMIC_INIT(0),
193 .has_connection = 0,
194 .port = port_num,
195 .fd = fd,
196 .pending = LIST_HEAD_INIT(port->pending),
197 .connections = LIST_HEAD_INIT(port->connections) });
198 spin_lock_init(&port->lock);
199 init_completion(&port->done);
200 list_add(&port->list, &ports);
201
202 found:
203 dev = kmalloc(sizeof(struct port_dev), GFP_KERNEL);
Jeff Dikee99525f2007-10-16 01:26:41 -0700204 if (dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 printk(KERN_ERR "Allocation of port device entry failed\n");
206 goto out;
207 }
208
209 *dev = ((struct port_dev) { .port = port,
210 .helper_pid = -1,
211 .telnetd_pid = -1 });
212 goto out;
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 out_close:
215 os_close_file(fd);
Jeff Dike79f66232007-10-16 01:26:40 -0700216 out_free:
217 kfree(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 out:
219 up(&ports_sem);
Jeff Dike67608e02007-02-10 01:44:02 -0800220 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
223int port_wait(void *data)
224{
225 struct port_dev *dev = data;
226 struct connection *conn;
227 struct port_list *port = dev->port;
228 int fd;
229
Jeff Dike67608e02007-02-10 01:44:02 -0800230 atomic_inc(&port->wait_count);
Jeff Dikee99525f2007-10-16 01:26:41 -0700231 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 fd = -ERESTARTSYS;
Jeff Dikee99525f2007-10-16 01:26:41 -0700233 if (wait_for_completion_interruptible(&port->done))
Jeff Dike67608e02007-02-10 01:44:02 -0800234 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 spin_lock(&port->lock);
237
Jeff Dike67608e02007-02-10 01:44:02 -0800238 conn = list_entry(port->connections.next, struct connection,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 list);
240 list_del(&conn->list);
241 spin_unlock(&port->lock);
242
243 os_shutdown_socket(conn->socket[0], 1, 1);
244 os_close_file(conn->socket[0]);
245 os_shutdown_socket(conn->socket[1], 1, 1);
Jeff Dike67608e02007-02-10 01:44:02 -0800246 os_close_file(conn->socket[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 /* This is done here because freeing an IRQ can't be done
249 * within the IRQ handler. So, pipe_interrupt always ups
250 * the semaphore regardless of whether it got a successful
Jeff Dike67608e02007-02-10 01:44:02 -0800251 * connection. Then we loop here throwing out failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 * connections until a good one is found.
253 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 free_irq(TELNETD_IRQ, conn);
255
Jeff Dikee99525f2007-10-16 01:26:41 -0700256 if (conn->fd >= 0)
257 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 os_close_file(conn->fd);
259 kfree(conn);
260 }
261
262 fd = conn->fd;
263 dev->helper_pid = conn->helper_pid;
264 dev->telnetd_pid = conn->telnetd_pid;
265 kfree(conn);
266 out:
267 atomic_dec(&port->wait_count);
268 return fd;
269}
270
271void port_remove_dev(void *d)
272{
273 struct port_dev *dev = d;
274
Jeff Dikee99525f2007-10-16 01:26:41 -0700275 if (dev->helper_pid != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 os_kill_process(dev->helper_pid, 0);
Jeff Dikee99525f2007-10-16 01:26:41 -0700277 if (dev->telnetd_pid != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 os_kill_process(dev->telnetd_pid, 1);
279 dev->helper_pid = -1;
280 dev->telnetd_pid = -1;
281}
282
283void port_kern_free(void *d)
284{
285 struct port_dev *dev = d;
286
287 port_remove_dev(dev);
288 kfree(dev);
289}
290
291static void free_port(void)
292{
293 struct list_head *ele;
294 struct port_list *port;
295
Jeff Dikee99525f2007-10-16 01:26:41 -0700296 list_for_each(ele, &ports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 port = list_entry(ele, struct port_list, list);
298 free_irq_by_fd(port->fd);
299 os_close_file(port->fd);
300 }
301}
302
303__uml_exitcall(free_port);