Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * grant_table.c |
| 3 | * x86 specific part |
| 4 | * |
| 5 | * Granting foreign access to our memory reservation. |
| 6 | * |
| 7 | * Copyright (c) 2005-2006, Christopher Clark |
| 8 | * Copyright (c) 2004-2005, K A Fraser |
| 9 | * Copyright (c) 2008 Isaku Yamahata <yamahata at valinux co jp> |
| 10 | * VA Linux Systems Japan. Split out x86 specific part. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License version 2 |
| 14 | * as published by the Free Software Foundation; or, when distributed |
| 15 | * separately from the Linux kernel or incorporated into other |
| 16 | * software packages, subject to the following license: |
| 17 | * |
| 18 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 19 | * of this source file (the "Software"), to deal in the Software without |
| 20 | * restriction, including without limitation the rights to use, copy, modify, |
| 21 | * merge, publish, distribute, sublicense, and/or sell copies of the Software, |
| 22 | * and to permit persons to whom the Software is furnished to do so, subject to |
| 23 | * the following conditions: |
| 24 | * |
| 25 | * The above copyright notice and this permission notice shall be included in |
| 26 | * all copies or substantial portions of the Software. |
| 27 | * |
| 28 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 29 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 30 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 31 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 32 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 33 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 34 | * IN THE SOFTWARE. |
| 35 | */ |
| 36 | |
| 37 | #include <linux/sched.h> |
| 38 | #include <linux/mm.h> |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 39 | #include <linux/slab.h> |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 40 | #include <linux/vmalloc.h> |
| 41 | |
| 42 | #include <xen/interface/xen.h> |
| 43 | #include <xen/page.h> |
| 44 | #include <xen/grant_table.h> |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 45 | #include <xen/xen.h> |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 46 | |
| 47 | #include <asm/pgtable.h> |
| 48 | |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 49 | static struct gnttab_vm_area { |
| 50 | struct vm_struct *area; |
| 51 | pte_t **ptes; |
David Vrabel | 438b33c | 2014-07-02 11:25:29 +0100 | [diff] [blame] | 52 | } gnttab_shared_vm_area; |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 53 | |
| 54 | int arch_gnttab_map_shared(unsigned long *frames, unsigned long nr_gframes, |
| 55 | unsigned long max_nr_gframes, |
Annie Li | 0f9f5a9 | 2011-11-22 09:58:06 +0800 | [diff] [blame] | 56 | void **__shared) |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 57 | { |
Annie Li | 0f9f5a9 | 2011-11-22 09:58:06 +0800 | [diff] [blame] | 58 | void *shared = *__shared; |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 59 | unsigned long addr; |
| 60 | unsigned long i; |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 61 | |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 62 | if (shared == NULL) |
| 63 | *__shared = shared = gnttab_shared_vm_area.area->addr; |
| 64 | |
| 65 | addr = (unsigned long)shared; |
| 66 | |
| 67 | for (i = 0; i < nr_gframes; i++) { |
| 68 | set_pte_at(&init_mm, addr, gnttab_shared_vm_area.ptes[i], |
| 69 | mfn_pte(frames[i], PAGE_KERNEL)); |
| 70 | addr += PAGE_SIZE; |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 71 | } |
| 72 | |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 73 | return 0; |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Annie Li | 85ff6ac | 2011-11-22 09:59:21 +0800 | [diff] [blame] | 76 | void arch_gnttab_unmap(void *shared, unsigned long nr_gframes) |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 77 | { |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 78 | unsigned long addr; |
| 79 | unsigned long i; |
| 80 | |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 81 | addr = (unsigned long)shared; |
| 82 | |
| 83 | for (i = 0; i < nr_gframes; i++) { |
David Vrabel | 438b33c | 2014-07-02 11:25:29 +0100 | [diff] [blame] | 84 | set_pte_at(&init_mm, addr, gnttab_shared_vm_area.ptes[i], |
| 85 | __pte(0)); |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 86 | addr += PAGE_SIZE; |
| 87 | } |
Isaku Yamahata | 8d3d210 | 2008-04-02 10:54:00 -0700 | [diff] [blame] | 88 | } |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 89 | |
| 90 | static int arch_gnttab_valloc(struct gnttab_vm_area *area, unsigned nr_frames) |
| 91 | { |
Markus Elfring | 4f0fbdf | 2016-08-25 13:23:06 +0200 | [diff] [blame] | 92 | area->ptes = kmalloc_array(nr_frames, sizeof(*area->ptes), GFP_KERNEL); |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 93 | if (area->ptes == NULL) |
| 94 | return -ENOMEM; |
| 95 | |
| 96 | area->area = alloc_vm_area(PAGE_SIZE * nr_frames, area->ptes); |
| 97 | if (area->area == NULL) { |
| 98 | kfree(area->ptes); |
| 99 | return -ENOMEM; |
| 100 | } |
| 101 | |
| 102 | return 0; |
| 103 | } |
| 104 | |
David Vrabel | 438b33c | 2014-07-02 11:25:29 +0100 | [diff] [blame] | 105 | int arch_gnttab_init(unsigned long nr_shared) |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 106 | { |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 107 | if (!xen_pv_domain()) |
| 108 | return 0; |
| 109 | |
David Vrabel | 438b33c | 2014-07-02 11:25:29 +0100 | [diff] [blame] | 110 | return arch_gnttab_valloc(&gnttab_shared_vm_area, nr_shared); |
David Vrabel | 162e371 | 2014-07-11 16:42:34 +0100 | [diff] [blame] | 111 | } |
| 112 | |
Konrad Rzeszutek Wilk | 6926f6d | 2014-01-03 10:20:18 -0500 | [diff] [blame] | 113 | #ifdef CONFIG_XEN_PVH |
Konrad Rzeszutek Wilk | 6926f6d | 2014-01-03 10:20:18 -0500 | [diff] [blame] | 114 | #include <xen/events.h> |
Shannon Zhao | 243848f | 2016-04-07 20:03:19 +0800 | [diff] [blame] | 115 | #include <xen/xen-ops.h> |
Konrad Rzeszutek Wilk | 6926f6d | 2014-01-03 10:20:18 -0500 | [diff] [blame] | 116 | static int __init xen_pvh_gnttab_setup(void) |
| 117 | { |
| 118 | if (!xen_pvh_domain()) |
| 119 | return -ENODEV; |
| 120 | |
Shannon Zhao | 243848f | 2016-04-07 20:03:19 +0800 | [diff] [blame] | 121 | xen_auto_xlat_grant_frames.count = gnttab_max_grant_frames(); |
| 122 | |
| 123 | return xen_xlate_map_ballooned_pages(&xen_auto_xlat_grant_frames.pfn, |
| 124 | &xen_auto_xlat_grant_frames.vaddr, |
| 125 | xen_auto_xlat_grant_frames.count); |
Konrad Rzeszutek Wilk | 6926f6d | 2014-01-03 10:20:18 -0500 | [diff] [blame] | 126 | } |
| 127 | /* Call it _before_ __gnttab_init as we need to initialize the |
| 128 | * xen_auto_xlat_grant_frames first. */ |
| 129 | core_initcall(xen_pvh_gnttab_setup); |
| 130 | #endif |