1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com)
6 #include <linux/completion.h>
7 #include <linux/interrupt.h>
8 #include <linux/list.h>
9 #include <linux/mutex.h>
10 #include <linux/slab.h>
11 #include <linux/workqueue.h>
12 #include <asm/atomic.h>
19 struct list_head list
;
22 struct completion done
;
26 struct list_head pending
;
27 struct list_head connections
;
31 struct port_list
*port
;
37 struct list_head list
;
42 struct port_list
*port
;
45 static irqreturn_t
pipe_interrupt(int irq
, void *data
)
47 struct connection
*conn
= data
;
50 fd
= os_rcv_fd(conn
->socket
[0], &conn
->helper_pid
);
55 printk(KERN_ERR
"pipe_interrupt : os_rcv_fd returned %d\n",
57 os_close_file(conn
->fd
);
60 list_del(&conn
->list
);
63 list_add(&conn
->list
, &conn
->port
->connections
);
65 complete(&conn
->port
->done
);
69 #define NO_WAITER_MSG \
71 "There are currently no UML consoles waiting for port connections.\n" \
72 "Either disconnect from one to make it available or activate some more\n" \
73 "by enabling more consoles in the UML /etc/inittab.\n" \
76 static int port_accept(struct port_list
*port
)
78 struct connection
*conn
;
79 int fd
, socket
[2], pid
;
81 fd
= port_connection(port
->fd
, socket
, &pid
);
84 printk(KERN_ERR
"port_accept : port_connection "
85 "returned %d\n", -fd
);
89 conn
= kmalloc(sizeof(*conn
), GFP_ATOMIC
);
91 printk(KERN_ERR
"port_accept : failed to allocate "
95 *conn
= ((struct connection
)
96 { .list
= LIST_HEAD_INIT(conn
->list
),
98 .socket
= { socket
[0], socket
[1] },
102 if (um_request_irq(TELNETD_IRQ
, socket
[0], IRQ_READ
, pipe_interrupt
,
103 IRQF_SHARED
, "telnetd", conn
)) {
104 printk(KERN_ERR
"port_accept : failed to get IRQ for "
109 if (atomic_read(&port
->wait_count
) == 0) {
110 os_write_file(fd
, NO_WAITER_MSG
, sizeof(NO_WAITER_MSG
));
111 printk(KERN_ERR
"No one waiting for port\n");
113 list_add(&conn
->list
, &port
->pending
);
120 os_kill_process(pid
, 1);
125 static DEFINE_MUTEX(ports_mutex
);
126 static LIST_HEAD(ports
);
128 static void port_work_proc(struct work_struct
*unused
)
130 struct port_list
*port
;
131 struct list_head
*ele
;
134 local_irq_save(flags
);
135 list_for_each(ele
, &ports
) {
136 port
= list_entry(ele
, struct port_list
, list
);
137 if (!port
->has_connection
)
140 while (port_accept(port
))
142 port
->has_connection
= 0;
144 local_irq_restore(flags
);
147 DECLARE_WORK(port_work
, port_work_proc
);
149 static irqreturn_t
port_interrupt(int irq
, void *data
)
151 struct port_list
*port
= data
;
153 port
->has_connection
= 1;
154 schedule_work(&port_work
);
158 void *port_data(int port_num
)
160 struct list_head
*ele
;
161 struct port_list
*port
;
162 struct port_dev
*dev
= NULL
;
165 mutex_lock(&ports_mutex
);
166 list_for_each(ele
, &ports
) {
167 port
= list_entry(ele
, struct port_list
, list
);
168 if (port
->port
== port_num
)
171 port
= kmalloc(sizeof(struct port_list
), GFP_KERNEL
);
173 printk(KERN_ERR
"Allocation of port list failed\n");
177 fd
= port_listen_fd(port_num
);
179 printk(KERN_ERR
"binding to port %d failed, errno = %d\n",
184 if (um_request_irq(ACCEPT_IRQ
, fd
, IRQ_READ
, port_interrupt
,
185 IRQF_SHARED
, "port", port
)) {
186 printk(KERN_ERR
"Failed to get IRQ for port %d\n", port_num
);
190 *port
= ((struct port_list
)
191 { .list
= LIST_HEAD_INIT(port
->list
),
192 .wait_count
= ATOMIC_INIT(0),
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
);
203 dev
= kmalloc(sizeof(struct port_dev
), GFP_KERNEL
);
205 printk(KERN_ERR
"Allocation of port device entry failed\n");
209 *dev
= ((struct port_dev
) { .port
= port
,
211 .telnetd_pid
= -1 });
219 mutex_unlock(&ports_mutex
);
223 int port_wait(void *data
)
225 struct port_dev
*dev
= data
;
226 struct connection
*conn
;
227 struct port_list
*port
= dev
->port
;
230 atomic_inc(&port
->wait_count
);
233 if (wait_for_completion_interruptible(&port
->done
))
236 spin_lock(&port
->lock
);
238 conn
= list_entry(port
->connections
.next
, struct connection
,
240 list_del(&conn
->list
);
241 spin_unlock(&port
->lock
);
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);
246 os_close_file(conn
->socket
[1]);
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
251 * connection. Then we loop here throwing out failed
252 * connections until a good one is found.
254 um_free_irq(TELNETD_IRQ
, conn
);
258 os_close_file(conn
->fd
);
263 dev
->helper_pid
= conn
->helper_pid
;
264 dev
->telnetd_pid
= conn
->telnetd_pid
;
267 atomic_dec(&port
->wait_count
);
271 void port_remove_dev(void *d
)
273 struct port_dev
*dev
= d
;
275 if (dev
->helper_pid
!= -1)
276 os_kill_process(dev
->helper_pid
, 0);
277 if (dev
->telnetd_pid
!= -1)
278 os_kill_process(dev
->telnetd_pid
, 1);
279 dev
->helper_pid
= -1;
280 dev
->telnetd_pid
= -1;
283 void port_kern_free(void *d
)
285 struct port_dev
*dev
= d
;
287 port_remove_dev(dev
);
291 static void free_port(void)
293 struct list_head
*ele
;
294 struct port_list
*port
;
296 list_for_each(ele
, &ports
) {
297 port
= list_entry(ele
, struct port_list
, list
);
298 free_irq_by_fd(port
->fd
);
299 os_close_file(port
->fd
);
303 __uml_exitcall(free_port
);