1 /******************************************************************************
4 * Device for creating grant references (in user-space) that may be shared
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * This driver exists to allow userspace programs in Linux to allocate kernel
19 * memory that will later be shared with another domain. Without this device,
20 * Linux userspace programs cannot create grant references.
22 * How this stuff works:
23 * X -> granting a page to Y
24 * Y -> mapping the grant from X
26 * 1. X uses the gntalloc device to allocate a page of kernel memory, P.
27 * 2. X creates an entry in the grant table that says domid(Y) can access P.
28 * This is done without a hypercall unless the grant table needs expansion.
29 * 3. X gives the grant reference identifier, GREF, to Y.
30 * 4. Y maps the page, either directly into kernel memory for use in a backend
31 * driver, or via a the gntdev device to map into the address space of an
32 * application running in Y. This is the first point at which Xen does any
33 * tracking of the page.
34 * 5. A program in X mmap()s a segment of the gntalloc device that corresponds
35 * to the shared page, and can now communicate with Y over the shared page.
38 * NOTE TO USERSPACE LIBRARIES:
39 * The grant allocation and mmap()ing are, naturally, two separate operations.
40 * You set up the sharing by calling the create ioctl() and then the mmap().
41 * Teardown requires munmap() and either close() or ioctl().
43 * WARNING: Since Xen does not allow a guest to forcibly end the use of a grant
44 * reference, this device can be used to consume kernel memory by leaving grant
45 * references mapped by another domain when an application exits. Therefore,
46 * there is a global limit on the number of pages that can be allocated. When
47 * all references to the page are unmapped, it will be freed during the next
51 #define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt
53 #include <linux/atomic.h>
54 #include <linux/module.h>
55 #include <linux/miscdevice.h>
56 #include <linux/kernel.h>
57 #include <linux/init.h>
58 #include <linux/slab.h>
60 #include <linux/device.h>
62 #include <linux/uaccess.h>
63 #include <linux/types.h>
64 #include <linux/list.h>
65 #include <linux/highmem.h>
69 #include <xen/grant_table.h>
70 #include <xen/gntalloc.h>
71 #include <xen/events.h>
73 static int limit
= 1024;
74 module_param(limit
, int, 0644);
75 MODULE_PARM_DESC(limit
, "Maximum number of grants that may be allocated by "
76 "the gntalloc device");
78 static LIST_HEAD(gref_list
);
79 static DEFINE_MUTEX(gref_mutex
);
83 uint16_t pgoff
:12; /* Bits 0-11: Offset of the byte to clear */
84 uint16_t flags
:2; /* Bits 12-13: Unmap notification flags */
85 int event
; /* Port (event channel) to notify */
88 /* Metadata on a grant reference. */
89 struct gntalloc_gref
{
90 struct list_head next_gref
; /* list entry gref_list */
91 struct list_head next_file
; /* list entry file->list, if open */
92 struct page
*page
; /* The shared page */
93 uint64_t file_index
; /* File offset for mmap() */
94 unsigned int users
; /* Use count - when zero, waiting on Xen */
95 grant_ref_t gref_id
; /* The grant reference number */
96 struct notify_info notify
; /* Unmap notification */
99 struct gntalloc_file_private_data
{
100 struct list_head list
;
104 struct gntalloc_vma_private_data
{
105 struct gntalloc_gref
*gref
;
110 static void __del_gref(struct gntalloc_gref
*gref
);
112 static void do_cleanup(void)
114 struct gntalloc_gref
*gref
, *n
;
115 list_for_each_entry_safe(gref
, n
, &gref_list
, next_gref
) {
121 static int add_grefs(struct ioctl_gntalloc_alloc_gref
*op
,
122 uint32_t *gref_ids
, struct gntalloc_file_private_data
*priv
)
125 LIST_HEAD(queue_gref
);
126 LIST_HEAD(queue_file
);
127 struct gntalloc_gref
*gref
, *next
;
129 readonly
= !(op
->flags
& GNTALLOC_FLAG_WRITABLE
);
131 for (i
= 0; i
< op
->count
; i
++) {
132 gref
= kzalloc(sizeof(*gref
), GFP_KERNEL
);
135 list_add_tail(&gref
->next_gref
, &queue_gref
);
136 list_add_tail(&gref
->next_file
, &queue_file
);
138 gref
->file_index
= op
->index
+ i
* PAGE_SIZE
;
139 gref
->page
= alloc_page(GFP_KERNEL
|__GFP_ZERO
);
143 /* Grant foreign access to the page. */
144 rc
= gnttab_grant_foreign_access(op
->domid
,
145 xen_page_to_gfn(gref
->page
),
149 gref_ids
[i
] = gref
->gref_id
= rc
;
152 /* Add to gref lists. */
153 mutex_lock(&gref_mutex
);
154 list_splice_tail(&queue_gref
, &gref_list
);
155 list_splice_tail(&queue_file
, &priv
->list
);
156 mutex_unlock(&gref_mutex
);
161 mutex_lock(&gref_mutex
);
162 gref_size
-= (op
->count
- i
);
164 list_for_each_entry_safe(gref
, next
, &queue_file
, next_file
) {
165 list_del(&gref
->next_file
);
169 /* It's possible for the target domain to map the just-allocated grant
170 * references by blindly guessing their IDs; if this is done, then
171 * __del_gref will leave them in the queue_gref list. They need to be
172 * added to the global list so that we can free them when they are no
175 if (unlikely(!list_empty(&queue_gref
)))
176 list_splice_tail(&queue_gref
, &gref_list
);
177 mutex_unlock(&gref_mutex
);
181 static void __del_gref(struct gntalloc_gref
*gref
)
183 if (gref
->notify
.flags
& UNMAP_NOTIFY_CLEAR_BYTE
) {
184 uint8_t *tmp
= kmap(gref
->page
);
185 tmp
[gref
->notify
.pgoff
] = 0;
188 if (gref
->notify
.flags
& UNMAP_NOTIFY_SEND_EVENT
) {
189 notify_remote_via_evtchn(gref
->notify
.event
);
190 evtchn_put(gref
->notify
.event
);
193 gref
->notify
.flags
= 0;
196 if (gnttab_query_foreign_access(gref
->gref_id
))
199 if (!gnttab_end_foreign_access_ref(gref
->gref_id
, 0))
202 gnttab_free_grant_reference(gref
->gref_id
);
206 list_del(&gref
->next_gref
);
209 __free_page(gref
->page
);
214 /* finds contiguous grant references in a file, returns the first */
215 static struct gntalloc_gref
*find_grefs(struct gntalloc_file_private_data
*priv
,
216 uint64_t index
, uint32_t count
)
218 struct gntalloc_gref
*rv
= NULL
, *gref
;
219 list_for_each_entry(gref
, &priv
->list
, next_file
) {
220 if (gref
->file_index
== index
&& !rv
)
223 if (gref
->file_index
!= index
)
235 * -------------------------------------
237 * -------------------------------------
239 static int gntalloc_open(struct inode
*inode
, struct file
*filp
)
241 struct gntalloc_file_private_data
*priv
;
243 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
246 INIT_LIST_HEAD(&priv
->list
);
248 filp
->private_data
= priv
;
250 pr_debug("%s: priv %p\n", __func__
, priv
);
258 static int gntalloc_release(struct inode
*inode
, struct file
*filp
)
260 struct gntalloc_file_private_data
*priv
= filp
->private_data
;
261 struct gntalloc_gref
*gref
;
263 pr_debug("%s: priv %p\n", __func__
, priv
);
265 mutex_lock(&gref_mutex
);
266 while (!list_empty(&priv
->list
)) {
267 gref
= list_entry(priv
->list
.next
,
268 struct gntalloc_gref
, next_file
);
269 list_del(&gref
->next_file
);
271 if (gref
->users
== 0)
275 mutex_unlock(&gref_mutex
);
280 static long gntalloc_ioctl_alloc(struct gntalloc_file_private_data
*priv
,
281 struct ioctl_gntalloc_alloc_gref __user
*arg
)
284 struct ioctl_gntalloc_alloc_gref op
;
287 pr_debug("%s: priv %p\n", __func__
, priv
);
289 if (copy_from_user(&op
, arg
, sizeof(op
))) {
294 gref_ids
= kcalloc(op
.count
, sizeof(gref_ids
[0]), GFP_TEMPORARY
);
300 mutex_lock(&gref_mutex
);
301 /* Clean up pages that were at zero (local) users but were still mapped
302 * by remote domains. Since those pages count towards the limit that we
303 * are about to enforce, removing them here is a good idea.
306 if (gref_size
+ op
.count
> limit
) {
307 mutex_unlock(&gref_mutex
);
311 gref_size
+= op
.count
;
312 op
.index
= priv
->index
;
313 priv
->index
+= op
.count
* PAGE_SIZE
;
314 mutex_unlock(&gref_mutex
);
316 rc
= add_grefs(&op
, gref_ids
, priv
);
320 /* Once we finish add_grefs, it is unsafe to touch the new reference,
321 * since it is possible for a concurrent ioctl to remove it (by guessing
322 * its index). If the userspace application doesn't provide valid memory
323 * to write the IDs to, then it will need to close the file in order to
324 * release - which it will do by segfaulting when it tries to access the
327 if (copy_to_user(arg
, &op
, sizeof(op
))) {
331 if (copy_to_user(arg
->gref_ids
, gref_ids
,
332 sizeof(gref_ids
[0]) * op
.count
)) {
343 static long gntalloc_ioctl_dealloc(struct gntalloc_file_private_data
*priv
,
347 struct ioctl_gntalloc_dealloc_gref op
;
348 struct gntalloc_gref
*gref
, *n
;
350 pr_debug("%s: priv %p\n", __func__
, priv
);
352 if (copy_from_user(&op
, arg
, sizeof(op
))) {
354 goto dealloc_grant_out
;
357 mutex_lock(&gref_mutex
);
358 gref
= find_grefs(priv
, op
.index
, op
.count
);
360 /* Remove from the file list only, and decrease reference count.
361 * The later call to do_cleanup() will remove from gref_list and
362 * free the memory if the pages aren't mapped anywhere.
364 for (i
= 0; i
< op
.count
; i
++) {
365 n
= list_entry(gref
->next_file
.next
,
366 struct gntalloc_gref
, next_file
);
367 list_del(&gref
->next_file
);
377 mutex_unlock(&gref_mutex
);
382 static long gntalloc_ioctl_unmap_notify(struct gntalloc_file_private_data
*priv
,
385 struct ioctl_gntalloc_unmap_notify op
;
386 struct gntalloc_gref
*gref
;
391 if (copy_from_user(&op
, arg
, sizeof(op
)))
394 index
= op
.index
& ~(PAGE_SIZE
- 1);
395 pgoff
= op
.index
& (PAGE_SIZE
- 1);
397 mutex_lock(&gref_mutex
);
399 gref
= find_grefs(priv
, index
, 1);
405 if (op
.action
& ~(UNMAP_NOTIFY_CLEAR_BYTE
|UNMAP_NOTIFY_SEND_EVENT
)) {
410 /* We need to grab a reference to the event channel we are going to use
411 * to send the notify before releasing the reference we may already have
412 * (if someone has called this ioctl twice). This is required so that
413 * it is possible to change the clear_byte part of the notification
414 * without disturbing the event channel part, which may now be the last
415 * reference to that event channel.
417 if (op
.action
& UNMAP_NOTIFY_SEND_EVENT
) {
418 if (evtchn_get(op
.event_channel_port
)) {
424 if (gref
->notify
.flags
& UNMAP_NOTIFY_SEND_EVENT
)
425 evtchn_put(gref
->notify
.event
);
427 gref
->notify
.flags
= op
.action
;
428 gref
->notify
.pgoff
= pgoff
;
429 gref
->notify
.event
= op
.event_channel_port
;
433 mutex_unlock(&gref_mutex
);
437 static long gntalloc_ioctl(struct file
*filp
, unsigned int cmd
,
440 struct gntalloc_file_private_data
*priv
= filp
->private_data
;
443 case IOCTL_GNTALLOC_ALLOC_GREF
:
444 return gntalloc_ioctl_alloc(priv
, (void __user
*)arg
);
446 case IOCTL_GNTALLOC_DEALLOC_GREF
:
447 return gntalloc_ioctl_dealloc(priv
, (void __user
*)arg
);
449 case IOCTL_GNTALLOC_SET_UNMAP_NOTIFY
:
450 return gntalloc_ioctl_unmap_notify(priv
, (void __user
*)arg
);
459 static void gntalloc_vma_open(struct vm_area_struct
*vma
)
461 struct gntalloc_vma_private_data
*priv
= vma
->vm_private_data
;
466 mutex_lock(&gref_mutex
);
468 mutex_unlock(&gref_mutex
);
471 static void gntalloc_vma_close(struct vm_area_struct
*vma
)
473 struct gntalloc_vma_private_data
*priv
= vma
->vm_private_data
;
474 struct gntalloc_gref
*gref
, *next
;
480 mutex_lock(&gref_mutex
);
482 if (priv
->users
== 0) {
484 for (i
= 0; i
< priv
->count
; i
++) {
486 next
= list_entry(gref
->next_gref
.next
,
487 struct gntalloc_gref
, next_gref
);
488 if (gref
->users
== 0)
494 mutex_unlock(&gref_mutex
);
497 static const struct vm_operations_struct gntalloc_vmops
= {
498 .open
= gntalloc_vma_open
,
499 .close
= gntalloc_vma_close
,
502 static int gntalloc_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
504 struct gntalloc_file_private_data
*priv
= filp
->private_data
;
505 struct gntalloc_vma_private_data
*vm_priv
;
506 struct gntalloc_gref
*gref
;
507 int count
= (vma
->vm_end
- vma
->vm_start
) >> PAGE_SHIFT
;
510 if (!(vma
->vm_flags
& VM_SHARED
)) {
511 pr_err("%s: Mapping must be shared\n", __func__
);
515 vm_priv
= kmalloc(sizeof(*vm_priv
), GFP_KERNEL
);
519 mutex_lock(&gref_mutex
);
521 pr_debug("%s: priv %p,%p, page %lu+%d\n", __func__
,
522 priv
, vm_priv
, vma
->vm_pgoff
, count
);
524 gref
= find_grefs(priv
, vma
->vm_pgoff
<< PAGE_SHIFT
, count
);
527 pr_debug("%s: Could not find grant reference",
533 vm_priv
->gref
= gref
;
535 vm_priv
->count
= count
;
537 vma
->vm_private_data
= vm_priv
;
539 vma
->vm_flags
|= VM_DONTEXPAND
| VM_DONTDUMP
;
541 vma
->vm_ops
= &gntalloc_vmops
;
543 for (i
= 0; i
< count
; i
++) {
545 rv
= vm_insert_page(vma
, vma
->vm_start
+ i
* PAGE_SIZE
,
550 gref
= list_entry(gref
->next_file
.next
,
551 struct gntalloc_gref
, next_file
);
556 mutex_unlock(&gref_mutex
);
560 static const struct file_operations gntalloc_fops
= {
561 .owner
= THIS_MODULE
,
562 .open
= gntalloc_open
,
563 .release
= gntalloc_release
,
564 .unlocked_ioctl
= gntalloc_ioctl
,
565 .mmap
= gntalloc_mmap
569 * -------------------------------------
570 * Module creation/destruction.
571 * -------------------------------------
573 static struct miscdevice gntalloc_miscdev
= {
574 .minor
= MISC_DYNAMIC_MINOR
,
575 .name
= "xen/gntalloc",
576 .fops
= &gntalloc_fops
,
579 static int __init
gntalloc_init(void)
586 err
= misc_register(&gntalloc_miscdev
);
588 pr_err("Could not register misc gntalloc device\n");
592 pr_debug("Created grant allocation device at %d,%d\n",
593 MISC_MAJOR
, gntalloc_miscdev
.minor
);
598 static void __exit
gntalloc_exit(void)
600 misc_deregister(&gntalloc_miscdev
);
603 module_init(gntalloc_init
);
604 module_exit(gntalloc_exit
);
606 MODULE_LICENSE("GPL");
607 MODULE_AUTHOR("Carter Weatherly <carter.weatherly@jhuapl.edu>, "
608 "Daniel De Graaf <dgdegra@tycho.nsa.gov>");
609 MODULE_DESCRIPTION("User-space grant reference allocator driver");