blob: 4ebc8a34738f7d43a6020c8a05e604d8cad7d8e5 [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"
Daniel Walker2aa9c5d2008-02-04 22:31:27 -08009#include "linux/mutex.h"
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040010#include "linux/workqueue.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include "asm/atomic.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "init.h"
Jeff Dikee99525f2007-10-16 01:26:41 -070013#include "irq_kern.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "os.h"
Jeff Dikee99525f2007-10-16 01:26:41 -070015#include "port.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17struct port_list {
18 struct list_head list;
19 atomic_t wait_count;
20 int has_connection;
21 struct completion done;
22 int port;
23 int fd;
24 spinlock_t lock;
25 struct list_head pending;
26 struct list_head connections;
27};
28
29struct port_dev {
30 struct port_list *port;
31 int helper_pid;
32 int telnetd_pid;
33};
34
35struct connection {
36 struct list_head list;
37 int fd;
38 int helper_pid;
39 int socket[2];
40 int telnetd_pid;
41 struct port_list *port;
42};
43
Al Viro7bea96f2006-10-08 22:49:34 +010044static irqreturn_t pipe_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 struct connection *conn = data;
47 int fd;
48
49 fd = os_rcv_fd(conn->socket[0], &conn->helper_pid);
Jeff Dikee99525f2007-10-16 01:26:41 -070050 if (fd < 0) {
51 if (fd == -EAGAIN)
Jeff Dike67608e02007-02-10 01:44:02 -080052 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Jeff Dike67608e02007-02-10 01:44:02 -080054 printk(KERN_ERR "pipe_interrupt : os_rcv_fd returned %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 -fd);
56 os_close_file(conn->fd);
57 }
58
59 list_del(&conn->list);
60
61 conn->fd = fd;
62 list_add(&conn->list, &conn->port->connections);
63
64 complete(&conn->port->done);
Jeff Dike67608e02007-02-10 01:44:02 -080065 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68#define NO_WAITER_MSG \
69 "****\n" \
70 "There are currently no UML consoles waiting for port connections.\n" \
71 "Either disconnect from one to make it available or activate some more\n" \
72 "by enabling more consoles in the UML /etc/inittab.\n" \
73 "****\n"
74
75static int port_accept(struct port_list *port)
76{
77 struct connection *conn;
Jeff Dikee99525f2007-10-16 01:26:41 -070078 int fd, socket[2], pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 fd = port_connection(port->fd, socket, &pid);
Jeff Dikee99525f2007-10-16 01:26:41 -070081 if (fd < 0) {
82 if (fd != -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 printk(KERN_ERR "port_accept : port_connection "
84 "returned %d\n", -fd);
85 goto out;
86 }
87
88 conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
Jeff Dikee99525f2007-10-16 01:26:41 -070089 if (conn == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 printk(KERN_ERR "port_accept : failed to allocate "
91 "connection\n");
92 goto out_close;
93 }
Jeff Dike67608e02007-02-10 01:44:02 -080094 *conn = ((struct connection)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 { .list = LIST_HEAD_INIT(conn->list),
96 .fd = fd,
97 .socket = { socket[0], socket[1] },
98 .telnetd_pid = pid,
99 .port = port });
100
Jeff Dikee99525f2007-10-16 01:26:41 -0700101 if (um_request_irq(TELNETD_IRQ, socket[0], IRQ_READ, pipe_interrupt,
Thomas Gleixnerbd6aa652006-07-01 19:29:27 -0700102 IRQF_DISABLED | IRQF_SHARED | IRQF_SAMPLE_RANDOM,
Jeff Dikee99525f2007-10-16 01:26:41 -0700103 "telnetd", conn)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 printk(KERN_ERR "port_accept : failed to get IRQ for "
105 "telnetd\n");
106 goto out_free;
107 }
108
Jeff Dikee99525f2007-10-16 01:26:41 -0700109 if (atomic_read(&port->wait_count) == 0) {
Jeff Dikea6ea4cc2007-05-06 14:51:43 -0700110 os_write_file(fd, NO_WAITER_MSG, sizeof(NO_WAITER_MSG));
Jeff Dikee99525f2007-10-16 01:26:41 -0700111 printk(KERN_ERR "No one waiting for port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113 list_add(&conn->list, &port->pending);
Jeff Dike67608e02007-02-10 01:44:02 -0800114 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 out_free:
117 kfree(conn);
118 out_close:
119 os_close_file(fd);
Jeff Dikee99525f2007-10-16 01:26:41 -0700120 os_kill_process(pid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 out:
Jeff Dikee99525f2007-10-16 01:26:41 -0700122 return 0;
Jeff Dike67608e02007-02-10 01:44:02 -0800123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Daniel Walker2aa9c5d2008-02-04 22:31:27 -0800125static DEFINE_MUTEX(ports_mutex);
Jeff Dikec59bce62007-02-10 01:44:04 -0800126static LIST_HEAD(ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Jeff Dikee99525f2007-10-16 01:26:41 -0700128static void port_work_proc(struct work_struct *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct port_list *port;
131 struct list_head *ele;
132 unsigned long flags;
133
134 local_irq_save(flags);
Jeff Dikee99525f2007-10-16 01:26:41 -0700135 list_for_each(ele, &ports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 port = list_entry(ele, struct port_list, list);
Jeff Dikee99525f2007-10-16 01:26:41 -0700137 if (!port->has_connection)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 continue;
Jeff Dikee99525f2007-10-16 01:26:41 -0700139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 reactivate_fd(port->fd, ACCEPT_IRQ);
Jeff Dikee99525f2007-10-16 01:26:41 -0700141 while (port_accept(port))
142 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 port->has_connection = 0;
144 }
145 local_irq_restore(flags);
146}
147
David Howells6d5aefb2006-12-05 19:36:26 +0000148DECLARE_WORK(port_work, port_work_proc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Al Viro7bea96f2006-10-08 22:49:34 +0100150static irqreturn_t port_interrupt(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct port_list *port = data;
153
154 port->has_connection = 1;
155 schedule_work(&port_work);
Jeff Dike67608e02007-02-10 01:44:02 -0800156 return IRQ_HANDLED;
157}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159void *port_data(int port_num)
160{
161 struct list_head *ele;
162 struct port_list *port;
163 struct port_dev *dev = NULL;
164 int fd;
165
Daniel Walker2aa9c5d2008-02-04 22:31:27 -0800166 mutex_lock(&ports_mutex);
Jeff Dikee99525f2007-10-16 01:26:41 -0700167 list_for_each(ele, &ports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 port = list_entry(ele, struct port_list, list);
Jeff Dikee99525f2007-10-16 01:26:41 -0700169 if (port->port == port_num)
170 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172 port = kmalloc(sizeof(struct port_list), GFP_KERNEL);
Jeff Dikee99525f2007-10-16 01:26:41 -0700173 if (port == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 printk(KERN_ERR "Allocation of port list failed\n");
175 goto out;
176 }
177
178 fd = port_listen_fd(port_num);
Jeff Dikee99525f2007-10-16 01:26:41 -0700179 if (fd < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 printk(KERN_ERR "binding to port %d failed, errno = %d\n",
181 port_num, -fd);
182 goto out_free;
183 }
Jeff Dikee99525f2007-10-16 01:26:41 -0700184
185 if (um_request_irq(ACCEPT_IRQ, fd, IRQ_READ, port_interrupt,
Jeff Dike67608e02007-02-10 01:44:02 -0800186 IRQF_DISABLED | IRQF_SHARED | IRQF_SAMPLE_RANDOM,
Jeff Dikee99525f2007-10-16 01:26:41 -0700187 "port", port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 printk(KERN_ERR "Failed to get IRQ for port %d\n", port_num);
189 goto out_close;
190 }
191
Jeff Dike67608e02007-02-10 01:44:02 -0800192 *port = ((struct port_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 { .list = LIST_HEAD_INIT(port->list),
194 .wait_count = ATOMIC_INIT(0),
195 .has_connection = 0,
196 .port = port_num,
197 .fd = fd,
198 .pending = LIST_HEAD_INIT(port->pending),
199 .connections = LIST_HEAD_INIT(port->connections) });
200 spin_lock_init(&port->lock);
201 init_completion(&port->done);
202 list_add(&port->list, &ports);
203
204 found:
205 dev = kmalloc(sizeof(struct port_dev), GFP_KERNEL);
Jeff Dikee99525f2007-10-16 01:26:41 -0700206 if (dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 printk(KERN_ERR "Allocation of port device entry failed\n");
208 goto out;
209 }
210
211 *dev = ((struct port_dev) { .port = port,
212 .helper_pid = -1,
213 .telnetd_pid = -1 });
214 goto out;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 out_close:
217 os_close_file(fd);
Jeff Dike79f66232007-10-16 01:26:40 -0700218 out_free:
219 kfree(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 out:
Daniel Walker2aa9c5d2008-02-04 22:31:27 -0800221 mutex_unlock(&ports_mutex);
Jeff Dike67608e02007-02-10 01:44:02 -0800222 return dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225int port_wait(void *data)
226{
227 struct port_dev *dev = data;
228 struct connection *conn;
229 struct port_list *port = dev->port;
230 int fd;
231
Jeff Dike67608e02007-02-10 01:44:02 -0800232 atomic_inc(&port->wait_count);
Jeff Dikee99525f2007-10-16 01:26:41 -0700233 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 fd = -ERESTARTSYS;
Jeff Dikee99525f2007-10-16 01:26:41 -0700235 if (wait_for_completion_interruptible(&port->done))
Jeff Dike67608e02007-02-10 01:44:02 -0800236 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 spin_lock(&port->lock);
239
Jeff Dike67608e02007-02-10 01:44:02 -0800240 conn = list_entry(port->connections.next, struct connection,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 list);
242 list_del(&conn->list);
243 spin_unlock(&port->lock);
244
245 os_shutdown_socket(conn->socket[0], 1, 1);
246 os_close_file(conn->socket[0]);
247 os_shutdown_socket(conn->socket[1], 1, 1);
Jeff Dike67608e02007-02-10 01:44:02 -0800248 os_close_file(conn->socket[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 /* This is done here because freeing an IRQ can't be done
251 * within the IRQ handler. So, pipe_interrupt always ups
252 * the semaphore regardless of whether it got a successful
Jeff Dike67608e02007-02-10 01:44:02 -0800253 * connection. Then we loop here throwing out failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 * connections until a good one is found.
255 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 free_irq(TELNETD_IRQ, conn);
257
Jeff Dikee99525f2007-10-16 01:26:41 -0700258 if (conn->fd >= 0)
259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 os_close_file(conn->fd);
261 kfree(conn);
262 }
263
264 fd = conn->fd;
265 dev->helper_pid = conn->helper_pid;
266 dev->telnetd_pid = conn->telnetd_pid;
267 kfree(conn);
268 out:
269 atomic_dec(&port->wait_count);
270 return fd;
271}
272
273void port_remove_dev(void *d)
274{
275 struct port_dev *dev = d;
276
Jeff Dikee99525f2007-10-16 01:26:41 -0700277 if (dev->helper_pid != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 os_kill_process(dev->helper_pid, 0);
Jeff Dikee99525f2007-10-16 01:26:41 -0700279 if (dev->telnetd_pid != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 os_kill_process(dev->telnetd_pid, 1);
281 dev->helper_pid = -1;
282 dev->telnetd_pid = -1;
283}
284
285void port_kern_free(void *d)
286{
287 struct port_dev *dev = d;
288
289 port_remove_dev(dev);
290 kfree(dev);
291}
292
293static void free_port(void)
294{
295 struct list_head *ele;
296 struct port_list *port;
297
Jeff Dikee99525f2007-10-16 01:26:41 -0700298 list_for_each(ele, &ports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 port = list_entry(ele, struct port_list, list);
300 free_irq_by_fd(port->fd);
301 os_close_file(port->fd);
302 }
303}
304
305__uml_exitcall(free_port);