1 /******************************************************************************
4 * Driver for receiving and demuxing event-channel signals.
6 * Copyright (c) 2004-2005, K A Fraser
7 * Multi-process extensions Copyright (c) 2004, Steven Smith
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation; or, when distributed
12 * separately from the Linux kernel or incorporated into other
13 * software packages, subject to the following license:
15 * Permission is hereby granted, free of charge, to any person obtaining a copy
16 * of this source file (the "Software"), to deal in the Software without
17 * restriction, including without limitation the rights to use, copy, modify,
18 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
19 * and to permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
22 * The above copyright notice and this permission notice shall be included in
23 * all copies or substantial portions of the Software.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
34 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/sched.h>
37 #include <linux/slab.h>
38 #include <linux/string.h>
39 #include <linux/errno.h>
41 #include <linux/miscdevice.h>
42 #include <linux/major.h>
43 #include <linux/proc_fs.h>
44 #include <linux/stat.h>
45 #include <linux/poll.h>
46 #include <linux/irq.h>
47 #include <linux/init.h>
48 #include <linux/mutex.h>
49 #include <linux/cpu.h>
52 #include <xen/events.h>
53 #include <xen/evtchn.h>
54 #include <asm/xen/hypervisor.h>
56 struct per_user_data {
57 struct mutex bind_mutex; /* serialize bind/unbind operations */
59 /* Notification ring, accessed via /dev/xen/evtchn. */
60 #define EVTCHN_RING_SIZE (PAGE_SIZE / sizeof(evtchn_port_t))
61 #define EVTCHN_RING_MASK(_i) ((_i)&(EVTCHN_RING_SIZE-1))
63 unsigned int ring_cons, ring_prod, ring_overflow;
64 struct mutex ring_cons_mutex; /* protect against concurrent readers */
66 /* Processes wait on this queue when ring is empty. */
67 wait_queue_head_t evtchn_wait;
68 struct fasync_struct *evtchn_async_queue;
72 /* Who's bound to each port? */
73 static struct per_user_data *port_user[NR_EVENT_CHANNELS];
74 static DEFINE_SPINLOCK(port_user_lock); /* protects port_user[] and ring_prod */
76 irqreturn_t evtchn_interrupt(int irq, void *data)
78 unsigned int port = (unsigned long)data;
79 struct per_user_data *u;
81 spin_lock(&port_user_lock);
85 disable_irq_nosync(irq);
87 if ((u->ring_prod - u->ring_cons) < EVTCHN_RING_SIZE) {
88 u->ring[EVTCHN_RING_MASK(u->ring_prod)] = port;
89 wmb(); /* Ensure ring contents visible */
90 if (u->ring_cons == u->ring_prod++) {
91 wake_up_interruptible(&u->evtchn_wait);
92 kill_fasync(&u->evtchn_async_queue,
99 spin_unlock(&port_user_lock);
104 static ssize_t evtchn_read(struct file *file, char __user *buf,
105 size_t count, loff_t *ppos)
108 unsigned int c, p, bytes1 = 0, bytes2 = 0;
109 struct per_user_data *u = file->private_data;
111 /* Whole number of ports. */
112 count &= ~(sizeof(evtchn_port_t)-1);
117 if (count > PAGE_SIZE)
121 mutex_lock(&u->ring_cons_mutex);
124 if (u->ring_overflow)
132 mutex_unlock(&u->ring_cons_mutex);
134 if (file->f_flags & O_NONBLOCK)
137 rc = wait_event_interruptible(u->evtchn_wait,
138 u->ring_cons != u->ring_prod);
143 /* Byte lengths of two chunks. Chunk split (if any) is at ring wrap. */
144 if (((c ^ p) & EVTCHN_RING_SIZE) != 0) {
145 bytes1 = (EVTCHN_RING_SIZE - EVTCHN_RING_MASK(c)) *
146 sizeof(evtchn_port_t);
147 bytes2 = EVTCHN_RING_MASK(p) * sizeof(evtchn_port_t);
149 bytes1 = (p - c) * sizeof(evtchn_port_t);
153 /* Truncate chunks according to caller's maximum byte count. */
154 if (bytes1 > count) {
157 } else if ((bytes1 + bytes2) > count) {
158 bytes2 = count - bytes1;
162 rmb(); /* Ensure that we see the port before we copy it. */
163 if (copy_to_user(buf, &u->ring[EVTCHN_RING_MASK(c)], bytes1) ||
165 copy_to_user(&buf[bytes1], &u->ring[0], bytes2)))
168 u->ring_cons += (bytes1 + bytes2) / sizeof(evtchn_port_t);
169 rc = bytes1 + bytes2;
172 mutex_unlock(&u->ring_cons_mutex);
176 static ssize_t evtchn_write(struct file *file, const char __user *buf,
177 size_t count, loff_t *ppos)
180 evtchn_port_t *kbuf = (evtchn_port_t *)__get_free_page(GFP_KERNEL);
181 struct per_user_data *u = file->private_data;
186 /* Whole number of ports. */
187 count &= ~(sizeof(evtchn_port_t)-1);
193 if (count > PAGE_SIZE)
197 if (copy_from_user(kbuf, buf, count) != 0)
200 spin_lock_irq(&port_user_lock);
201 for (i = 0; i < (count/sizeof(evtchn_port_t)); i++)
202 if ((kbuf[i] < NR_EVENT_CHANNELS) && (port_user[kbuf[i]] == u))
203 enable_irq(irq_from_evtchn(kbuf[i]));
204 spin_unlock_irq(&port_user_lock);
209 free_page((unsigned long)kbuf);
213 static int evtchn_bind_to_user(struct per_user_data *u, int port)
218 * Ports are never reused, so every caller should pass in a
221 * (Locking not necessary because we haven't registered the
222 * interrupt handler yet, and our caller has already
223 * serialized bind operations.)
225 BUG_ON(port_user[port] != NULL);
228 rc = bind_evtchn_to_irqhandler(port, evtchn_interrupt, IRQF_DISABLED,
229 u->name, (void *)(unsigned long)port);
236 static void evtchn_unbind_from_user(struct per_user_data *u, int port)
238 int irq = irq_from_evtchn(port);
240 unbind_from_irqhandler(irq, (void *)(unsigned long)port);
242 /* make sure we unbind the irq handler before clearing the port */
245 port_user[port] = NULL;
248 static long evtchn_ioctl(struct file *file,
249 unsigned int cmd, unsigned long arg)
252 struct per_user_data *u = file->private_data;
253 void __user *uarg = (void __user *) arg;
255 /* Prevent bind from racing with unbind */
256 mutex_lock(&u->bind_mutex);
259 case IOCTL_EVTCHN_BIND_VIRQ: {
260 struct ioctl_evtchn_bind_virq bind;
261 struct evtchn_bind_virq bind_virq;
264 if (copy_from_user(&bind, uarg, sizeof(bind)))
267 bind_virq.virq = bind.virq;
269 rc = HYPERVISOR_event_channel_op(EVTCHNOP_bind_virq,
274 rc = evtchn_bind_to_user(u, bind_virq.port);
280 case IOCTL_EVTCHN_BIND_INTERDOMAIN: {
281 struct ioctl_evtchn_bind_interdomain bind;
282 struct evtchn_bind_interdomain bind_interdomain;
285 if (copy_from_user(&bind, uarg, sizeof(bind)))
288 bind_interdomain.remote_dom = bind.remote_domain;
289 bind_interdomain.remote_port = bind.remote_port;
290 rc = HYPERVISOR_event_channel_op(EVTCHNOP_bind_interdomain,
295 rc = evtchn_bind_to_user(u, bind_interdomain.local_port);
297 rc = bind_interdomain.local_port;
301 case IOCTL_EVTCHN_BIND_UNBOUND_PORT: {
302 struct ioctl_evtchn_bind_unbound_port bind;
303 struct evtchn_alloc_unbound alloc_unbound;
306 if (copy_from_user(&bind, uarg, sizeof(bind)))
309 alloc_unbound.dom = DOMID_SELF;
310 alloc_unbound.remote_dom = bind.remote_domain;
311 rc = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
316 rc = evtchn_bind_to_user(u, alloc_unbound.port);
318 rc = alloc_unbound.port;
322 case IOCTL_EVTCHN_UNBIND: {
323 struct ioctl_evtchn_unbind unbind;
326 if (copy_from_user(&unbind, uarg, sizeof(unbind)))
330 if (unbind.port >= NR_EVENT_CHANNELS)
333 spin_lock_irq(&port_user_lock);
336 if (port_user[unbind.port] != u) {
337 spin_unlock_irq(&port_user_lock);
341 evtchn_unbind_from_user(u, unbind.port);
343 spin_unlock_irq(&port_user_lock);
349 case IOCTL_EVTCHN_NOTIFY: {
350 struct ioctl_evtchn_notify notify;
353 if (copy_from_user(¬ify, uarg, sizeof(notify)))
356 if (notify.port >= NR_EVENT_CHANNELS) {
358 } else if (port_user[notify.port] != u) {
361 notify_remote_via_evtchn(notify.port);
367 case IOCTL_EVTCHN_RESET: {
368 /* Initialise the ring to empty. Clear errors. */
369 mutex_lock(&u->ring_cons_mutex);
370 spin_lock_irq(&port_user_lock);
371 u->ring_cons = u->ring_prod = u->ring_overflow = 0;
372 spin_unlock_irq(&port_user_lock);
373 mutex_unlock(&u->ring_cons_mutex);
382 mutex_unlock(&u->bind_mutex);
387 static unsigned int evtchn_poll(struct file *file, poll_table *wait)
389 unsigned int mask = POLLOUT | POLLWRNORM;
390 struct per_user_data *u = file->private_data;
392 poll_wait(file, &u->evtchn_wait, wait);
393 if (u->ring_cons != u->ring_prod)
394 mask |= POLLIN | POLLRDNORM;
395 if (u->ring_overflow)
400 static int evtchn_fasync(int fd, struct file *filp, int on)
402 struct per_user_data *u = filp->private_data;
403 return fasync_helper(fd, filp, on, &u->evtchn_async_queue);
406 static int evtchn_open(struct inode *inode, struct file *filp)
408 struct per_user_data *u;
410 u = kzalloc(sizeof(*u), GFP_KERNEL);
414 u->name = kasprintf(GFP_KERNEL, "evtchn:%s", current->comm);
415 if (u->name == NULL) {
420 init_waitqueue_head(&u->evtchn_wait);
422 u->ring = (evtchn_port_t *)__get_free_page(GFP_KERNEL);
423 if (u->ring == NULL) {
429 mutex_init(&u->bind_mutex);
430 mutex_init(&u->ring_cons_mutex);
432 filp->private_data = u;
437 static int evtchn_release(struct inode *inode, struct file *filp)
440 struct per_user_data *u = filp->private_data;
442 spin_lock_irq(&port_user_lock);
444 free_page((unsigned long)u->ring);
446 for (i = 0; i < NR_EVENT_CHANNELS; i++) {
447 if (port_user[i] != u)
450 evtchn_unbind_from_user(port_user[i], i);
453 spin_unlock_irq(&port_user_lock);
461 static const struct file_operations evtchn_fops = {
462 .owner = THIS_MODULE,
464 .write = evtchn_write,
465 .unlocked_ioctl = evtchn_ioctl,
467 .fasync = evtchn_fasync,
469 .release = evtchn_release,
472 static struct miscdevice evtchn_miscdev = {
473 .minor = MISC_DYNAMIC_MINOR,
475 .fops = &evtchn_fops,
477 static int __init evtchn_init(void)
484 spin_lock_init(&port_user_lock);
485 memset(port_user, 0, sizeof(port_user));
487 /* Create '/dev/misc/evtchn'. */
488 err = misc_register(&evtchn_miscdev);
490 printk(KERN_ALERT "Could not register /dev/misc/evtchn\n");
494 printk(KERN_INFO "Event-channel device installed.\n");
499 static void __exit evtchn_cleanup(void)
501 misc_deregister(&evtchn_miscdev);
504 module_init(evtchn_init);
505 module_exit(evtchn_cleanup);
507 MODULE_LICENSE("GPL");