Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * gntdev.c |
| 3 | * |
| 4 | * Device for accessing (in user-space) pages that have been granted by other |
| 5 | * domains. |
| 6 | * |
| 7 | * Copyright (c) 2006-2007, D G Murray. |
| 8 | * (c) 2009 Gerd Hoffmann <kraxel@redhat.com> |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 9 | * (c) 2018 Oleksandr Andrushchenko, EPAM Systems Inc. |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | #undef DEBUG |
| 22 | |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 23 | #define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt |
| 24 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/init.h> |
| 28 | #include <linux/miscdevice.h> |
| 29 | #include <linux/fs.h> |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 30 | #include <linux/uaccess.h> |
| 31 | #include <linux/sched.h> |
Ingo Molnar | 6e84f31 | 2017-02-08 18:51:29 +0100 | [diff] [blame] | 32 | #include <linux/sched/mm.h> |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 33 | #include <linux/spinlock.h> |
| 34 | #include <linux/slab.h> |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 35 | #include <linux/highmem.h> |
Elena Reshetova | c5f7c5a | 2017-03-06 16:21:16 +0200 | [diff] [blame] | 36 | #include <linux/refcount.h> |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 37 | #ifdef CONFIG_XEN_GRANT_DMA_ALLOC |
| 38 | #include <linux/of_device.h> |
| 39 | #endif |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 40 | |
| 41 | #include <xen/xen.h> |
| 42 | #include <xen/grant_table.h> |
Daniel De Graaf | ca47cea | 2011-03-09 18:07:34 -0500 | [diff] [blame] | 43 | #include <xen/balloon.h> |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 44 | #include <xen/gntdev.h> |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 45 | #include <xen/events.h> |
Julien Grall | a9fd60e | 2015-06-17 15:28:02 +0100 | [diff] [blame] | 46 | #include <xen/page.h> |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 47 | #include <asm/xen/hypervisor.h> |
| 48 | #include <asm/xen/hypercall.h> |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 49 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 50 | #include "gntdev-common.h" |
Oleksandr Andrushchenko | 932d656 | 2018-07-20 12:01:48 +0300 | [diff] [blame] | 51 | #ifdef CONFIG_XEN_GNTDEV_DMABUF |
| 52 | #include "gntdev-dmabuf.h" |
| 53 | #endif |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 54 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 55 | MODULE_LICENSE("GPL"); |
| 56 | MODULE_AUTHOR("Derek G. Murray <Derek.Murray@cl.cam.ac.uk>, " |
| 57 | "Gerd Hoffmann <kraxel@redhat.com>"); |
| 58 | MODULE_DESCRIPTION("User-space granted page access driver"); |
| 59 | |
Daniel De Graaf | ef91082 | 2011-02-03 12:18:59 -0500 | [diff] [blame] | 60 | static int limit = 1024*1024; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 61 | module_param(limit, int, 0644); |
Daniel De Graaf | ef91082 | 2011-02-03 12:18:59 -0500 | [diff] [blame] | 62 | MODULE_PARM_DESC(limit, "Maximum number of grants that may be mapped by " |
| 63 | "the gntdev device"); |
| 64 | |
| 65 | static atomic_t pages_mapped = ATOMIC_INIT(0); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 66 | |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 67 | static int use_ptemod; |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 68 | #define populate_freeable_maps use_ptemod |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 69 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 70 | static int unmap_grant_pages(struct gntdev_grant_map *map, |
| 71 | int offset, int pages); |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 72 | |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 73 | static struct miscdevice gntdev_miscdev; |
| 74 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 75 | /* ------------------------------------------------------------------ */ |
| 76 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 77 | bool gntdev_account_mapped_pages(int count) |
| 78 | { |
| 79 | return atomic_add_return(count, &pages_mapped) > limit; |
| 80 | } |
| 81 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 82 | static void gntdev_print_maps(struct gntdev_priv *priv, |
| 83 | char *text, int text_index) |
| 84 | { |
| 85 | #ifdef DEBUG |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 86 | struct gntdev_grant_map *map; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 87 | |
Daniel De Graaf | ef91082 | 2011-02-03 12:18:59 -0500 | [diff] [blame] | 88 | pr_debug("%s: maps list (priv %p)\n", __func__, priv); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 89 | list_for_each_entry(map, &priv->maps, next) |
| 90 | pr_debug(" index %2d, count %2d %s\n", |
| 91 | map->index, map->count, |
| 92 | map->index == text_index && text ? text : ""); |
| 93 | #endif |
| 94 | } |
| 95 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 96 | static void gntdev_free_map(struct gntdev_grant_map *map) |
David Vrabel | a67baeb7 | 2012-10-24 12:39:02 +0100 | [diff] [blame] | 97 | { |
| 98 | if (map == NULL) |
| 99 | return; |
| 100 | |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 101 | #ifdef CONFIG_XEN_GRANT_DMA_ALLOC |
| 102 | if (map->dma_vaddr) { |
| 103 | struct gnttab_dma_alloc_args args; |
| 104 | |
| 105 | args.dev = map->dma_dev; |
| 106 | args.coherent = !!(map->dma_flags & GNTDEV_DMA_FLAG_COHERENT); |
| 107 | args.nr_pages = map->count; |
| 108 | args.pages = map->pages; |
| 109 | args.frames = map->frames; |
| 110 | args.vaddr = map->dma_vaddr; |
| 111 | args.dev_bus_addr = map->dma_bus_addr; |
| 112 | |
| 113 | gnttab_dma_free_pages(&args); |
| 114 | } else |
| 115 | #endif |
David Vrabel | a67baeb7 | 2012-10-24 12:39:02 +0100 | [diff] [blame] | 116 | if (map->pages) |
David Vrabel | ff4b156 | 2015-01-08 18:06:01 +0000 | [diff] [blame] | 117 | gnttab_free_pages(map->count, map->pages); |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 118 | |
| 119 | #ifdef CONFIG_XEN_GRANT_DMA_ALLOC |
| 120 | kfree(map->frames); |
| 121 | #endif |
David Vrabel | a67baeb7 | 2012-10-24 12:39:02 +0100 | [diff] [blame] | 122 | kfree(map->pages); |
| 123 | kfree(map->grants); |
| 124 | kfree(map->map_ops); |
| 125 | kfree(map->unmap_ops); |
| 126 | kfree(map->kmap_ops); |
David Vrabel | 853d028 | 2015-01-05 14:13:41 +0000 | [diff] [blame] | 127 | kfree(map->kunmap_ops); |
David Vrabel | a67baeb7 | 2012-10-24 12:39:02 +0100 | [diff] [blame] | 128 | kfree(map); |
| 129 | } |
| 130 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 131 | struct gntdev_grant_map *gntdev_alloc_map(struct gntdev_priv *priv, int count, |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 132 | int dma_flags) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 133 | { |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 134 | struct gntdev_grant_map *add; |
Stefano Stabellini | a12b4eb | 2010-12-10 14:56:42 +0000 | [diff] [blame] | 135 | int i; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 136 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 137 | add = kzalloc(sizeof(*add), GFP_KERNEL); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 138 | if (NULL == add) |
| 139 | return NULL; |
| 140 | |
Dan Carpenter | fc6e0c3 | 2011-11-04 21:23:32 +0300 | [diff] [blame] | 141 | add->grants = kcalloc(count, sizeof(add->grants[0]), GFP_KERNEL); |
| 142 | add->map_ops = kcalloc(count, sizeof(add->map_ops[0]), GFP_KERNEL); |
| 143 | add->unmap_ops = kcalloc(count, sizeof(add->unmap_ops[0]), GFP_KERNEL); |
| 144 | add->kmap_ops = kcalloc(count, sizeof(add->kmap_ops[0]), GFP_KERNEL); |
David Vrabel | 853d028 | 2015-01-05 14:13:41 +0000 | [diff] [blame] | 145 | add->kunmap_ops = kcalloc(count, sizeof(add->kunmap_ops[0]), GFP_KERNEL); |
Dan Carpenter | fc6e0c3 | 2011-11-04 21:23:32 +0300 | [diff] [blame] | 146 | add->pages = kcalloc(count, sizeof(add->pages[0]), GFP_KERNEL); |
Stefano Stabellini | a12b4eb | 2010-12-10 14:56:42 +0000 | [diff] [blame] | 147 | if (NULL == add->grants || |
| 148 | NULL == add->map_ops || |
| 149 | NULL == add->unmap_ops || |
Stefano Stabellini | 0930bba | 2011-09-29 11:57:56 +0100 | [diff] [blame] | 150 | NULL == add->kmap_ops || |
David Vrabel | 853d028 | 2015-01-05 14:13:41 +0000 | [diff] [blame] | 151 | NULL == add->kunmap_ops || |
Stefano Stabellini | a12b4eb | 2010-12-10 14:56:42 +0000 | [diff] [blame] | 152 | NULL == add->pages) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 153 | goto err; |
| 154 | |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 155 | #ifdef CONFIG_XEN_GRANT_DMA_ALLOC |
| 156 | add->dma_flags = dma_flags; |
| 157 | |
| 158 | /* |
| 159 | * Check if this mapping is requested to be backed |
| 160 | * by a DMA buffer. |
| 161 | */ |
| 162 | if (dma_flags & (GNTDEV_DMA_FLAG_WC | GNTDEV_DMA_FLAG_COHERENT)) { |
| 163 | struct gnttab_dma_alloc_args args; |
| 164 | |
| 165 | add->frames = kcalloc(count, sizeof(add->frames[0]), |
| 166 | GFP_KERNEL); |
| 167 | if (!add->frames) |
| 168 | goto err; |
| 169 | |
| 170 | /* Remember the device, so we can free DMA memory. */ |
| 171 | add->dma_dev = priv->dma_dev; |
| 172 | |
| 173 | args.dev = priv->dma_dev; |
| 174 | args.coherent = !!(dma_flags & GNTDEV_DMA_FLAG_COHERENT); |
| 175 | args.nr_pages = count; |
| 176 | args.pages = add->pages; |
| 177 | args.frames = add->frames; |
| 178 | |
| 179 | if (gnttab_dma_alloc_pages(&args)) |
| 180 | goto err; |
| 181 | |
| 182 | add->dma_vaddr = args.vaddr; |
| 183 | add->dma_bus_addr = args.dev_bus_addr; |
| 184 | } else |
| 185 | #endif |
David Vrabel | ff4b156 | 2015-01-08 18:06:01 +0000 | [diff] [blame] | 186 | if (gnttab_alloc_pages(count, add->pages)) |
Daniel De Graaf | ca47cea | 2011-03-09 18:07:34 -0500 | [diff] [blame] | 187 | goto err; |
| 188 | |
Stefano Stabellini | a12b4eb | 2010-12-10 14:56:42 +0000 | [diff] [blame] | 189 | for (i = 0; i < count; i++) { |
Daniel De Graaf | 77c35ac | 2011-02-23 08:11:35 -0500 | [diff] [blame] | 190 | add->map_ops[i].handle = -1; |
| 191 | add->unmap_ops[i].handle = -1; |
Stefano Stabellini | 0930bba | 2011-09-29 11:57:56 +0100 | [diff] [blame] | 192 | add->kmap_ops[i].handle = -1; |
David Vrabel | 853d028 | 2015-01-05 14:13:41 +0000 | [diff] [blame] | 193 | add->kunmap_ops[i].handle = -1; |
Stefano Stabellini | a12b4eb | 2010-12-10 14:56:42 +0000 | [diff] [blame] | 194 | } |
| 195 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 196 | add->index = 0; |
| 197 | add->count = count; |
Elena Reshetova | c5f7c5a | 2017-03-06 16:21:16 +0200 | [diff] [blame] | 198 | refcount_set(&add->users, 1); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 199 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 200 | return add; |
| 201 | |
| 202 | err: |
David Vrabel | a67baeb7 | 2012-10-24 12:39:02 +0100 | [diff] [blame] | 203 | gntdev_free_map(add); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 204 | return NULL; |
| 205 | } |
| 206 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 207 | void gntdev_add_map(struct gntdev_priv *priv, struct gntdev_grant_map *add) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 208 | { |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 209 | struct gntdev_grant_map *map; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 210 | |
| 211 | list_for_each_entry(map, &priv->maps, next) { |
| 212 | if (add->index + add->count < map->index) { |
| 213 | list_add_tail(&add->next, &map->next); |
| 214 | goto done; |
| 215 | } |
| 216 | add->index = map->index + map->count; |
| 217 | } |
| 218 | list_add_tail(&add->next, &priv->maps); |
| 219 | |
| 220 | done: |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 221 | gntdev_print_maps(priv, "[new]", add->index); |
| 222 | } |
| 223 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 224 | static struct gntdev_grant_map *gntdev_find_map_index(struct gntdev_priv *priv, |
| 225 | int index, int count) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 226 | { |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 227 | struct gntdev_grant_map *map; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 228 | |
| 229 | list_for_each_entry(map, &priv->maps, next) { |
| 230 | if (map->index != index) |
| 231 | continue; |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 232 | if (count && map->count != count) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 233 | continue; |
| 234 | return map; |
| 235 | } |
| 236 | return NULL; |
| 237 | } |
| 238 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 239 | void gntdev_put_map(struct gntdev_priv *priv, struct gntdev_grant_map *map) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 240 | { |
| 241 | if (!map) |
| 242 | return; |
Stefano Stabellini | a12b4eb | 2010-12-10 14:56:42 +0000 | [diff] [blame] | 243 | |
Elena Reshetova | c5f7c5a | 2017-03-06 16:21:16 +0200 | [diff] [blame] | 244 | if (!refcount_dec_and_test(&map->users)) |
Daniel De Graaf | 68b025c | 2011-02-03 12:19:01 -0500 | [diff] [blame] | 245 | return; |
| 246 | |
| 247 | atomic_sub(map->count, &pages_mapped); |
| 248 | |
Daniel De Graaf | 0cc678f | 2011-10-27 17:58:49 -0400 | [diff] [blame] | 249 | if (map->notify.flags & UNMAP_NOTIFY_SEND_EVENT) { |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 250 | notify_remote_via_evtchn(map->notify.event); |
Daniel De Graaf | 0cc678f | 2011-10-27 17:58:49 -0400 | [diff] [blame] | 251 | evtchn_put(map->notify.event); |
| 252 | } |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 253 | |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 254 | if (populate_freeable_maps && priv) { |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 255 | mutex_lock(&priv->lock); |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 256 | list_del(&map->next); |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 257 | mutex_unlock(&priv->lock); |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 258 | } |
| 259 | |
David Vrabel | a67baeb7 | 2012-10-24 12:39:02 +0100 | [diff] [blame] | 260 | if (map->pages && !use_ptemod) |
| 261 | unmap_grant_pages(map, 0, map->count); |
| 262 | gntdev_free_map(map); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | /* ------------------------------------------------------------------ */ |
| 266 | |
Anshuman Khandual | 8b1e0f8 | 2019-07-11 20:58:43 -0700 | [diff] [blame] | 267 | static int find_grant_ptes(pte_t *pte, unsigned long addr, void *data) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 268 | { |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 269 | struct gntdev_grant_map *map = data; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 270 | unsigned int pgnr = (addr - map->vma->vm_start) >> PAGE_SHIFT; |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 271 | int flags = map->flags | GNTMAP_application_map | GNTMAP_contains_pte; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 272 | u64 pte_maddr; |
| 273 | |
| 274 | BUG_ON(pgnr >= map->count); |
Jeremy Fitzhardinge | ba5d101 | 2010-12-08 10:54:32 -0800 | [diff] [blame] | 275 | pte_maddr = arbitrary_virt_to_machine(pte).maddr; |
| 276 | |
David Vrabel | 923b291 | 2014-12-18 14:56:54 +0000 | [diff] [blame] | 277 | /* |
| 278 | * Set the PTE as special to force get_user_pages_fast() fall |
| 279 | * back to the slow path. If this is not supported as part of |
| 280 | * the grant map, it will be done afterwards. |
| 281 | */ |
| 282 | if (xen_feature(XENFEAT_gnttab_map_avail_bits)) |
| 283 | flags |= (1 << _GNTMAP_guest_avail0); |
| 284 | |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 285 | gnttab_set_map_op(&map->map_ops[pgnr], pte_maddr, flags, |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 286 | map->grants[pgnr].ref, |
| 287 | map->grants[pgnr].domid); |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 288 | gnttab_set_unmap_op(&map->unmap_ops[pgnr], pte_maddr, flags, |
Daniel De Graaf | 77c35ac | 2011-02-23 08:11:35 -0500 | [diff] [blame] | 289 | -1 /* handle */); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 290 | return 0; |
| 291 | } |
| 292 | |
David Vrabel | 923b291 | 2014-12-18 14:56:54 +0000 | [diff] [blame] | 293 | #ifdef CONFIG_X86 |
Anshuman Khandual | 8b1e0f8 | 2019-07-11 20:58:43 -0700 | [diff] [blame] | 294 | static int set_grant_ptes_as_special(pte_t *pte, unsigned long addr, void *data) |
David Vrabel | 923b291 | 2014-12-18 14:56:54 +0000 | [diff] [blame] | 295 | { |
| 296 | set_pte_at(current->mm, addr, pte, pte_mkspecial(*pte)); |
| 297 | return 0; |
| 298 | } |
| 299 | #endif |
| 300 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 301 | int gntdev_map_grant_pages(struct gntdev_grant_map *map) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 302 | { |
| 303 | int i, err = 0; |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 304 | |
| 305 | if (!use_ptemod) { |
Daniel De Graaf | 12996fc | 2011-02-09 16:11:32 -0500 | [diff] [blame] | 306 | /* Note: it could already be mapped */ |
Daniel De Graaf | 77c35ac | 2011-02-23 08:11:35 -0500 | [diff] [blame] | 307 | if (map->map_ops[0].handle != -1) |
Daniel De Graaf | 12996fc | 2011-02-09 16:11:32 -0500 | [diff] [blame] | 308 | return 0; |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 309 | for (i = 0; i < map->count; i++) { |
Ian Campbell | 38eaeb0 | 2011-03-08 16:56:43 +0000 | [diff] [blame] | 310 | unsigned long addr = (unsigned long) |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 311 | pfn_to_kaddr(page_to_pfn(map->pages[i])); |
| 312 | gnttab_set_map_op(&map->map_ops[i], addr, map->flags, |
| 313 | map->grants[i].ref, |
| 314 | map->grants[i].domid); |
| 315 | gnttab_set_unmap_op(&map->unmap_ops[i], addr, |
Daniel De Graaf | 77c35ac | 2011-02-23 08:11:35 -0500 | [diff] [blame] | 316 | map->flags, -1 /* handle */); |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 317 | } |
Stefano Stabellini | 0930bba | 2011-09-29 11:57:56 +0100 | [diff] [blame] | 318 | } else { |
| 319 | /* |
| 320 | * Setup the map_ops corresponding to the pte entries pointing |
| 321 | * to the kernel linear addresses of the struct pages. |
| 322 | * These ptes are completely different from the user ptes dealt |
| 323 | * with find_grant_ptes. |
| 324 | */ |
| 325 | for (i = 0; i < map->count; i++) { |
Stefano Stabellini | 0930bba | 2011-09-29 11:57:56 +0100 | [diff] [blame] | 326 | unsigned long address = (unsigned long) |
| 327 | pfn_to_kaddr(page_to_pfn(map->pages[i])); |
Stefano Stabellini | 0930bba | 2011-09-29 11:57:56 +0100 | [diff] [blame] | 328 | BUG_ON(PageHighMem(map->pages[i])); |
| 329 | |
Stefano Stabellini | ee07264 | 2013-07-23 17:23:54 +0000 | [diff] [blame] | 330 | gnttab_set_map_op(&map->kmap_ops[i], address, |
| 331 | map->flags | GNTMAP_host_map, |
Stefano Stabellini | 0930bba | 2011-09-29 11:57:56 +0100 | [diff] [blame] | 332 | map->grants[i].ref, |
| 333 | map->grants[i].domid); |
David Vrabel | 853d028 | 2015-01-05 14:13:41 +0000 | [diff] [blame] | 334 | gnttab_set_unmap_op(&map->kunmap_ops[i], address, |
| 335 | map->flags | GNTMAP_host_map, -1); |
Stefano Stabellini | 0930bba | 2011-09-29 11:57:56 +0100 | [diff] [blame] | 336 | } |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 337 | } |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 338 | |
| 339 | pr_debug("map %d+%d\n", map->index, map->count); |
Konrad Rzeszutek Wilk | e85fc98 | 2014-02-03 06:43:59 -0500 | [diff] [blame] | 340 | err = gnttab_map_refs(map->map_ops, use_ptemod ? map->kmap_ops : NULL, |
| 341 | map->pages, map->count); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 342 | if (err) |
| 343 | return err; |
| 344 | |
| 345 | for (i = 0; i < map->count; i++) { |
David Vrabel | 853d028 | 2015-01-05 14:13:41 +0000 | [diff] [blame] | 346 | if (map->map_ops[i].status) { |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 347 | err = -EINVAL; |
David Vrabel | 853d028 | 2015-01-05 14:13:41 +0000 | [diff] [blame] | 348 | continue; |
Daniel De Graaf | 77c35ac | 2011-02-23 08:11:35 -0500 | [diff] [blame] | 349 | } |
David Vrabel | 853d028 | 2015-01-05 14:13:41 +0000 | [diff] [blame] | 350 | |
| 351 | map->unmap_ops[i].handle = map->map_ops[i].handle; |
| 352 | if (use_ptemod) |
| 353 | map->kunmap_ops[i].handle = map->kmap_ops[i].handle; |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 354 | #ifdef CONFIG_XEN_GRANT_DMA_ALLOC |
| 355 | else if (map->dma_vaddr) { |
| 356 | unsigned long bfn; |
| 357 | |
| 358 | bfn = pfn_to_bfn(page_to_pfn(map->pages[i])); |
| 359 | map->unmap_ops[i].dev_bus_addr = __pfn_to_phys(bfn); |
| 360 | } |
| 361 | #endif |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 362 | } |
| 363 | return err; |
| 364 | } |
| 365 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 366 | static int __unmap_grant_pages(struct gntdev_grant_map *map, int offset, |
| 367 | int pages) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 368 | { |
| 369 | int i, err = 0; |
Jennifer Herbert | 7452822 | 2015-01-05 15:07:46 +0000 | [diff] [blame] | 370 | struct gntab_unmap_queue_data unmap_data; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 371 | |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 372 | if (map->notify.flags & UNMAP_NOTIFY_CLEAR_BYTE) { |
| 373 | int pgno = (map->notify.addr >> PAGE_SHIFT); |
Daniel De Graaf | 1affa98 | 2013-01-02 17:57:13 -0500 | [diff] [blame] | 374 | if (pgno >= offset && pgno < offset + pages) { |
| 375 | /* No need for kmap, pages are in lowmem */ |
| 376 | uint8_t *tmp = pfn_to_kaddr(page_to_pfn(map->pages[pgno])); |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 377 | tmp[map->notify.addr & (PAGE_SIZE-1)] = 0; |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 378 | map->notify.flags &= ~UNMAP_NOTIFY_CLEAR_BYTE; |
| 379 | } |
| 380 | } |
| 381 | |
Jennifer Herbert | 7452822 | 2015-01-05 15:07:46 +0000 | [diff] [blame] | 382 | unmap_data.unmap_ops = map->unmap_ops + offset; |
| 383 | unmap_data.kunmap_ops = use_ptemod ? map->kunmap_ops + offset : NULL; |
| 384 | unmap_data.pages = map->pages + offset; |
| 385 | unmap_data.count = pages; |
| 386 | |
Bob Liu | b44166c | 2015-04-03 14:42:59 +0800 | [diff] [blame] | 387 | err = gnttab_unmap_refs_sync(&unmap_data); |
| 388 | if (err) |
| 389 | return err; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 390 | |
| 391 | for (i = 0; i < pages; i++) { |
| 392 | if (map->unmap_ops[offset+i].status) |
| 393 | err = -EINVAL; |
Daniel De Graaf | 77c35ac | 2011-02-23 08:11:35 -0500 | [diff] [blame] | 394 | pr_debug("unmap handle=%d st=%d\n", |
| 395 | map->unmap_ops[offset+i].handle, |
| 396 | map->unmap_ops[offset+i].status); |
| 397 | map->unmap_ops[offset+i].handle = -1; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 398 | } |
| 399 | return err; |
| 400 | } |
| 401 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 402 | static int unmap_grant_pages(struct gntdev_grant_map *map, int offset, |
| 403 | int pages) |
Daniel De Graaf | b57c186 | 2011-02-09 15:12:00 -0500 | [diff] [blame] | 404 | { |
| 405 | int range, err = 0; |
| 406 | |
| 407 | pr_debug("unmap %d+%d [%d+%d]\n", map->index, map->count, offset, pages); |
| 408 | |
| 409 | /* It is possible the requested range will have a "hole" where we |
| 410 | * already unmapped some of the grants. Only unmap valid ranges. |
| 411 | */ |
| 412 | while (pages && !err) { |
Daniel De Graaf | 77c35ac | 2011-02-23 08:11:35 -0500 | [diff] [blame] | 413 | while (pages && map->unmap_ops[offset].handle == -1) { |
Daniel De Graaf | b57c186 | 2011-02-09 15:12:00 -0500 | [diff] [blame] | 414 | offset++; |
| 415 | pages--; |
| 416 | } |
| 417 | range = 0; |
| 418 | while (range < pages) { |
Ross Lagerwall | 951a010 | 2018-01-09 12:10:21 +0000 | [diff] [blame] | 419 | if (map->unmap_ops[offset+range].handle == -1) |
Daniel De Graaf | b57c186 | 2011-02-09 15:12:00 -0500 | [diff] [blame] | 420 | break; |
Daniel De Graaf | b57c186 | 2011-02-09 15:12:00 -0500 | [diff] [blame] | 421 | range++; |
| 422 | } |
| 423 | err = __unmap_grant_pages(map, offset, range); |
| 424 | offset += range; |
| 425 | pages -= range; |
| 426 | } |
| 427 | |
| 428 | return err; |
| 429 | } |
| 430 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 431 | /* ------------------------------------------------------------------ */ |
| 432 | |
Daniel De Graaf | d79647a | 2011-03-07 15:18:57 -0500 | [diff] [blame] | 433 | static void gntdev_vma_open(struct vm_area_struct *vma) |
| 434 | { |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 435 | struct gntdev_grant_map *map = vma->vm_private_data; |
Daniel De Graaf | d79647a | 2011-03-07 15:18:57 -0500 | [diff] [blame] | 436 | |
| 437 | pr_debug("gntdev_vma_open %p\n", vma); |
Elena Reshetova | c5f7c5a | 2017-03-06 16:21:16 +0200 | [diff] [blame] | 438 | refcount_inc(&map->users); |
Daniel De Graaf | d79647a | 2011-03-07 15:18:57 -0500 | [diff] [blame] | 439 | } |
| 440 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 441 | static void gntdev_vma_close(struct vm_area_struct *vma) |
| 442 | { |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 443 | struct gntdev_grant_map *map = vma->vm_private_data; |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 444 | struct file *file = vma->vm_file; |
| 445 | struct gntdev_priv *priv = file->private_data; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 446 | |
Daniel De Graaf | d79647a | 2011-03-07 15:18:57 -0500 | [diff] [blame] | 447 | pr_debug("gntdev_vma_close %p\n", vma); |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 448 | if (use_ptemod) { |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 449 | /* It is possible that an mmu notifier could be running |
| 450 | * concurrently, so take priv->lock to ensure that the vma won't |
| 451 | * vanishing during the unmap_grant_pages call, since we will |
| 452 | * spin here until that completes. Such a concurrent call will |
| 453 | * not do any unmapping, since that has been done prior to |
| 454 | * closing the vma, but it may still iterate the unmap_ops list. |
| 455 | */ |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 456 | mutex_lock(&priv->lock); |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 457 | map->vma = NULL; |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 458 | mutex_unlock(&priv->lock); |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 459 | } |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 460 | vma->vm_private_data = NULL; |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 461 | gntdev_put_map(priv, map); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 462 | } |
| 463 | |
David Vrabel | dab069c | 2014-12-18 14:59:07 +0000 | [diff] [blame] | 464 | static struct page *gntdev_vma_find_special_page(struct vm_area_struct *vma, |
| 465 | unsigned long addr) |
| 466 | { |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 467 | struct gntdev_grant_map *map = vma->vm_private_data; |
David Vrabel | dab069c | 2014-12-18 14:59:07 +0000 | [diff] [blame] | 468 | |
| 469 | return map->pages[(addr - map->pages_vm_start) >> PAGE_SHIFT]; |
| 470 | } |
| 471 | |
Kirill A. Shutemov | 7cbea8d | 2015-09-09 15:39:26 -0700 | [diff] [blame] | 472 | static const struct vm_operations_struct gntdev_vmops = { |
Daniel De Graaf | d79647a | 2011-03-07 15:18:57 -0500 | [diff] [blame] | 473 | .open = gntdev_vma_open, |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 474 | .close = gntdev_vma_close, |
David Vrabel | dab069c | 2014-12-18 14:59:07 +0000 | [diff] [blame] | 475 | .find_special_page = gntdev_vma_find_special_page, |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 476 | }; |
| 477 | |
| 478 | /* ------------------------------------------------------------------ */ |
| 479 | |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 480 | static bool in_range(struct gntdev_grant_map *map, |
| 481 | unsigned long start, unsigned long end) |
| 482 | { |
| 483 | if (!map->vma) |
| 484 | return false; |
| 485 | if (map->vma->vm_start >= end) |
| 486 | return false; |
| 487 | if (map->vma->vm_end <= start) |
| 488 | return false; |
| 489 | |
| 490 | return true; |
| 491 | } |
| 492 | |
Michal Hocko | 58a5756 | 2018-09-05 09:21:39 +1000 | [diff] [blame] | 493 | static int unmap_if_in_range(struct gntdev_grant_map *map, |
| 494 | unsigned long start, unsigned long end, |
| 495 | bool blockable) |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 496 | { |
| 497 | unsigned long mstart, mend; |
| 498 | int err; |
| 499 | |
Michal Hocko | 58a5756 | 2018-09-05 09:21:39 +1000 | [diff] [blame] | 500 | if (!in_range(map, start, end)) |
| 501 | return 0; |
| 502 | |
| 503 | if (!blockable) |
| 504 | return -EAGAIN; |
| 505 | |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 506 | mstart = max(start, map->vma->vm_start); |
| 507 | mend = min(end, map->vma->vm_end); |
| 508 | pr_debug("map %d+%d (%lx %lx), range %lx %lx, mrange %lx %lx\n", |
| 509 | map->index, map->count, |
| 510 | map->vma->vm_start, map->vma->vm_end, |
| 511 | start, end, mstart, mend); |
| 512 | err = unmap_grant_pages(map, |
| 513 | (mstart - map->vma->vm_start) >> PAGE_SHIFT, |
| 514 | (mend - mstart) >> PAGE_SHIFT); |
| 515 | WARN_ON(err); |
Michal Hocko | 58a5756 | 2018-09-05 09:21:39 +1000 | [diff] [blame] | 516 | |
| 517 | return 0; |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 520 | static int mn_invl_range_start(struct mmu_notifier *mn, |
Jérôme Glisse | 5d6527a | 2018-12-28 00:38:05 -0800 | [diff] [blame] | 521 | const struct mmu_notifier_range *range) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 522 | { |
| 523 | struct gntdev_priv *priv = container_of(mn, struct gntdev_priv, mn); |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 524 | struct gntdev_grant_map *map; |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 525 | int ret = 0; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 526 | |
Jérôme Glisse | dfcd666 | 2019-05-13 17:20:38 -0700 | [diff] [blame] | 527 | if (mmu_notifier_range_blockable(range)) |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 528 | mutex_lock(&priv->lock); |
| 529 | else if (!mutex_trylock(&priv->lock)) |
| 530 | return -EAGAIN; |
| 531 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 532 | list_for_each_entry(map, &priv->maps, next) { |
Jérôme Glisse | 5d6527a | 2018-12-28 00:38:05 -0800 | [diff] [blame] | 533 | ret = unmap_if_in_range(map, range->start, range->end, |
Jérôme Glisse | dfcd666 | 2019-05-13 17:20:38 -0700 | [diff] [blame] | 534 | mmu_notifier_range_blockable(range)); |
Michal Hocko | 58a5756 | 2018-09-05 09:21:39 +1000 | [diff] [blame] | 535 | if (ret) |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 536 | goto out_unlock; |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 537 | } |
| 538 | list_for_each_entry(map, &priv->freeable_maps, next) { |
Jérôme Glisse | 5d6527a | 2018-12-28 00:38:05 -0800 | [diff] [blame] | 539 | ret = unmap_if_in_range(map, range->start, range->end, |
Jérôme Glisse | dfcd666 | 2019-05-13 17:20:38 -0700 | [diff] [blame] | 540 | mmu_notifier_range_blockable(range)); |
Michal Hocko | 58a5756 | 2018-09-05 09:21:39 +1000 | [diff] [blame] | 541 | if (ret) |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 542 | goto out_unlock; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 543 | } |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 544 | |
| 545 | out_unlock: |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 546 | mutex_unlock(&priv->lock); |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 547 | |
| 548 | return ret; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 549 | } |
| 550 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 551 | static void mn_release(struct mmu_notifier *mn, |
| 552 | struct mm_struct *mm) |
| 553 | { |
| 554 | struct gntdev_priv *priv = container_of(mn, struct gntdev_priv, mn); |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 555 | struct gntdev_grant_map *map; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 556 | int err; |
| 557 | |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 558 | mutex_lock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 559 | list_for_each_entry(map, &priv->maps, next) { |
| 560 | if (!map->vma) |
| 561 | continue; |
| 562 | pr_debug("map %d+%d (%lx %lx)\n", |
| 563 | map->index, map->count, |
| 564 | map->vma->vm_start, map->vma->vm_end); |
| 565 | err = unmap_grant_pages(map, /* offset */ 0, map->count); |
| 566 | WARN_ON(err); |
| 567 | } |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 568 | list_for_each_entry(map, &priv->freeable_maps, next) { |
| 569 | if (!map->vma) |
| 570 | continue; |
| 571 | pr_debug("map %d+%d (%lx %lx)\n", |
| 572 | map->index, map->count, |
| 573 | map->vma->vm_start, map->vma->vm_end); |
| 574 | err = unmap_grant_pages(map, /* offset */ 0, map->count); |
| 575 | WARN_ON(err); |
| 576 | } |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 577 | mutex_unlock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 578 | } |
| 579 | |
Julia Lawall | b9c0a92 | 2015-11-29 23:02:49 +0100 | [diff] [blame] | 580 | static const struct mmu_notifier_ops gntdev_mmu_ops = { |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 581 | .release = mn_release, |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 582 | .invalidate_range_start = mn_invl_range_start, |
| 583 | }; |
| 584 | |
| 585 | /* ------------------------------------------------------------------ */ |
| 586 | |
| 587 | static int gntdev_open(struct inode *inode, struct file *flip) |
| 588 | { |
| 589 | struct gntdev_priv *priv; |
| 590 | int ret = 0; |
| 591 | |
| 592 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
| 593 | if (!priv) |
| 594 | return -ENOMEM; |
| 595 | |
| 596 | INIT_LIST_HEAD(&priv->maps); |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 597 | INIT_LIST_HEAD(&priv->freeable_maps); |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 598 | mutex_init(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 599 | |
Oleksandr Andrushchenko | 932d656 | 2018-07-20 12:01:48 +0300 | [diff] [blame] | 600 | #ifdef CONFIG_XEN_GNTDEV_DMABUF |
Oleksandr Andrushchenko | fa13e66 | 2019-02-14 16:23:20 +0200 | [diff] [blame] | 601 | priv->dmabuf_priv = gntdev_dmabuf_init(flip); |
Oleksandr Andrushchenko | 932d656 | 2018-07-20 12:01:48 +0300 | [diff] [blame] | 602 | if (IS_ERR(priv->dmabuf_priv)) { |
| 603 | ret = PTR_ERR(priv->dmabuf_priv); |
| 604 | kfree(priv); |
| 605 | return ret; |
| 606 | } |
| 607 | #endif |
| 608 | |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 609 | if (use_ptemod) { |
| 610 | priv->mm = get_task_mm(current); |
| 611 | if (!priv->mm) { |
| 612 | kfree(priv); |
| 613 | return -ENOMEM; |
| 614 | } |
| 615 | priv->mn.ops = &gntdev_mmu_ops; |
| 616 | ret = mmu_notifier_register(&priv->mn, priv->mm); |
| 617 | mmput(priv->mm); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 618 | } |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 619 | |
| 620 | if (ret) { |
| 621 | kfree(priv); |
| 622 | return ret; |
| 623 | } |
| 624 | |
| 625 | flip->private_data = priv; |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 626 | #ifdef CONFIG_XEN_GRANT_DMA_ALLOC |
| 627 | priv->dma_dev = gntdev_miscdev.this_device; |
| 628 | |
| 629 | /* |
| 630 | * The device is not spawn from a device tree, so arch_setup_dma_ops |
| 631 | * is not called, thus leaving the device with dummy DMA ops. |
| 632 | * Fix this by calling of_dma_configure() with a NULL node to set |
| 633 | * default DMA ops. |
| 634 | */ |
| 635 | of_dma_configure(priv->dma_dev, NULL, true); |
| 636 | #endif |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 637 | pr_debug("priv %p\n", priv); |
| 638 | |
| 639 | return 0; |
| 640 | } |
| 641 | |
| 642 | static int gntdev_release(struct inode *inode, struct file *flip) |
| 643 | { |
| 644 | struct gntdev_priv *priv = flip->private_data; |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 645 | struct gntdev_grant_map *map; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 646 | |
| 647 | pr_debug("priv %p\n", priv); |
| 648 | |
Marek Marczykowski-Górecki | 30b03d0 | 2015-06-26 03:28:24 +0200 | [diff] [blame] | 649 | mutex_lock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 650 | while (!list_empty(&priv->maps)) { |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 651 | map = list_entry(priv->maps.next, |
| 652 | struct gntdev_grant_map, next); |
Daniel De Graaf | 68b025c | 2011-02-03 12:19:01 -0500 | [diff] [blame] | 653 | list_del(&map->next); |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 654 | gntdev_put_map(NULL /* already removed */, map); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 655 | } |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 656 | WARN_ON(!list_empty(&priv->freeable_maps)); |
Marek Marczykowski-Górecki | 30b03d0 | 2015-06-26 03:28:24 +0200 | [diff] [blame] | 657 | mutex_unlock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 658 | |
Oleksandr Andrushchenko | 932d656 | 2018-07-20 12:01:48 +0300 | [diff] [blame] | 659 | #ifdef CONFIG_XEN_GNTDEV_DMABUF |
| 660 | gntdev_dmabuf_fini(priv->dmabuf_priv); |
| 661 | #endif |
| 662 | |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 663 | if (use_ptemod) |
| 664 | mmu_notifier_unregister(&priv->mn, priv->mm); |
Oleksandr Andrushchenko | 932d656 | 2018-07-20 12:01:48 +0300 | [diff] [blame] | 665 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 666 | kfree(priv); |
| 667 | return 0; |
| 668 | } |
| 669 | |
| 670 | static long gntdev_ioctl_map_grant_ref(struct gntdev_priv *priv, |
| 671 | struct ioctl_gntdev_map_grant_ref __user *u) |
| 672 | { |
| 673 | struct ioctl_gntdev_map_grant_ref op; |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 674 | struct gntdev_grant_map *map; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 675 | int err; |
| 676 | |
| 677 | if (copy_from_user(&op, u, sizeof(op)) != 0) |
| 678 | return -EFAULT; |
| 679 | pr_debug("priv %p, add %d\n", priv, op.count); |
| 680 | if (unlikely(op.count <= 0)) |
| 681 | return -EINVAL; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 682 | |
| 683 | err = -ENOMEM; |
Oleksandr Andrushchenko | 975ef7f | 2018-07-20 12:01:46 +0300 | [diff] [blame] | 684 | map = gntdev_alloc_map(priv, op.count, 0 /* This is not a dma-buf. */); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 685 | if (!map) |
| 686 | return err; |
Daniel De Graaf | ef91082 | 2011-02-03 12:18:59 -0500 | [diff] [blame] | 687 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 688 | if (unlikely(gntdev_account_mapped_pages(op.count))) { |
Daniel De Graaf | 68b025c | 2011-02-03 12:19:01 -0500 | [diff] [blame] | 689 | pr_debug("can't map: over limit\n"); |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 690 | gntdev_put_map(NULL, map); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 691 | return err; |
| 692 | } |
| 693 | |
Daniel De Graaf | 68b025c | 2011-02-03 12:19:01 -0500 | [diff] [blame] | 694 | if (copy_from_user(map->grants, &u->refs, |
| 695 | sizeof(map->grants[0]) * op.count) != 0) { |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 696 | gntdev_put_map(NULL, map); |
| 697 | return -EFAULT; |
Daniel De Graaf | ef91082 | 2011-02-03 12:18:59 -0500 | [diff] [blame] | 698 | } |
| 699 | |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 700 | mutex_lock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 701 | gntdev_add_map(priv, map); |
| 702 | op.index = map->index << PAGE_SHIFT; |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 703 | mutex_unlock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 704 | |
Daniel De Graaf | 68b025c | 2011-02-03 12:19:01 -0500 | [diff] [blame] | 705 | if (copy_to_user(u, &op, sizeof(op)) != 0) |
| 706 | return -EFAULT; |
| 707 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 708 | return 0; |
| 709 | } |
| 710 | |
| 711 | static long gntdev_ioctl_unmap_grant_ref(struct gntdev_priv *priv, |
| 712 | struct ioctl_gntdev_unmap_grant_ref __user *u) |
| 713 | { |
| 714 | struct ioctl_gntdev_unmap_grant_ref op; |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 715 | struct gntdev_grant_map *map; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 716 | int err = -ENOENT; |
| 717 | |
| 718 | if (copy_from_user(&op, u, sizeof(op)) != 0) |
| 719 | return -EFAULT; |
| 720 | pr_debug("priv %p, del %d+%d\n", priv, (int)op.index, (int)op.count); |
| 721 | |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 722 | mutex_lock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 723 | map = gntdev_find_map_index(priv, op.index >> PAGE_SHIFT, op.count); |
Daniel De Graaf | 68b025c | 2011-02-03 12:19:01 -0500 | [diff] [blame] | 724 | if (map) { |
| 725 | list_del(&map->next); |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 726 | if (populate_freeable_maps) |
| 727 | list_add_tail(&map->next, &priv->freeable_maps); |
Daniel De Graaf | 68b025c | 2011-02-03 12:19:01 -0500 | [diff] [blame] | 728 | err = 0; |
| 729 | } |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 730 | mutex_unlock(&priv->lock); |
Daniel De Graaf | 1f1503b | 2011-10-11 15:16:06 -0400 | [diff] [blame] | 731 | if (map) |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 732 | gntdev_put_map(priv, map); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 733 | return err; |
| 734 | } |
| 735 | |
| 736 | static long gntdev_ioctl_get_offset_for_vaddr(struct gntdev_priv *priv, |
| 737 | struct ioctl_gntdev_get_offset_for_vaddr __user *u) |
| 738 | { |
| 739 | struct ioctl_gntdev_get_offset_for_vaddr op; |
Daniel De Graaf | a879211 | 2011-02-03 12:19:00 -0500 | [diff] [blame] | 740 | struct vm_area_struct *vma; |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 741 | struct gntdev_grant_map *map; |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 742 | int rv = -EINVAL; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 743 | |
| 744 | if (copy_from_user(&op, u, sizeof(op)) != 0) |
| 745 | return -EFAULT; |
| 746 | pr_debug("priv %p, offset for vaddr %lx\n", priv, (unsigned long)op.vaddr); |
| 747 | |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 748 | down_read(¤t->mm->mmap_sem); |
Daniel De Graaf | a879211 | 2011-02-03 12:19:00 -0500 | [diff] [blame] | 749 | vma = find_vma(current->mm, op.vaddr); |
| 750 | if (!vma || vma->vm_ops != &gntdev_vmops) |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 751 | goto out_unlock; |
Daniel De Graaf | a879211 | 2011-02-03 12:19:00 -0500 | [diff] [blame] | 752 | |
| 753 | map = vma->vm_private_data; |
| 754 | if (!map) |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 755 | goto out_unlock; |
Daniel De Graaf | a879211 | 2011-02-03 12:19:00 -0500 | [diff] [blame] | 756 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 757 | op.offset = map->index << PAGE_SHIFT; |
| 758 | op.count = map->count; |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 759 | rv = 0; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 760 | |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 761 | out_unlock: |
| 762 | up_read(¤t->mm->mmap_sem); |
| 763 | |
| 764 | if (rv == 0 && copy_to_user(u, &op, sizeof(op)) != 0) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 765 | return -EFAULT; |
Daniel De Graaf | 2512f29 | 2013-01-02 22:57:11 +0000 | [diff] [blame] | 766 | return rv; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 767 | } |
| 768 | |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 769 | static long gntdev_ioctl_notify(struct gntdev_priv *priv, void __user *u) |
| 770 | { |
| 771 | struct ioctl_gntdev_unmap_notify op; |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 772 | struct gntdev_grant_map *map; |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 773 | int rc; |
Daniel De Graaf | 0cc678f | 2011-10-27 17:58:49 -0400 | [diff] [blame] | 774 | int out_flags; |
| 775 | unsigned int out_event; |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 776 | |
| 777 | if (copy_from_user(&op, u, sizeof(op))) |
| 778 | return -EFAULT; |
| 779 | |
| 780 | if (op.action & ~(UNMAP_NOTIFY_CLEAR_BYTE|UNMAP_NOTIFY_SEND_EVENT)) |
| 781 | return -EINVAL; |
| 782 | |
Daniel De Graaf | 0cc678f | 2011-10-27 17:58:49 -0400 | [diff] [blame] | 783 | /* We need to grab a reference to the event channel we are going to use |
| 784 | * to send the notify before releasing the reference we may already have |
| 785 | * (if someone has called this ioctl twice). This is required so that |
| 786 | * it is possible to change the clear_byte part of the notification |
| 787 | * without disturbing the event channel part, which may now be the last |
| 788 | * reference to that event channel. |
| 789 | */ |
| 790 | if (op.action & UNMAP_NOTIFY_SEND_EVENT) { |
| 791 | if (evtchn_get(op.event_channel_port)) |
| 792 | return -EINVAL; |
| 793 | } |
| 794 | |
| 795 | out_flags = op.action; |
| 796 | out_event = op.event_channel_port; |
| 797 | |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 798 | mutex_lock(&priv->lock); |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 799 | |
| 800 | list_for_each_entry(map, &priv->maps, next) { |
| 801 | uint64_t begin = map->index << PAGE_SHIFT; |
| 802 | uint64_t end = (map->index + map->count) << PAGE_SHIFT; |
| 803 | if (op.index >= begin && op.index < end) |
| 804 | goto found; |
| 805 | } |
| 806 | rc = -ENOENT; |
| 807 | goto unlock_out; |
| 808 | |
| 809 | found: |
Daniel De Graaf | 9960be9 | 2011-02-09 18:15:50 -0500 | [diff] [blame] | 810 | if ((op.action & UNMAP_NOTIFY_CLEAR_BYTE) && |
| 811 | (map->flags & GNTMAP_readonly)) { |
| 812 | rc = -EINVAL; |
| 813 | goto unlock_out; |
| 814 | } |
| 815 | |
Daniel De Graaf | 0cc678f | 2011-10-27 17:58:49 -0400 | [diff] [blame] | 816 | out_flags = map->notify.flags; |
| 817 | out_event = map->notify.event; |
| 818 | |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 819 | map->notify.flags = op.action; |
| 820 | map->notify.addr = op.index - (map->index << PAGE_SHIFT); |
| 821 | map->notify.event = op.event_channel_port; |
Daniel De Graaf | 0cc678f | 2011-10-27 17:58:49 -0400 | [diff] [blame] | 822 | |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 823 | rc = 0; |
Daniel De Graaf | 0cc678f | 2011-10-27 17:58:49 -0400 | [diff] [blame] | 824 | |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 825 | unlock_out: |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 826 | mutex_unlock(&priv->lock); |
Daniel De Graaf | 0cc678f | 2011-10-27 17:58:49 -0400 | [diff] [blame] | 827 | |
| 828 | /* Drop the reference to the event channel we did not save in the map */ |
| 829 | if (out_flags & UNMAP_NOTIFY_SEND_EVENT) |
| 830 | evtchn_put(out_event); |
| 831 | |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 832 | return rc; |
| 833 | } |
| 834 | |
David Vrabel | 36ae220 | 2016-05-09 10:59:48 +0100 | [diff] [blame] | 835 | #define GNTDEV_COPY_BATCH 16 |
David Vrabel | a4cdb55 | 2014-12-02 16:13:26 +0000 | [diff] [blame] | 836 | |
| 837 | struct gntdev_copy_batch { |
| 838 | struct gnttab_copy ops[GNTDEV_COPY_BATCH]; |
| 839 | struct page *pages[GNTDEV_COPY_BATCH]; |
| 840 | s16 __user *status[GNTDEV_COPY_BATCH]; |
| 841 | unsigned int nr_ops; |
| 842 | unsigned int nr_pages; |
| 843 | }; |
| 844 | |
| 845 | static int gntdev_get_page(struct gntdev_copy_batch *batch, void __user *virt, |
| 846 | bool writeable, unsigned long *gfn) |
| 847 | { |
| 848 | unsigned long addr = (unsigned long)virt; |
| 849 | struct page *page; |
| 850 | unsigned long xen_pfn; |
| 851 | int ret; |
| 852 | |
Ira Weiny | 73b0140 | 2019-05-13 17:17:11 -0700 | [diff] [blame] | 853 | ret = get_user_pages_fast(addr, 1, writeable ? FOLL_WRITE : 0, &page); |
David Vrabel | a4cdb55 | 2014-12-02 16:13:26 +0000 | [diff] [blame] | 854 | if (ret < 0) |
| 855 | return ret; |
| 856 | |
| 857 | batch->pages[batch->nr_pages++] = page; |
| 858 | |
| 859 | xen_pfn = page_to_xen_pfn(page) + XEN_PFN_DOWN(addr & ~PAGE_MASK); |
| 860 | *gfn = pfn_to_gfn(xen_pfn); |
| 861 | |
| 862 | return 0; |
| 863 | } |
| 864 | |
| 865 | static void gntdev_put_pages(struct gntdev_copy_batch *batch) |
| 866 | { |
| 867 | unsigned int i; |
| 868 | |
| 869 | for (i = 0; i < batch->nr_pages; i++) |
| 870 | put_page(batch->pages[i]); |
| 871 | batch->nr_pages = 0; |
| 872 | } |
| 873 | |
| 874 | static int gntdev_copy(struct gntdev_copy_batch *batch) |
| 875 | { |
| 876 | unsigned int i; |
| 877 | |
| 878 | gnttab_batch_copy(batch->ops, batch->nr_ops); |
| 879 | gntdev_put_pages(batch); |
| 880 | |
| 881 | /* |
| 882 | * For each completed op, update the status if the op failed |
| 883 | * and all previous ops for the segment were successful. |
| 884 | */ |
| 885 | for (i = 0; i < batch->nr_ops; i++) { |
| 886 | s16 status = batch->ops[i].status; |
| 887 | s16 old_status; |
| 888 | |
| 889 | if (status == GNTST_okay) |
| 890 | continue; |
| 891 | |
| 892 | if (__get_user(old_status, batch->status[i])) |
| 893 | return -EFAULT; |
| 894 | |
| 895 | if (old_status != GNTST_okay) |
| 896 | continue; |
| 897 | |
| 898 | if (__put_user(status, batch->status[i])) |
| 899 | return -EFAULT; |
| 900 | } |
| 901 | |
| 902 | batch->nr_ops = 0; |
| 903 | return 0; |
| 904 | } |
| 905 | |
| 906 | static int gntdev_grant_copy_seg(struct gntdev_copy_batch *batch, |
| 907 | struct gntdev_grant_copy_segment *seg, |
| 908 | s16 __user *status) |
| 909 | { |
| 910 | uint16_t copied = 0; |
| 911 | |
| 912 | /* |
| 913 | * Disallow local -> local copies since there is only space in |
| 914 | * batch->pages for one page per-op and this would be a very |
| 915 | * expensive memcpy(). |
| 916 | */ |
| 917 | if (!(seg->flags & (GNTCOPY_source_gref | GNTCOPY_dest_gref))) |
| 918 | return -EINVAL; |
| 919 | |
| 920 | /* Can't cross page if source/dest is a grant ref. */ |
| 921 | if (seg->flags & GNTCOPY_source_gref) { |
| 922 | if (seg->source.foreign.offset + seg->len > XEN_PAGE_SIZE) |
| 923 | return -EINVAL; |
| 924 | } |
| 925 | if (seg->flags & GNTCOPY_dest_gref) { |
| 926 | if (seg->dest.foreign.offset + seg->len > XEN_PAGE_SIZE) |
| 927 | return -EINVAL; |
| 928 | } |
| 929 | |
| 930 | if (put_user(GNTST_okay, status)) |
| 931 | return -EFAULT; |
| 932 | |
| 933 | while (copied < seg->len) { |
| 934 | struct gnttab_copy *op; |
| 935 | void __user *virt; |
| 936 | size_t len, off; |
| 937 | unsigned long gfn; |
| 938 | int ret; |
| 939 | |
| 940 | if (batch->nr_ops >= GNTDEV_COPY_BATCH) { |
| 941 | ret = gntdev_copy(batch); |
| 942 | if (ret < 0) |
| 943 | return ret; |
| 944 | } |
| 945 | |
| 946 | len = seg->len - copied; |
| 947 | |
| 948 | op = &batch->ops[batch->nr_ops]; |
| 949 | op->flags = 0; |
| 950 | |
| 951 | if (seg->flags & GNTCOPY_source_gref) { |
| 952 | op->source.u.ref = seg->source.foreign.ref; |
| 953 | op->source.domid = seg->source.foreign.domid; |
| 954 | op->source.offset = seg->source.foreign.offset + copied; |
| 955 | op->flags |= GNTCOPY_source_gref; |
| 956 | } else { |
| 957 | virt = seg->source.virt + copied; |
| 958 | off = (unsigned long)virt & ~XEN_PAGE_MASK; |
| 959 | len = min(len, (size_t)XEN_PAGE_SIZE - off); |
| 960 | |
| 961 | ret = gntdev_get_page(batch, virt, false, &gfn); |
| 962 | if (ret < 0) |
| 963 | return ret; |
| 964 | |
| 965 | op->source.u.gmfn = gfn; |
| 966 | op->source.domid = DOMID_SELF; |
| 967 | op->source.offset = off; |
| 968 | } |
| 969 | |
| 970 | if (seg->flags & GNTCOPY_dest_gref) { |
| 971 | op->dest.u.ref = seg->dest.foreign.ref; |
| 972 | op->dest.domid = seg->dest.foreign.domid; |
| 973 | op->dest.offset = seg->dest.foreign.offset + copied; |
| 974 | op->flags |= GNTCOPY_dest_gref; |
| 975 | } else { |
| 976 | virt = seg->dest.virt + copied; |
| 977 | off = (unsigned long)virt & ~XEN_PAGE_MASK; |
| 978 | len = min(len, (size_t)XEN_PAGE_SIZE - off); |
| 979 | |
| 980 | ret = gntdev_get_page(batch, virt, true, &gfn); |
| 981 | if (ret < 0) |
| 982 | return ret; |
| 983 | |
| 984 | op->dest.u.gmfn = gfn; |
| 985 | op->dest.domid = DOMID_SELF; |
| 986 | op->dest.offset = off; |
| 987 | } |
| 988 | |
| 989 | op->len = len; |
| 990 | copied += len; |
| 991 | |
| 992 | batch->status[batch->nr_ops] = status; |
| 993 | batch->nr_ops++; |
| 994 | } |
| 995 | |
| 996 | return 0; |
| 997 | } |
| 998 | |
| 999 | static long gntdev_ioctl_grant_copy(struct gntdev_priv *priv, void __user *u) |
| 1000 | { |
| 1001 | struct ioctl_gntdev_grant_copy copy; |
| 1002 | struct gntdev_copy_batch batch; |
| 1003 | unsigned int i; |
| 1004 | int ret = 0; |
| 1005 | |
| 1006 | if (copy_from_user(©, u, sizeof(copy))) |
| 1007 | return -EFAULT; |
| 1008 | |
| 1009 | batch.nr_ops = 0; |
| 1010 | batch.nr_pages = 0; |
| 1011 | |
| 1012 | for (i = 0; i < copy.count; i++) { |
| 1013 | struct gntdev_grant_copy_segment seg; |
| 1014 | |
| 1015 | if (copy_from_user(&seg, ©.segments[i], sizeof(seg))) { |
| 1016 | ret = -EFAULT; |
| 1017 | goto out; |
| 1018 | } |
| 1019 | |
| 1020 | ret = gntdev_grant_copy_seg(&batch, &seg, ©.segments[i].status); |
| 1021 | if (ret < 0) |
| 1022 | goto out; |
| 1023 | |
| 1024 | cond_resched(); |
| 1025 | } |
| 1026 | if (batch.nr_ops) |
| 1027 | ret = gntdev_copy(&batch); |
| 1028 | return ret; |
| 1029 | |
| 1030 | out: |
| 1031 | gntdev_put_pages(&batch); |
| 1032 | return ret; |
| 1033 | } |
| 1034 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1035 | static long gntdev_ioctl(struct file *flip, |
| 1036 | unsigned int cmd, unsigned long arg) |
| 1037 | { |
| 1038 | struct gntdev_priv *priv = flip->private_data; |
| 1039 | void __user *ptr = (void __user *)arg; |
| 1040 | |
| 1041 | switch (cmd) { |
| 1042 | case IOCTL_GNTDEV_MAP_GRANT_REF: |
| 1043 | return gntdev_ioctl_map_grant_ref(priv, ptr); |
| 1044 | |
| 1045 | case IOCTL_GNTDEV_UNMAP_GRANT_REF: |
| 1046 | return gntdev_ioctl_unmap_grant_ref(priv, ptr); |
| 1047 | |
| 1048 | case IOCTL_GNTDEV_GET_OFFSET_FOR_VADDR: |
| 1049 | return gntdev_ioctl_get_offset_for_vaddr(priv, ptr); |
| 1050 | |
Daniel De Graaf | bdc612d | 2011-02-03 12:19:04 -0500 | [diff] [blame] | 1051 | case IOCTL_GNTDEV_SET_UNMAP_NOTIFY: |
| 1052 | return gntdev_ioctl_notify(priv, ptr); |
| 1053 | |
David Vrabel | a4cdb55 | 2014-12-02 16:13:26 +0000 | [diff] [blame] | 1054 | case IOCTL_GNTDEV_GRANT_COPY: |
| 1055 | return gntdev_ioctl_grant_copy(priv, ptr); |
| 1056 | |
Oleksandr Andrushchenko | 932d656 | 2018-07-20 12:01:48 +0300 | [diff] [blame] | 1057 | #ifdef CONFIG_XEN_GNTDEV_DMABUF |
| 1058 | case IOCTL_GNTDEV_DMABUF_EXP_FROM_REFS: |
| 1059 | return gntdev_ioctl_dmabuf_exp_from_refs(priv, use_ptemod, ptr); |
| 1060 | |
| 1061 | case IOCTL_GNTDEV_DMABUF_EXP_WAIT_RELEASED: |
| 1062 | return gntdev_ioctl_dmabuf_exp_wait_released(priv, ptr); |
| 1063 | |
| 1064 | case IOCTL_GNTDEV_DMABUF_IMP_TO_REFS: |
| 1065 | return gntdev_ioctl_dmabuf_imp_to_refs(priv, ptr); |
| 1066 | |
| 1067 | case IOCTL_GNTDEV_DMABUF_IMP_RELEASE: |
| 1068 | return gntdev_ioctl_dmabuf_imp_release(priv, ptr); |
| 1069 | #endif |
| 1070 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1071 | default: |
| 1072 | pr_debug("priv %p, unknown cmd %x\n", priv, cmd); |
| 1073 | return -ENOIOCTLCMD; |
| 1074 | } |
| 1075 | |
| 1076 | return 0; |
| 1077 | } |
| 1078 | |
| 1079 | static int gntdev_mmap(struct file *flip, struct vm_area_struct *vma) |
| 1080 | { |
| 1081 | struct gntdev_priv *priv = flip->private_data; |
| 1082 | int index = vma->vm_pgoff; |
Muhammad Falak R Wani | c7ebf9d | 2016-05-24 05:34:32 +0530 | [diff] [blame] | 1083 | int count = vma_pages(vma); |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 1084 | struct gntdev_grant_map *map; |
Souptick Joarder | df9bde0 | 2019-05-13 17:22:23 -0700 | [diff] [blame] | 1085 | int err = -EINVAL; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1086 | |
| 1087 | if ((vma->vm_flags & VM_WRITE) && !(vma->vm_flags & VM_SHARED)) |
| 1088 | return -EINVAL; |
| 1089 | |
| 1090 | pr_debug("map %d+%d at %lx (pgoff %lx)\n", |
| 1091 | index, count, vma->vm_start, vma->vm_pgoff); |
| 1092 | |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 1093 | mutex_lock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1094 | map = gntdev_find_map_index(priv, index, count); |
| 1095 | if (!map) |
| 1096 | goto unlock_out; |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1097 | if (use_ptemod && map->vma) |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1098 | goto unlock_out; |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1099 | if (use_ptemod && priv->mm != vma->vm_mm) { |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 1100 | pr_warn("Huh? Other mm?\n"); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1101 | goto unlock_out; |
| 1102 | } |
| 1103 | |
Elena Reshetova | c5f7c5a | 2017-03-06 16:21:16 +0200 | [diff] [blame] | 1104 | refcount_inc(&map->users); |
Daniel De Graaf | 68b025c | 2011-02-03 12:19:01 -0500 | [diff] [blame] | 1105 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1106 | vma->vm_ops = &gntdev_vmops; |
| 1107 | |
Boris Ostrovsky | 30faaaf | 2016-11-21 09:56:06 -0500 | [diff] [blame] | 1108 | vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP | VM_MIXEDMAP; |
Daniel De Graaf | d79647a | 2011-03-07 15:18:57 -0500 | [diff] [blame] | 1109 | |
| 1110 | if (use_ptemod) |
Stefano Stabellini | e8e937b | 2012-04-03 18:05:47 +0100 | [diff] [blame] | 1111 | vma->vm_flags |= VM_DONTCOPY; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1112 | |
| 1113 | vma->vm_private_data = map; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1114 | |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1115 | if (use_ptemod) |
| 1116 | map->vma = vma; |
| 1117 | |
Daniel De Graaf | 12996fc | 2011-02-09 16:11:32 -0500 | [diff] [blame] | 1118 | if (map->flags) { |
| 1119 | if ((vma->vm_flags & VM_WRITE) && |
| 1120 | (map->flags & GNTMAP_readonly)) |
Dan Carpenter | a93e20a | 2011-03-19 08:45:43 +0300 | [diff] [blame] | 1121 | goto out_unlock_put; |
Daniel De Graaf | 12996fc | 2011-02-09 16:11:32 -0500 | [diff] [blame] | 1122 | } else { |
| 1123 | map->flags = GNTMAP_host_map; |
| 1124 | if (!(vma->vm_flags & VM_WRITE)) |
| 1125 | map->flags |= GNTMAP_readonly; |
| 1126 | } |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1127 | |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 1128 | mutex_unlock(&priv->lock); |
Daniel De Graaf | f0a70c8 | 2011-01-07 11:51:47 +0000 | [diff] [blame] | 1129 | |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1130 | if (use_ptemod) { |
Juergen Gross | 298d275 | 2017-10-25 17:08:07 +0200 | [diff] [blame] | 1131 | map->pages_vm_start = vma->vm_start; |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1132 | err = apply_to_page_range(vma->vm_mm, vma->vm_start, |
| 1133 | vma->vm_end - vma->vm_start, |
| 1134 | find_grant_ptes, map); |
| 1135 | if (err) { |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 1136 | pr_warn("find_grant_ptes() failure.\n"); |
Daniel De Graaf | 90b6f30 | 2011-02-03 14:16:54 -0500 | [diff] [blame] | 1137 | goto out_put_map; |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1138 | } |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1139 | } |
| 1140 | |
Oleksandr Andrushchenko | 1d31456 | 2018-07-20 12:01:47 +0300 | [diff] [blame] | 1141 | err = gntdev_map_grant_pages(map); |
Daniel De Graaf | 90b6f30 | 2011-02-03 14:16:54 -0500 | [diff] [blame] | 1142 | if (err) |
| 1143 | goto out_put_map; |
Daniel De Graaf | f0a70c8 | 2011-01-07 11:51:47 +0000 | [diff] [blame] | 1144 | |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1145 | if (!use_ptemod) { |
Souptick Joarder | df9bde0 | 2019-05-13 17:22:23 -0700 | [diff] [blame] | 1146 | err = vm_map_pages(vma, map->pages, map->count); |
| 1147 | if (err) |
| 1148 | goto out_put_map; |
David Vrabel | 923b291 | 2014-12-18 14:56:54 +0000 | [diff] [blame] | 1149 | } else { |
| 1150 | #ifdef CONFIG_X86 |
| 1151 | /* |
| 1152 | * If the PTEs were not made special by the grant map |
| 1153 | * hypercall, do so here. |
| 1154 | * |
| 1155 | * This is racy since the mapping is already visible |
| 1156 | * to userspace but userspace should be well-behaved |
| 1157 | * enough to not touch it until the mmap() call |
| 1158 | * returns. |
| 1159 | */ |
| 1160 | if (!xen_feature(XENFEAT_gnttab_map_avail_bits)) { |
| 1161 | apply_to_page_range(vma->vm_mm, vma->vm_start, |
| 1162 | vma->vm_end - vma->vm_start, |
| 1163 | set_grant_ptes_as_special, NULL); |
| 1164 | } |
| 1165 | #endif |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1166 | } |
| 1167 | |
Daniel De Graaf | f0a70c8 | 2011-01-07 11:51:47 +0000 | [diff] [blame] | 1168 | return 0; |
| 1169 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1170 | unlock_out: |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 1171 | mutex_unlock(&priv->lock); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1172 | return err; |
Daniel De Graaf | 90b6f30 | 2011-02-03 14:16:54 -0500 | [diff] [blame] | 1173 | |
Dan Carpenter | a93e20a | 2011-03-19 08:45:43 +0300 | [diff] [blame] | 1174 | out_unlock_put: |
David Vrabel | 1401c00 | 2015-01-09 18:06:12 +0000 | [diff] [blame] | 1175 | mutex_unlock(&priv->lock); |
Daniel De Graaf | 90b6f30 | 2011-02-03 14:16:54 -0500 | [diff] [blame] | 1176 | out_put_map: |
Ross Lagerwall | cf2acf6 | 2018-01-09 12:10:22 +0000 | [diff] [blame] | 1177 | if (use_ptemod) { |
Daniel De Graaf | 84e4075 | 2011-02-09 15:11:59 -0500 | [diff] [blame] | 1178 | map->vma = NULL; |
Ross Lagerwall | cf2acf6 | 2018-01-09 12:10:22 +0000 | [diff] [blame] | 1179 | unmap_grant_pages(map, 0, map->count); |
| 1180 | } |
Daniel De Graaf | 16a1d02 | 2013-01-02 22:57:12 +0000 | [diff] [blame] | 1181 | gntdev_put_map(priv, map); |
Daniel De Graaf | 90b6f30 | 2011-02-03 14:16:54 -0500 | [diff] [blame] | 1182 | return err; |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1183 | } |
| 1184 | |
| 1185 | static const struct file_operations gntdev_fops = { |
| 1186 | .owner = THIS_MODULE, |
| 1187 | .open = gntdev_open, |
| 1188 | .release = gntdev_release, |
| 1189 | .mmap = gntdev_mmap, |
| 1190 | .unlocked_ioctl = gntdev_ioctl |
| 1191 | }; |
| 1192 | |
| 1193 | static struct miscdevice gntdev_miscdev = { |
| 1194 | .minor = MISC_DYNAMIC_MINOR, |
| 1195 | .name = "xen/gntdev", |
| 1196 | .fops = &gntdev_fops, |
| 1197 | }; |
| 1198 | |
| 1199 | /* ------------------------------------------------------------------ */ |
| 1200 | |
| 1201 | static int __init gntdev_init(void) |
| 1202 | { |
| 1203 | int err; |
| 1204 | |
| 1205 | if (!xen_domain()) |
| 1206 | return -ENODEV; |
| 1207 | |
Konrad Rzeszutek Wilk | 6926f6d | 2014-01-03 10:20:18 -0500 | [diff] [blame] | 1208 | use_ptemod = !xen_feature(XENFEAT_auto_translated_physmap); |
Daniel De Graaf | aab8f11 | 2011-02-03 12:19:02 -0500 | [diff] [blame] | 1209 | |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1210 | err = misc_register(&gntdev_miscdev); |
| 1211 | if (err != 0) { |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 1212 | pr_err("Could not register gntdev device\n"); |
Gerd Hoffmann | ab31523 | 2010-12-14 18:40:46 +0000 | [diff] [blame] | 1213 | return err; |
| 1214 | } |
| 1215 | return 0; |
| 1216 | } |
| 1217 | |
| 1218 | static void __exit gntdev_exit(void) |
| 1219 | { |
| 1220 | misc_deregister(&gntdev_miscdev); |
| 1221 | } |
| 1222 | |
| 1223 | module_init(gntdev_init); |
| 1224 | module_exit(gntdev_exit); |
| 1225 | |
| 1226 | /* ------------------------------------------------------------------ */ |