Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com)
 
  4 */
  5
  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>
 13#include <init.h>
 14#include <irq_kern.h>
 15#include <os.h>
 16#include "port.h"
 17
 18struct port_list {
 19	struct list_head list;
 20	atomic_t wait_count;
 21	int has_connection;
 22	struct completion done;
 23	int port;
 24	int fd;
 25	spinlock_t lock;
 26	struct list_head pending;
 27	struct list_head connections;
 28};
 29
 30struct port_dev {
 31	struct port_list *port;
 32	int helper_pid;
 33	int telnetd_pid;
 34};
 35
 36struct connection {
 37	struct list_head list;
 38	int fd;
 39	int helper_pid;
 40	int socket[2];
 41	int telnetd_pid;
 42	struct port_list *port;
 43};
 44
 45static irqreturn_t pipe_interrupt(int irq, void *data)
 46{
 47	struct connection *conn = data;
 48	int n_fds = 1, fd = -1;
 49	ssize_t ret;
 50
 51	ret = os_rcv_fd_msg(conn->socket[0], &fd, n_fds, &conn->helper_pid,
 52			    sizeof(conn->helper_pid));
 53	if (ret != sizeof(conn->helper_pid)) {
 54		if (ret == -EAGAIN)
 55			return IRQ_NONE;
 56
 57		printk(KERN_ERR "pipe_interrupt : os_rcv_fd_msg returned %zd\n",
 58		       ret);
 59		os_close_file(conn->fd);
 60	}
 61
 62	list_del(&conn->list);
 63
 64	conn->fd = fd;
 65	list_add(&conn->list, &conn->port->connections);
 66
 67	complete(&conn->port->done);
 68	return IRQ_HANDLED;
 69}
 70
 71#define NO_WAITER_MSG \
 72    "****\n" \
 73    "There are currently no UML consoles waiting for port connections.\n" \
 74    "Either disconnect from one to make it available or activate some more\n" \
 75    "by enabling more consoles in the UML /etc/inittab.\n" \
 76    "****\n"
 77
 78static int port_accept(struct port_list *port)
 79{
 80	struct connection *conn;
 81	int fd, socket[2], pid;
 82
 83	fd = port_connection(port->fd, socket, &pid);
 84	if (fd < 0) {
 85		if (fd != -EAGAIN)
 86			printk(KERN_ERR "port_accept : port_connection "
 87			       "returned %d\n", -fd);
 88		goto out;
 89	}
 90
 91	conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
 92	if (conn == NULL) {
 93		printk(KERN_ERR "port_accept : failed to allocate "
 94		       "connection\n");
 95		goto out_close;
 96	}
 97	*conn = ((struct connection)
 98		{ .list 	= LIST_HEAD_INIT(conn->list),
 99		  .fd 		= fd,
100		  .socket  	= { socket[0], socket[1] },
101		  .telnetd_pid 	= pid,
102		  .port 	= port });
103
104	if (um_request_irq(TELNETD_IRQ, socket[0], IRQ_READ, pipe_interrupt,
105			  IRQF_SHARED, "telnetd", conn) < 0) {
106		printk(KERN_ERR "port_accept : failed to get IRQ for "
107		       "telnetd\n");
108		goto out_free;
109	}
110
111	if (atomic_read(&port->wait_count) == 0) {
112		os_write_file(fd, NO_WAITER_MSG, sizeof(NO_WAITER_MSG));
113		printk(KERN_ERR "No one waiting for port\n");
114	}
115	list_add(&conn->list, &port->pending);
116	return 1;
117
118 out_free:
119	kfree(conn);
120 out_close:
121	os_close_file(fd);
122	os_kill_process(pid, 1);
123 out:
124	return 0;
125}
126
127static DEFINE_MUTEX(ports_mutex);
128static LIST_HEAD(ports);
129
130static void port_work_proc(struct work_struct *unused)
131{
132	struct port_list *port;
133	struct list_head *ele;
134	unsigned long flags;
135
136	local_irq_save(flags);
137	list_for_each(ele, &ports) {
138		port = list_entry(ele, struct port_list, list);
139		if (!port->has_connection)
140			continue;
141
 
142		while (port_accept(port))
143			;
144		port->has_connection = 0;
145	}
146	local_irq_restore(flags);
147}
148
149static DECLARE_WORK(port_work, port_work_proc);
150
151static irqreturn_t port_interrupt(int irq, void *data)
152{
153	struct port_list *port = data;
154
155	port->has_connection = 1;
156	schedule_work(&port_work);
157	return IRQ_HANDLED;
158}
159
160void *port_data(int port_num)
161{
162	struct list_head *ele;
163	struct port_list *port;
164	struct port_dev *dev = NULL;
165	int fd;
166
167	mutex_lock(&ports_mutex);
168	list_for_each(ele, &ports) {
169		port = list_entry(ele, struct port_list, list);
170		if (port->port == port_num)
171			goto found;
172	}
173	port = kmalloc(sizeof(struct port_list), GFP_KERNEL);
174	if (port == NULL) {
175		printk(KERN_ERR "Allocation of port list failed\n");
176		goto out;
177	}
178
179	fd = port_listen_fd(port_num);
180	if (fd < 0) {
181		printk(KERN_ERR "binding to port %d failed, errno = %d\n",
182		       port_num, -fd);
183		goto out_free;
184	}
185
186	if (um_request_irq(ACCEPT_IRQ, fd, IRQ_READ, port_interrupt,
187			  IRQF_SHARED, "port", port) < 0) {
188		printk(KERN_ERR "Failed to get IRQ for port %d\n", port_num);
189		goto out_close;
190	}
191
192	*port = ((struct port_list)
193		{ .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);
206	if (dev == NULL) {
207		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
216 out_close:
217	os_close_file(fd);
218 out_free:
219	kfree(port);
220 out:
221	mutex_unlock(&ports_mutex);
222	return dev;
223}
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
232	atomic_inc(&port->wait_count);
233	while (1) {
234		fd = -ERESTARTSYS;
235		if (wait_for_completion_interruptible(&port->done))
236			goto out;
237
238		spin_lock(&port->lock);
239
240		conn = list_entry(port->connections.next, struct connection,
241				  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);
248		os_close_file(conn->socket[1]);
249
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
253		 * connection.  Then we loop here throwing out failed
254		 * connections until a good one is found.
255		 */
256		um_free_irq(TELNETD_IRQ, conn);
257
258		if (conn->fd >= 0)
259			break;
260		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
277	if (dev->helper_pid != -1)
278		os_kill_process(dev->helper_pid, 0);
279	if (dev->telnetd_pid != -1)
280		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
298	list_for_each(ele, &ports) {
299		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);
v4.6
 
  1/*
  2 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com)
  3 * Licensed under the GPL
  4 */
  5
  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>
 13#include <init.h>
 14#include <irq_kern.h>
 15#include <os.h>
 16#include "port.h"
 17
 18struct port_list {
 19	struct list_head list;
 20	atomic_t wait_count;
 21	int has_connection;
 22	struct completion done;
 23	int port;
 24	int fd;
 25	spinlock_t lock;
 26	struct list_head pending;
 27	struct list_head connections;
 28};
 29
 30struct port_dev {
 31	struct port_list *port;
 32	int helper_pid;
 33	int telnetd_pid;
 34};
 35
 36struct connection {
 37	struct list_head list;
 38	int fd;
 39	int helper_pid;
 40	int socket[2];
 41	int telnetd_pid;
 42	struct port_list *port;
 43};
 44
 45static irqreturn_t pipe_interrupt(int irq, void *data)
 46{
 47	struct connection *conn = data;
 48	int fd;
 
 49
 50	fd = os_rcv_fd(conn->socket[0], &conn->helper_pid);
 51	if (fd < 0) {
 52		if (fd == -EAGAIN)
 
 53			return IRQ_NONE;
 54
 55		printk(KERN_ERR "pipe_interrupt : os_rcv_fd returned %d\n",
 56		       -fd);
 57		os_close_file(conn->fd);
 58	}
 59
 60	list_del(&conn->list);
 61
 62	conn->fd = fd;
 63	list_add(&conn->list, &conn->port->connections);
 64
 65	complete(&conn->port->done);
 66	return IRQ_HANDLED;
 67}
 68
 69#define NO_WAITER_MSG \
 70    "****\n" \
 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" \
 74    "****\n"
 75
 76static int port_accept(struct port_list *port)
 77{
 78	struct connection *conn;
 79	int fd, socket[2], pid;
 80
 81	fd = port_connection(port->fd, socket, &pid);
 82	if (fd < 0) {
 83		if (fd != -EAGAIN)
 84			printk(KERN_ERR "port_accept : port_connection "
 85			       "returned %d\n", -fd);
 86		goto out;
 87	}
 88
 89	conn = kmalloc(sizeof(*conn), GFP_ATOMIC);
 90	if (conn == NULL) {
 91		printk(KERN_ERR "port_accept : failed to allocate "
 92		       "connection\n");
 93		goto out_close;
 94	}
 95	*conn = ((struct connection)
 96		{ .list 	= LIST_HEAD_INIT(conn->list),
 97		  .fd 		= fd,
 98		  .socket  	= { socket[0], socket[1] },
 99		  .telnetd_pid 	= pid,
100		  .port 	= port });
101
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 "
105		       "telnetd\n");
106		goto out_free;
107	}
108
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");
112	}
113	list_add(&conn->list, &port->pending);
114	return 1;
115
116 out_free:
117	kfree(conn);
118 out_close:
119	os_close_file(fd);
120	os_kill_process(pid, 1);
121 out:
122	return 0;
123}
124
125static DEFINE_MUTEX(ports_mutex);
126static LIST_HEAD(ports);
127
128static void port_work_proc(struct work_struct *unused)
129{
130	struct port_list *port;
131	struct list_head *ele;
132	unsigned long flags;
133
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)
138			continue;
139
140		reactivate_fd(port->fd, ACCEPT_IRQ);
141		while (port_accept(port))
142			;
143		port->has_connection = 0;
144	}
145	local_irq_restore(flags);
146}
147
148DECLARE_WORK(port_work, port_work_proc);
149
150static irqreturn_t port_interrupt(int irq, void *data)
151{
152	struct port_list *port = data;
153
154	port->has_connection = 1;
155	schedule_work(&port_work);
156	return IRQ_HANDLED;
157}
158
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
166	mutex_lock(&ports_mutex);
167	list_for_each(ele, &ports) {
168		port = list_entry(ele, struct port_list, list);
169		if (port->port == port_num)
170			goto found;
171	}
172	port = kmalloc(sizeof(struct port_list), GFP_KERNEL);
173	if (port == NULL) {
174		printk(KERN_ERR "Allocation of port list failed\n");
175		goto out;
176	}
177
178	fd = port_listen_fd(port_num);
179	if (fd < 0) {
180		printk(KERN_ERR "binding to port %d failed, errno = %d\n",
181		       port_num, -fd);
182		goto out_free;
183	}
184
185	if (um_request_irq(ACCEPT_IRQ, fd, IRQ_READ, port_interrupt,
186			  IRQF_SHARED, "port", port)) {
187		printk(KERN_ERR "Failed to get IRQ for port %d\n", port_num);
188		goto out_close;
189	}
190
191	*port = ((struct port_list)
192		{ .list 	 	= LIST_HEAD_INIT(port->list),
193		  .wait_count		= ATOMIC_INIT(0),
194		  .has_connection 	= 0,
195		  .port 	 	= port_num,
196		  .fd  			= fd,
197		  .pending 		= LIST_HEAD_INIT(port->pending),
198		  .connections 		= LIST_HEAD_INIT(port->connections) });
199	spin_lock_init(&port->lock);
200	init_completion(&port->done);
201	list_add(&port->list, &ports);
202
203 found:
204	dev = kmalloc(sizeof(struct port_dev), GFP_KERNEL);
205	if (dev == NULL) {
206		printk(KERN_ERR "Allocation of port device entry failed\n");
207		goto out;
208	}
209
210	*dev = ((struct port_dev) { .port  		= port,
211				    .helper_pid  	= -1,
212				    .telnetd_pid  	= -1 });
213	goto out;
214
215 out_close:
216	os_close_file(fd);
217 out_free:
218	kfree(port);
219 out:
220	mutex_unlock(&ports_mutex);
221	return dev;
222}
223
224int port_wait(void *data)
225{
226	struct port_dev *dev = data;
227	struct connection *conn;
228	struct port_list *port = dev->port;
229	int fd;
230
231	atomic_inc(&port->wait_count);
232	while (1) {
233		fd = -ERESTARTSYS;
234		if (wait_for_completion_interruptible(&port->done))
235			goto out;
236
237		spin_lock(&port->lock);
238
239		conn = list_entry(port->connections.next, struct connection,
240				  list);
241		list_del(&conn->list);
242		spin_unlock(&port->lock);
243
244		os_shutdown_socket(conn->socket[0], 1, 1);
245		os_close_file(conn->socket[0]);
246		os_shutdown_socket(conn->socket[1], 1, 1);
247		os_close_file(conn->socket[1]);
248
249		/* This is done here because freeing an IRQ can't be done
250		 * within the IRQ handler.  So, pipe_interrupt always ups
251		 * the semaphore regardless of whether it got a successful
252		 * connection.  Then we loop here throwing out failed
253		 * connections until a good one is found.
254		 */
255		um_free_irq(TELNETD_IRQ, conn);
256
257		if (conn->fd >= 0)
258			break;
259		os_close_file(conn->fd);
260		kfree(conn);
261	}
262
263	fd = conn->fd;
264	dev->helper_pid = conn->helper_pid;
265	dev->telnetd_pid = conn->telnetd_pid;
266	kfree(conn);
267 out:
268	atomic_dec(&port->wait_count);
269	return fd;
270}
271
272void port_remove_dev(void *d)
273{
274	struct port_dev *dev = d;
275
276	if (dev->helper_pid != -1)
277		os_kill_process(dev->helper_pid, 0);
278	if (dev->telnetd_pid != -1)
279		os_kill_process(dev->telnetd_pid, 1);
280	dev->helper_pid = -1;
281	dev->telnetd_pid = -1;
282}
283
284void port_kern_free(void *d)
285{
286	struct port_dev *dev = d;
287
288	port_remove_dev(dev);
289	kfree(dev);
290}
291
292static void free_port(void)
293{
294	struct list_head *ele;
295	struct port_list *port;
296
297	list_for_each(ele, &ports) {
298		port = list_entry(ele, struct port_list, list);
299		free_irq_by_fd(port->fd);
300		os_close_file(port->fd);
301	}
302}
303
304__uml_exitcall(free_port);