1 /******************************************************************************
4 * Device for accessing (in user-space) pages that have been granted by other
7 * Copyright (c) 2006-2007, D G Murray.
8 * (c) 2009 Gerd Hoffmann <kraxel@redhat.com>
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt
24 #include <linux/module.h>
25 #include <linux/kernel.h>
26 #include <linux/init.h>
27 #include <linux/miscdevice.h>
30 #include <linux/mman.h>
31 #include <linux/mmu_notifier.h>
32 #include <linux/types.h>
33 #include <linux/uaccess.h>
34 #include <linux/sched.h>
35 #include <linux/sched/mm.h>
36 #include <linux/spinlock.h>
37 #include <linux/slab.h>
38 #include <linux/highmem.h>
39 #include <linux/refcount.h>
42 #include <xen/grant_table.h>
43 #include <xen/balloon.h>
44 #include <xen/gntdev.h>
45 #include <xen/events.h>
47 #include <asm/xen/hypervisor.h>
48 #include <asm/xen/hypercall.h>
50 MODULE_LICENSE("GPL");
51 MODULE_AUTHOR("Derek G. Murray <Derek.Murray@cl.cam.ac.uk>, "
52 "Gerd Hoffmann <kraxel@redhat.com>");
53 MODULE_DESCRIPTION("User-space granted page access driver");
55 static int limit
= 1024*1024;
56 module_param(limit
, int, 0644);
57 MODULE_PARM_DESC(limit
, "Maximum number of grants that may be mapped by "
60 static atomic_t pages_mapped
= ATOMIC_INIT(0);
62 static int use_ptemod
;
63 #define populate_freeable_maps use_ptemod
66 /* maps with visible offsets in the file descriptor */
67 struct list_head maps
;
68 /* maps that are not visible; will be freed on munmap.
69 * Only populated if populate_freeable_maps == 1 */
70 struct list_head freeable_maps
;
71 /* lock protects maps and freeable_maps */
74 struct mmu_notifier mn
;
79 /* Address relative to the start of the grant_map */
85 struct list_head next
;
86 struct vm_area_struct
*vma
;
91 struct unmap_notify notify
;
92 struct ioctl_gntdev_grant_ref
*grants
;
93 struct gnttab_map_grant_ref
*map_ops
;
94 struct gnttab_unmap_grant_ref
*unmap_ops
;
95 struct gnttab_map_grant_ref
*kmap_ops
;
96 struct gnttab_unmap_grant_ref
*kunmap_ops
;
98 unsigned long pages_vm_start
;
101 static int unmap_grant_pages(struct grant_map
*map
, int offset
, int pages
);
103 /* ------------------------------------------------------------------ */
105 static void gntdev_print_maps(struct gntdev_priv
*priv
,
106 char *text
, int text_index
)
109 struct grant_map
*map
;
111 pr_debug("%s: maps list (priv %p)\n", __func__
, priv
);
112 list_for_each_entry(map
, &priv
->maps
, next
)
113 pr_debug(" index %2d, count %2d %s\n",
114 map
->index
, map
->count
,
115 map
->index
== text_index
&& text
? text
: "");
119 static void gntdev_free_map(struct grant_map
*map
)
125 gnttab_free_pages(map
->count
, map
->pages
);
129 kfree(map
->unmap_ops
);
130 kfree(map
->kmap_ops
);
131 kfree(map
->kunmap_ops
);
135 static struct grant_map
*gntdev_alloc_map(struct gntdev_priv
*priv
, int count
)
137 struct grant_map
*add
;
140 add
= kzalloc(sizeof(struct grant_map
), GFP_KERNEL
);
144 add
->grants
= kcalloc(count
, sizeof(add
->grants
[0]), GFP_KERNEL
);
145 add
->map_ops
= kcalloc(count
, sizeof(add
->map_ops
[0]), GFP_KERNEL
);
146 add
->unmap_ops
= kcalloc(count
, sizeof(add
->unmap_ops
[0]), GFP_KERNEL
);
147 add
->kmap_ops
= kcalloc(count
, sizeof(add
->kmap_ops
[0]), GFP_KERNEL
);
148 add
->kunmap_ops
= kcalloc(count
, sizeof(add
->kunmap_ops
[0]), GFP_KERNEL
);
149 add
->pages
= kcalloc(count
, sizeof(add
->pages
[0]), GFP_KERNEL
);
150 if (NULL
== add
->grants
||
151 NULL
== add
->map_ops
||
152 NULL
== add
->unmap_ops
||
153 NULL
== add
->kmap_ops
||
154 NULL
== add
->kunmap_ops
||
158 if (gnttab_alloc_pages(count
, add
->pages
))
161 for (i
= 0; i
< count
; i
++) {
162 add
->map_ops
[i
].handle
= -1;
163 add
->unmap_ops
[i
].handle
= -1;
164 add
->kmap_ops
[i
].handle
= -1;
165 add
->kunmap_ops
[i
].handle
= -1;
170 refcount_set(&add
->users
, 1);
175 gntdev_free_map(add
);
179 static void gntdev_add_map(struct gntdev_priv
*priv
, struct grant_map
*add
)
181 struct grant_map
*map
;
183 list_for_each_entry(map
, &priv
->maps
, next
) {
184 if (add
->index
+ add
->count
< map
->index
) {
185 list_add_tail(&add
->next
, &map
->next
);
188 add
->index
= map
->index
+ map
->count
;
190 list_add_tail(&add
->next
, &priv
->maps
);
193 gntdev_print_maps(priv
, "[new]", add
->index
);
196 static struct grant_map
*gntdev_find_map_index(struct gntdev_priv
*priv
,
197 int index
, int count
)
199 struct grant_map
*map
;
201 list_for_each_entry(map
, &priv
->maps
, next
) {
202 if (map
->index
!= index
)
204 if (count
&& map
->count
!= count
)
211 static void gntdev_put_map(struct gntdev_priv
*priv
, struct grant_map
*map
)
216 if (!refcount_dec_and_test(&map
->users
))
219 atomic_sub(map
->count
, &pages_mapped
);
221 if (map
->notify
.flags
& UNMAP_NOTIFY_SEND_EVENT
) {
222 notify_remote_via_evtchn(map
->notify
.event
);
223 evtchn_put(map
->notify
.event
);
226 if (populate_freeable_maps
&& priv
) {
227 mutex_lock(&priv
->lock
);
228 list_del(&map
->next
);
229 mutex_unlock(&priv
->lock
);
232 if (map
->pages
&& !use_ptemod
)
233 unmap_grant_pages(map
, 0, map
->count
);
234 gntdev_free_map(map
);
237 /* ------------------------------------------------------------------ */
239 static int find_grant_ptes(pte_t
*pte
, pgtable_t token
,
240 unsigned long addr
, void *data
)
242 struct grant_map
*map
= data
;
243 unsigned int pgnr
= (addr
- map
->vma
->vm_start
) >> PAGE_SHIFT
;
244 int flags
= map
->flags
| GNTMAP_application_map
| GNTMAP_contains_pte
;
247 BUG_ON(pgnr
>= map
->count
);
248 pte_maddr
= arbitrary_virt_to_machine(pte
).maddr
;
251 * Set the PTE as special to force get_user_pages_fast() fall
252 * back to the slow path. If this is not supported as part of
253 * the grant map, it will be done afterwards.
255 if (xen_feature(XENFEAT_gnttab_map_avail_bits
))
256 flags
|= (1 << _GNTMAP_guest_avail0
);
258 gnttab_set_map_op(&map
->map_ops
[pgnr
], pte_maddr
, flags
,
259 map
->grants
[pgnr
].ref
,
260 map
->grants
[pgnr
].domid
);
261 gnttab_set_unmap_op(&map
->unmap_ops
[pgnr
], pte_maddr
, flags
,
267 static int set_grant_ptes_as_special(pte_t
*pte
, pgtable_t token
,
268 unsigned long addr
, void *data
)
270 set_pte_at(current
->mm
, addr
, pte
, pte_mkspecial(*pte
));
275 static int map_grant_pages(struct grant_map
*map
)
280 /* Note: it could already be mapped */
281 if (map
->map_ops
[0].handle
!= -1)
283 for (i
= 0; i
< map
->count
; i
++) {
284 unsigned long addr
= (unsigned long)
285 pfn_to_kaddr(page_to_pfn(map
->pages
[i
]));
286 gnttab_set_map_op(&map
->map_ops
[i
], addr
, map
->flags
,
288 map
->grants
[i
].domid
);
289 gnttab_set_unmap_op(&map
->unmap_ops
[i
], addr
,
290 map
->flags
, -1 /* handle */);
294 * Setup the map_ops corresponding to the pte entries pointing
295 * to the kernel linear addresses of the struct pages.
296 * These ptes are completely different from the user ptes dealt
297 * with find_grant_ptes.
299 for (i
= 0; i
< map
->count
; i
++) {
300 unsigned long address
= (unsigned long)
301 pfn_to_kaddr(page_to_pfn(map
->pages
[i
]));
302 BUG_ON(PageHighMem(map
->pages
[i
]));
304 gnttab_set_map_op(&map
->kmap_ops
[i
], address
,
305 map
->flags
| GNTMAP_host_map
,
307 map
->grants
[i
].domid
);
308 gnttab_set_unmap_op(&map
->kunmap_ops
[i
], address
,
309 map
->flags
| GNTMAP_host_map
, -1);
313 pr_debug("map %d+%d\n", map
->index
, map
->count
);
314 err
= gnttab_map_refs(map
->map_ops
, use_ptemod
? map
->kmap_ops
: NULL
,
315 map
->pages
, map
->count
);
319 for (i
= 0; i
< map
->count
; i
++) {
320 if (map
->map_ops
[i
].status
) {
325 map
->unmap_ops
[i
].handle
= map
->map_ops
[i
].handle
;
327 map
->kunmap_ops
[i
].handle
= map
->kmap_ops
[i
].handle
;
332 static int __unmap_grant_pages(struct grant_map
*map
, int offset
, int pages
)
335 struct gntab_unmap_queue_data unmap_data
;
337 if (map
->notify
.flags
& UNMAP_NOTIFY_CLEAR_BYTE
) {
338 int pgno
= (map
->notify
.addr
>> PAGE_SHIFT
);
339 if (pgno
>= offset
&& pgno
< offset
+ pages
) {
340 /* No need for kmap, pages are in lowmem */
341 uint8_t *tmp
= pfn_to_kaddr(page_to_pfn(map
->pages
[pgno
]));
342 tmp
[map
->notify
.addr
& (PAGE_SIZE
-1)] = 0;
343 map
->notify
.flags
&= ~UNMAP_NOTIFY_CLEAR_BYTE
;
347 unmap_data
.unmap_ops
= map
->unmap_ops
+ offset
;
348 unmap_data
.kunmap_ops
= use_ptemod
? map
->kunmap_ops
+ offset
: NULL
;
349 unmap_data
.pages
= map
->pages
+ offset
;
350 unmap_data
.count
= pages
;
352 err
= gnttab_unmap_refs_sync(&unmap_data
);
356 for (i
= 0; i
< pages
; i
++) {
357 if (map
->unmap_ops
[offset
+i
].status
)
359 pr_debug("unmap handle=%d st=%d\n",
360 map
->unmap_ops
[offset
+i
].handle
,
361 map
->unmap_ops
[offset
+i
].status
);
362 map
->unmap_ops
[offset
+i
].handle
= -1;
367 static int unmap_grant_pages(struct grant_map
*map
, int offset
, int pages
)
371 pr_debug("unmap %d+%d [%d+%d]\n", map
->index
, map
->count
, offset
, pages
);
373 /* It is possible the requested range will have a "hole" where we
374 * already unmapped some of the grants. Only unmap valid ranges.
376 while (pages
&& !err
) {
377 while (pages
&& map
->unmap_ops
[offset
].handle
== -1) {
382 while (range
< pages
) {
383 if (map
->unmap_ops
[offset
+range
].handle
== -1)
387 err
= __unmap_grant_pages(map
, offset
, range
);
395 /* ------------------------------------------------------------------ */
397 static void gntdev_vma_open(struct vm_area_struct
*vma
)
399 struct grant_map
*map
= vma
->vm_private_data
;
401 pr_debug("gntdev_vma_open %p\n", vma
);
402 refcount_inc(&map
->users
);
405 static void gntdev_vma_close(struct vm_area_struct
*vma
)
407 struct grant_map
*map
= vma
->vm_private_data
;
408 struct file
*file
= vma
->vm_file
;
409 struct gntdev_priv
*priv
= file
->private_data
;
411 pr_debug("gntdev_vma_close %p\n", vma
);
413 /* It is possible that an mmu notifier could be running
414 * concurrently, so take priv->lock to ensure that the vma won't
415 * vanishing during the unmap_grant_pages call, since we will
416 * spin here until that completes. Such a concurrent call will
417 * not do any unmapping, since that has been done prior to
418 * closing the vma, but it may still iterate the unmap_ops list.
420 mutex_lock(&priv
->lock
);
422 mutex_unlock(&priv
->lock
);
424 vma
->vm_private_data
= NULL
;
425 gntdev_put_map(priv
, map
);
428 static struct page
*gntdev_vma_find_special_page(struct vm_area_struct
*vma
,
431 struct grant_map
*map
= vma
->vm_private_data
;
433 return map
->pages
[(addr
- map
->pages_vm_start
) >> PAGE_SHIFT
];
436 static const struct vm_operations_struct gntdev_vmops
= {
437 .open
= gntdev_vma_open
,
438 .close
= gntdev_vma_close
,
439 .find_special_page
= gntdev_vma_find_special_page
,
442 /* ------------------------------------------------------------------ */
444 static void unmap_if_in_range(struct grant_map
*map
,
445 unsigned long start
, unsigned long end
)
447 unsigned long mstart
, mend
;
452 if (map
->vma
->vm_start
>= end
)
454 if (map
->vma
->vm_end
<= start
)
456 mstart
= max(start
, map
->vma
->vm_start
);
457 mend
= min(end
, map
->vma
->vm_end
);
458 pr_debug("map %d+%d (%lx %lx), range %lx %lx, mrange %lx %lx\n",
459 map
->index
, map
->count
,
460 map
->vma
->vm_start
, map
->vma
->vm_end
,
461 start
, end
, mstart
, mend
);
462 err
= unmap_grant_pages(map
,
463 (mstart
- map
->vma
->vm_start
) >> PAGE_SHIFT
,
464 (mend
- mstart
) >> PAGE_SHIFT
);
468 static void mn_invl_range_start(struct mmu_notifier
*mn
,
469 struct mm_struct
*mm
,
470 unsigned long start
, unsigned long end
)
472 struct gntdev_priv
*priv
= container_of(mn
, struct gntdev_priv
, mn
);
473 struct grant_map
*map
;
475 mutex_lock(&priv
->lock
);
476 list_for_each_entry(map
, &priv
->maps
, next
) {
477 unmap_if_in_range(map
, start
, end
);
479 list_for_each_entry(map
, &priv
->freeable_maps
, next
) {
480 unmap_if_in_range(map
, start
, end
);
482 mutex_unlock(&priv
->lock
);
485 static void mn_release(struct mmu_notifier
*mn
,
486 struct mm_struct
*mm
)
488 struct gntdev_priv
*priv
= container_of(mn
, struct gntdev_priv
, mn
);
489 struct grant_map
*map
;
492 mutex_lock(&priv
->lock
);
493 list_for_each_entry(map
, &priv
->maps
, next
) {
496 pr_debug("map %d+%d (%lx %lx)\n",
497 map
->index
, map
->count
,
498 map
->vma
->vm_start
, map
->vma
->vm_end
);
499 err
= unmap_grant_pages(map
, /* offset */ 0, map
->count
);
502 list_for_each_entry(map
, &priv
->freeable_maps
, next
) {
505 pr_debug("map %d+%d (%lx %lx)\n",
506 map
->index
, map
->count
,
507 map
->vma
->vm_start
, map
->vma
->vm_end
);
508 err
= unmap_grant_pages(map
, /* offset */ 0, map
->count
);
511 mutex_unlock(&priv
->lock
);
514 static const struct mmu_notifier_ops gntdev_mmu_ops
= {
515 .release
= mn_release
,
516 .invalidate_range_start
= mn_invl_range_start
,
519 /* ------------------------------------------------------------------ */
521 static int gntdev_open(struct inode
*inode
, struct file
*flip
)
523 struct gntdev_priv
*priv
;
526 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
530 INIT_LIST_HEAD(&priv
->maps
);
531 INIT_LIST_HEAD(&priv
->freeable_maps
);
532 mutex_init(&priv
->lock
);
535 priv
->mm
= get_task_mm(current
);
540 priv
->mn
.ops
= &gntdev_mmu_ops
;
541 ret
= mmu_notifier_register(&priv
->mn
, priv
->mm
);
550 flip
->private_data
= priv
;
551 pr_debug("priv %p\n", priv
);
556 static int gntdev_release(struct inode
*inode
, struct file
*flip
)
558 struct gntdev_priv
*priv
= flip
->private_data
;
559 struct grant_map
*map
;
561 pr_debug("priv %p\n", priv
);
563 mutex_lock(&priv
->lock
);
564 while (!list_empty(&priv
->maps
)) {
565 map
= list_entry(priv
->maps
.next
, struct grant_map
, next
);
566 list_del(&map
->next
);
567 gntdev_put_map(NULL
/* already removed */, map
);
569 WARN_ON(!list_empty(&priv
->freeable_maps
));
570 mutex_unlock(&priv
->lock
);
573 mmu_notifier_unregister(&priv
->mn
, priv
->mm
);
578 static long gntdev_ioctl_map_grant_ref(struct gntdev_priv
*priv
,
579 struct ioctl_gntdev_map_grant_ref __user
*u
)
581 struct ioctl_gntdev_map_grant_ref op
;
582 struct grant_map
*map
;
585 if (copy_from_user(&op
, u
, sizeof(op
)) != 0)
587 pr_debug("priv %p, add %d\n", priv
, op
.count
);
588 if (unlikely(op
.count
<= 0))
592 map
= gntdev_alloc_map(priv
, op
.count
);
596 if (unlikely(atomic_add_return(op
.count
, &pages_mapped
) > limit
)) {
597 pr_debug("can't map: over limit\n");
598 gntdev_put_map(NULL
, map
);
602 if (copy_from_user(map
->grants
, &u
->refs
,
603 sizeof(map
->grants
[0]) * op
.count
) != 0) {
604 gntdev_put_map(NULL
, map
);
608 mutex_lock(&priv
->lock
);
609 gntdev_add_map(priv
, map
);
610 op
.index
= map
->index
<< PAGE_SHIFT
;
611 mutex_unlock(&priv
->lock
);
613 if (copy_to_user(u
, &op
, sizeof(op
)) != 0)
619 static long gntdev_ioctl_unmap_grant_ref(struct gntdev_priv
*priv
,
620 struct ioctl_gntdev_unmap_grant_ref __user
*u
)
622 struct ioctl_gntdev_unmap_grant_ref op
;
623 struct grant_map
*map
;
626 if (copy_from_user(&op
, u
, sizeof(op
)) != 0)
628 pr_debug("priv %p, del %d+%d\n", priv
, (int)op
.index
, (int)op
.count
);
630 mutex_lock(&priv
->lock
);
631 map
= gntdev_find_map_index(priv
, op
.index
>> PAGE_SHIFT
, op
.count
);
633 list_del(&map
->next
);
634 if (populate_freeable_maps
)
635 list_add_tail(&map
->next
, &priv
->freeable_maps
);
638 mutex_unlock(&priv
->lock
);
640 gntdev_put_map(priv
, map
);
644 static long gntdev_ioctl_get_offset_for_vaddr(struct gntdev_priv
*priv
,
645 struct ioctl_gntdev_get_offset_for_vaddr __user
*u
)
647 struct ioctl_gntdev_get_offset_for_vaddr op
;
648 struct vm_area_struct
*vma
;
649 struct grant_map
*map
;
652 if (copy_from_user(&op
, u
, sizeof(op
)) != 0)
654 pr_debug("priv %p, offset for vaddr %lx\n", priv
, (unsigned long)op
.vaddr
);
656 down_read(¤t
->mm
->mmap_sem
);
657 vma
= find_vma(current
->mm
, op
.vaddr
);
658 if (!vma
|| vma
->vm_ops
!= &gntdev_vmops
)
661 map
= vma
->vm_private_data
;
665 op
.offset
= map
->index
<< PAGE_SHIFT
;
666 op
.count
= map
->count
;
670 up_read(¤t
->mm
->mmap_sem
);
672 if (rv
== 0 && copy_to_user(u
, &op
, sizeof(op
)) != 0)
677 static long gntdev_ioctl_notify(struct gntdev_priv
*priv
, void __user
*u
)
679 struct ioctl_gntdev_unmap_notify op
;
680 struct grant_map
*map
;
683 unsigned int out_event
;
685 if (copy_from_user(&op
, u
, sizeof(op
)))
688 if (op
.action
& ~(UNMAP_NOTIFY_CLEAR_BYTE
|UNMAP_NOTIFY_SEND_EVENT
))
691 /* We need to grab a reference to the event channel we are going to use
692 * to send the notify before releasing the reference we may already have
693 * (if someone has called this ioctl twice). This is required so that
694 * it is possible to change the clear_byte part of the notification
695 * without disturbing the event channel part, which may now be the last
696 * reference to that event channel.
698 if (op
.action
& UNMAP_NOTIFY_SEND_EVENT
) {
699 if (evtchn_get(op
.event_channel_port
))
703 out_flags
= op
.action
;
704 out_event
= op
.event_channel_port
;
706 mutex_lock(&priv
->lock
);
708 list_for_each_entry(map
, &priv
->maps
, next
) {
709 uint64_t begin
= map
->index
<< PAGE_SHIFT
;
710 uint64_t end
= (map
->index
+ map
->count
) << PAGE_SHIFT
;
711 if (op
.index
>= begin
&& op
.index
< end
)
718 if ((op
.action
& UNMAP_NOTIFY_CLEAR_BYTE
) &&
719 (map
->flags
& GNTMAP_readonly
)) {
724 out_flags
= map
->notify
.flags
;
725 out_event
= map
->notify
.event
;
727 map
->notify
.flags
= op
.action
;
728 map
->notify
.addr
= op
.index
- (map
->index
<< PAGE_SHIFT
);
729 map
->notify
.event
= op
.event_channel_port
;
734 mutex_unlock(&priv
->lock
);
736 /* Drop the reference to the event channel we did not save in the map */
737 if (out_flags
& UNMAP_NOTIFY_SEND_EVENT
)
738 evtchn_put(out_event
);
743 #define GNTDEV_COPY_BATCH 16
745 struct gntdev_copy_batch
{
746 struct gnttab_copy ops
[GNTDEV_COPY_BATCH
];
747 struct page
*pages
[GNTDEV_COPY_BATCH
];
748 s16 __user
*status
[GNTDEV_COPY_BATCH
];
750 unsigned int nr_pages
;
753 static int gntdev_get_page(struct gntdev_copy_batch
*batch
, void __user
*virt
,
754 bool writeable
, unsigned long *gfn
)
756 unsigned long addr
= (unsigned long)virt
;
758 unsigned long xen_pfn
;
761 ret
= get_user_pages_fast(addr
, 1, writeable
, &page
);
765 batch
->pages
[batch
->nr_pages
++] = page
;
767 xen_pfn
= page_to_xen_pfn(page
) + XEN_PFN_DOWN(addr
& ~PAGE_MASK
);
768 *gfn
= pfn_to_gfn(xen_pfn
);
773 static void gntdev_put_pages(struct gntdev_copy_batch
*batch
)
777 for (i
= 0; i
< batch
->nr_pages
; i
++)
778 put_page(batch
->pages
[i
]);
782 static int gntdev_copy(struct gntdev_copy_batch
*batch
)
786 gnttab_batch_copy(batch
->ops
, batch
->nr_ops
);
787 gntdev_put_pages(batch
);
790 * For each completed op, update the status if the op failed
791 * and all previous ops for the segment were successful.
793 for (i
= 0; i
< batch
->nr_ops
; i
++) {
794 s16 status
= batch
->ops
[i
].status
;
797 if (status
== GNTST_okay
)
800 if (__get_user(old_status
, batch
->status
[i
]))
803 if (old_status
!= GNTST_okay
)
806 if (__put_user(status
, batch
->status
[i
]))
814 static int gntdev_grant_copy_seg(struct gntdev_copy_batch
*batch
,
815 struct gntdev_grant_copy_segment
*seg
,
821 * Disallow local -> local copies since there is only space in
822 * batch->pages for one page per-op and this would be a very
823 * expensive memcpy().
825 if (!(seg
->flags
& (GNTCOPY_source_gref
| GNTCOPY_dest_gref
)))
828 /* Can't cross page if source/dest is a grant ref. */
829 if (seg
->flags
& GNTCOPY_source_gref
) {
830 if (seg
->source
.foreign
.offset
+ seg
->len
> XEN_PAGE_SIZE
)
833 if (seg
->flags
& GNTCOPY_dest_gref
) {
834 if (seg
->dest
.foreign
.offset
+ seg
->len
> XEN_PAGE_SIZE
)
838 if (put_user(GNTST_okay
, status
))
841 while (copied
< seg
->len
) {
842 struct gnttab_copy
*op
;
848 if (batch
->nr_ops
>= GNTDEV_COPY_BATCH
) {
849 ret
= gntdev_copy(batch
);
854 len
= seg
->len
- copied
;
856 op
= &batch
->ops
[batch
->nr_ops
];
859 if (seg
->flags
& GNTCOPY_source_gref
) {
860 op
->source
.u
.ref
= seg
->source
.foreign
.ref
;
861 op
->source
.domid
= seg
->source
.foreign
.domid
;
862 op
->source
.offset
= seg
->source
.foreign
.offset
+ copied
;
863 op
->flags
|= GNTCOPY_source_gref
;
865 virt
= seg
->source
.virt
+ copied
;
866 off
= (unsigned long)virt
& ~XEN_PAGE_MASK
;
867 len
= min(len
, (size_t)XEN_PAGE_SIZE
- off
);
869 ret
= gntdev_get_page(batch
, virt
, false, &gfn
);
873 op
->source
.u
.gmfn
= gfn
;
874 op
->source
.domid
= DOMID_SELF
;
875 op
->source
.offset
= off
;
878 if (seg
->flags
& GNTCOPY_dest_gref
) {
879 op
->dest
.u
.ref
= seg
->dest
.foreign
.ref
;
880 op
->dest
.domid
= seg
->dest
.foreign
.domid
;
881 op
->dest
.offset
= seg
->dest
.foreign
.offset
+ copied
;
882 op
->flags
|= GNTCOPY_dest_gref
;
884 virt
= seg
->dest
.virt
+ copied
;
885 off
= (unsigned long)virt
& ~XEN_PAGE_MASK
;
886 len
= min(len
, (size_t)XEN_PAGE_SIZE
- off
);
888 ret
= gntdev_get_page(batch
, virt
, true, &gfn
);
892 op
->dest
.u
.gmfn
= gfn
;
893 op
->dest
.domid
= DOMID_SELF
;
894 op
->dest
.offset
= off
;
900 batch
->status
[batch
->nr_ops
] = status
;
907 static long gntdev_ioctl_grant_copy(struct gntdev_priv
*priv
, void __user
*u
)
909 struct ioctl_gntdev_grant_copy copy
;
910 struct gntdev_copy_batch batch
;
914 if (copy_from_user(©
, u
, sizeof(copy
)))
920 for (i
= 0; i
< copy
.count
; i
++) {
921 struct gntdev_grant_copy_segment seg
;
923 if (copy_from_user(&seg
, ©
.segments
[i
], sizeof(seg
))) {
928 ret
= gntdev_grant_copy_seg(&batch
, &seg
, ©
.segments
[i
].status
);
935 ret
= gntdev_copy(&batch
);
939 gntdev_put_pages(&batch
);
943 static long gntdev_ioctl(struct file
*flip
,
944 unsigned int cmd
, unsigned long arg
)
946 struct gntdev_priv
*priv
= flip
->private_data
;
947 void __user
*ptr
= (void __user
*)arg
;
950 case IOCTL_GNTDEV_MAP_GRANT_REF
:
951 return gntdev_ioctl_map_grant_ref(priv
, ptr
);
953 case IOCTL_GNTDEV_UNMAP_GRANT_REF
:
954 return gntdev_ioctl_unmap_grant_ref(priv
, ptr
);
956 case IOCTL_GNTDEV_GET_OFFSET_FOR_VADDR
:
957 return gntdev_ioctl_get_offset_for_vaddr(priv
, ptr
);
959 case IOCTL_GNTDEV_SET_UNMAP_NOTIFY
:
960 return gntdev_ioctl_notify(priv
, ptr
);
962 case IOCTL_GNTDEV_GRANT_COPY
:
963 return gntdev_ioctl_grant_copy(priv
, ptr
);
966 pr_debug("priv %p, unknown cmd %x\n", priv
, cmd
);
973 static int gntdev_mmap(struct file
*flip
, struct vm_area_struct
*vma
)
975 struct gntdev_priv
*priv
= flip
->private_data
;
976 int index
= vma
->vm_pgoff
;
977 int count
= vma_pages(vma
);
978 struct grant_map
*map
;
979 int i
, err
= -EINVAL
;
981 if ((vma
->vm_flags
& VM_WRITE
) && !(vma
->vm_flags
& VM_SHARED
))
984 pr_debug("map %d+%d at %lx (pgoff %lx)\n",
985 index
, count
, vma
->vm_start
, vma
->vm_pgoff
);
987 mutex_lock(&priv
->lock
);
988 map
= gntdev_find_map_index(priv
, index
, count
);
991 if (use_ptemod
&& map
->vma
)
993 if (use_ptemod
&& priv
->mm
!= vma
->vm_mm
) {
994 pr_warn("Huh? Other mm?\n");
998 refcount_inc(&map
->users
);
1000 vma
->vm_ops
= &gntdev_vmops
;
1002 vma
->vm_flags
|= VM_DONTEXPAND
| VM_DONTDUMP
| VM_MIXEDMAP
;
1005 vma
->vm_flags
|= VM_DONTCOPY
;
1007 vma
->vm_private_data
= map
;
1013 if ((vma
->vm_flags
& VM_WRITE
) &&
1014 (map
->flags
& GNTMAP_readonly
))
1015 goto out_unlock_put
;
1017 map
->flags
= GNTMAP_host_map
;
1018 if (!(vma
->vm_flags
& VM_WRITE
))
1019 map
->flags
|= GNTMAP_readonly
;
1022 mutex_unlock(&priv
->lock
);
1025 map
->pages_vm_start
= vma
->vm_start
;
1026 err
= apply_to_page_range(vma
->vm_mm
, vma
->vm_start
,
1027 vma
->vm_end
- vma
->vm_start
,
1028 find_grant_ptes
, map
);
1030 pr_warn("find_grant_ptes() failure.\n");
1035 err
= map_grant_pages(map
);
1040 for (i
= 0; i
< count
; i
++) {
1041 err
= vm_insert_page(vma
, vma
->vm_start
+ i
*PAGE_SIZE
,
1049 * If the PTEs were not made special by the grant map
1050 * hypercall, do so here.
1052 * This is racy since the mapping is already visible
1053 * to userspace but userspace should be well-behaved
1054 * enough to not touch it until the mmap() call
1057 if (!xen_feature(XENFEAT_gnttab_map_avail_bits
)) {
1058 apply_to_page_range(vma
->vm_mm
, vma
->vm_start
,
1059 vma
->vm_end
- vma
->vm_start
,
1060 set_grant_ptes_as_special
, NULL
);
1068 mutex_unlock(&priv
->lock
);
1072 mutex_unlock(&priv
->lock
);
1076 unmap_grant_pages(map
, 0, map
->count
);
1078 gntdev_put_map(priv
, map
);
1082 static const struct file_operations gntdev_fops
= {
1083 .owner
= THIS_MODULE
,
1084 .open
= gntdev_open
,
1085 .release
= gntdev_release
,
1086 .mmap
= gntdev_mmap
,
1087 .unlocked_ioctl
= gntdev_ioctl
1090 static struct miscdevice gntdev_miscdev
= {
1091 .minor
= MISC_DYNAMIC_MINOR
,
1092 .name
= "xen/gntdev",
1093 .fops
= &gntdev_fops
,
1096 /* ------------------------------------------------------------------ */
1098 static int __init
gntdev_init(void)
1105 use_ptemod
= !xen_feature(XENFEAT_auto_translated_physmap
);
1107 err
= misc_register(&gntdev_miscdev
);
1109 pr_err("Could not register gntdev device\n");
1115 static void __exit
gntdev_exit(void)
1117 misc_deregister(&gntdev_miscdev
);
1120 module_init(gntdev_init
);
1121 module_exit(gntdev_exit
);
1123 /* ------------------------------------------------------------------ */