blob: 89dcca448bb68ee9d07c44ec0ce56d2450239cfe [file] [log] [blame]
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001/******************************************************************************
2 * grant_table.c
3 *
4 * Granting foreign access to our memory reservation.
5 *
6 * Copyright (c) 2005-2006, Christopher Clark
7 * Copyright (c) 2004-2005, K A Fraser
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation; or, when distributed
12 * separately from the Linux kernel or incorporated into other
13 * software packages, subject to the following license:
14 *
15 * Permission is hereby granted, free of charge, to any person obtaining a copy
16 * of this source file (the "Software"), to deal in the Software without
17 * restriction, including without limitation the rights to use, copy, modify,
18 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
19 * and to permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
21 *
22 * The above copyright notice and this permission notice shall be included in
23 * all copies or substantial portions of the Software.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
31 * IN THE SOFTWARE.
32 */
33
Joe Perches283c0972013-06-28 03:21:41 -070034#define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt
35
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070036#include <linux/module.h>
37#include <linux/sched.h>
38#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070040#include <linux/vmalloc.h>
41#include <linux/uaccess.h>
Stefano Stabellini183d03c2010-05-17 17:08:21 +010042#include <linux/io.h>
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +000043#include <linux/delay.h>
Stefano Stabellinif62805f2012-04-24 11:55:43 +010044#include <linux/hardirq.h>
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070045
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070046#include <xen/xen.h>
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070047#include <xen/interface/xen.h>
48#include <xen/page.h>
49#include <xen/grant_table.h>
Stefano Stabellini183d03c2010-05-17 17:08:21 +010050#include <xen/interface/memory.h>
Annie Li85ff6ac2011-11-22 09:59:21 +080051#include <xen/hvc-console.h>
Stefano Stabellini3d24bbd2013-10-25 10:41:44 +000052#include <xen/swiotlb-xen.h>
David Vrabelff4b1562015-01-08 18:06:01 +000053#include <xen/balloon.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080054#include <asm/xen/hypercall.h>
Stefano Stabellini4d9310e2012-08-06 15:27:09 +010055#include <asm/xen/interface.h>
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070056
57#include <asm/pgtable.h>
58#include <asm/sync_bitops.h>
59
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070060/* External tools reserve first few grant table entries. */
61#define NR_RESERVED_ENTRIES 8
62#define GNTTAB_LIST_END 0xffffffff
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070063
64static grant_ref_t **gnttab_list;
65static unsigned int nr_grant_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070066static int gnttab_free_count;
67static grant_ref_t gnttab_free_head;
68static DEFINE_SPINLOCK(gnttab_list_lock);
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -050069struct grant_frames xen_auto_xlat_grant_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070070
Annie Li0f9f5a92011-11-22 09:58:06 +080071static union {
72 struct grant_entry_v1 *v1;
73 void *addr;
74} gnttab_shared;
75
76/*This is a structure of function pointers for grant table*/
77struct gnttab_ops {
78 /*
Annie Li9dbc71d2011-12-12 18:13:57 +080079 * Mapping a list of frames for storing grant entries. Frames parameter
80 * is used to store grant table address when grant table being setup,
81 * nr_gframes is the number of frames to map grant table. Returning
82 * GNTST_okay means success and negative value means failure.
Annie Li0f9f5a92011-11-22 09:58:06 +080083 */
Ian Campbellef32f892012-10-17 09:39:14 +010084 int (*map_frames)(xen_pfn_t *frames, unsigned int nr_gframes);
Annie Li0f9f5a92011-11-22 09:58:06 +080085 /*
86 * Release a list of frames which are mapped in map_frames for grant
87 * entry status.
88 */
89 void (*unmap_frames)(void);
90 /*
Annie Li9dbc71d2011-12-12 18:13:57 +080091 * Introducing a valid entry into the grant table, granting the frame of
92 * this grant entry to domain for accessing or transfering. Ref
93 * parameter is reference of this introduced grant entry, domid is id of
94 * granted domain, frame is the page frame to be granted, and flags is
95 * status of the grant entry to be updated.
Annie Li0f9f5a92011-11-22 09:58:06 +080096 */
Annie Li9dbc71d2011-12-12 18:13:57 +080097 void (*update_entry)(grant_ref_t ref, domid_t domid,
98 unsigned long frame, unsigned flags);
Annie Li0f9f5a92011-11-22 09:58:06 +080099 /*
Annie Li9dbc71d2011-12-12 18:13:57 +0800100 * Stop granting a grant entry to domain for accessing. Ref parameter is
101 * reference of a grant entry whose grant access will be stopped,
102 * readonly is not in use in this function. If the grant entry is
Annie Li0f9f5a92011-11-22 09:58:06 +0800103 * currently mapped for reading or writing, just return failure(==0)
104 * directly and don't tear down the grant access. Otherwise, stop grant
105 * access for this entry and return success(==1).
106 */
Annie Li9dbc71d2011-12-12 18:13:57 +0800107 int (*end_foreign_access_ref)(grant_ref_t ref, int readonly);
Annie Li0f9f5a92011-11-22 09:58:06 +0800108 /*
Annie Li9dbc71d2011-12-12 18:13:57 +0800109 * Stop granting a grant entry to domain for transfer. Ref parameter is
110 * reference of a grant entry whose grant transfer will be stopped. If
111 * tranfer has not started, just reclaim the grant entry and return
112 * failure(==0). Otherwise, wait for the transfer to complete and then
113 * return the frame.
Annie Li0f9f5a92011-11-22 09:58:06 +0800114 */
Annie Li9dbc71d2011-12-12 18:13:57 +0800115 unsigned long (*end_foreign_transfer_ref)(grant_ref_t ref);
Annie Li0f9f5a92011-11-22 09:58:06 +0800116 /*
Annie Li9dbc71d2011-12-12 18:13:57 +0800117 * Query the status of a grant entry. Ref parameter is reference of
Annie Li0f9f5a92011-11-22 09:58:06 +0800118 * queried grant entry, return value is the status of queried entry.
119 * Detailed status(writing/reading) can be gotten from the return value
120 * by bit operations.
121 */
Annie Li9dbc71d2011-12-12 18:13:57 +0800122 int (*query_foreign_access)(grant_ref_t ref);
Annie Li0f9f5a92011-11-22 09:58:06 +0800123};
124
125static struct gnttab_ops *gnttab_interface;
126
127static int grant_table_version;
Matt Wilsond0b4d642013-01-15 13:21:27 +0000128static int grefs_per_grant_frame;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700129
130static struct gnttab_free_callback *gnttab_free_callback_list;
131
132static int gnttab_expand(unsigned int req_entries);
133
134#define RPP (PAGE_SIZE / sizeof(grant_ref_t))
Annie Li85ff6ac2011-11-22 09:59:21 +0800135#define SPP (PAGE_SIZE / sizeof(grant_status_t))
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700136
137static inline grant_ref_t *__gnttab_entry(grant_ref_t entry)
138{
139 return &gnttab_list[(entry) / RPP][(entry) % RPP];
140}
141/* This can be used as an l-value */
142#define gnttab_entry(entry) (*__gnttab_entry(entry))
143
144static int get_free_entries(unsigned count)
145{
146 unsigned long flags;
Konrad Rzeszutek Wilk272800d2011-07-22 14:00:06 -0400147 int ref, rc = 0;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700148 grant_ref_t head;
149
150 spin_lock_irqsave(&gnttab_list_lock, flags);
151
152 if ((gnttab_free_count < count) &&
153 ((rc = gnttab_expand(count - gnttab_free_count)) < 0)) {
154 spin_unlock_irqrestore(&gnttab_list_lock, flags);
155 return rc;
156 }
157
158 ref = head = gnttab_free_head;
159 gnttab_free_count -= count;
160 while (count-- > 1)
161 head = gnttab_entry(head);
162 gnttab_free_head = gnttab_entry(head);
163 gnttab_entry(head) = GNTTAB_LIST_END;
164
165 spin_unlock_irqrestore(&gnttab_list_lock, flags);
166
167 return ref;
168}
169
170static void do_free_callbacks(void)
171{
172 struct gnttab_free_callback *callback, *next;
173
174 callback = gnttab_free_callback_list;
175 gnttab_free_callback_list = NULL;
176
177 while (callback != NULL) {
178 next = callback->next;
179 if (gnttab_free_count >= callback->count) {
180 callback->next = NULL;
181 callback->fn(callback->arg);
182 } else {
183 callback->next = gnttab_free_callback_list;
184 gnttab_free_callback_list = callback;
185 }
186 callback = next;
187 }
188}
189
190static inline void check_free_callbacks(void)
191{
192 if (unlikely(gnttab_free_callback_list))
193 do_free_callbacks();
194}
195
196static void put_free_entry(grant_ref_t ref)
197{
198 unsigned long flags;
199 spin_lock_irqsave(&gnttab_list_lock, flags);
200 gnttab_entry(ref) = gnttab_free_head;
201 gnttab_free_head = ref;
202 gnttab_free_count++;
203 check_free_callbacks();
204 spin_unlock_irqrestore(&gnttab_list_lock, flags);
205}
206
Annie Li0f9f5a92011-11-22 09:58:06 +0800207/*
David Vrabel438b33c2014-07-02 11:25:29 +0100208 * Following applies to gnttab_update_entry_v1.
Annie Li0f9f5a92011-11-22 09:58:06 +0800209 * Introducing a valid entry into the grant table:
210 * 1. Write ent->domid.
211 * 2. Write ent->frame:
212 * GTF_permit_access: Frame to which access is permitted.
213 * GTF_accept_transfer: Pseudo-phys frame slot being filled by new
214 * frame, or zero if none.
215 * 3. Write memory barrier (WMB).
216 * 4. Write ent->flags, inc. valid type.
217 */
218static void gnttab_update_entry_v1(grant_ref_t ref, domid_t domid,
219 unsigned long frame, unsigned flags)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700220{
Annie Li0f9f5a92011-11-22 09:58:06 +0800221 gnttab_shared.v1[ref].domid = domid;
222 gnttab_shared.v1[ref].frame = frame;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700223 wmb();
Annie Li0f9f5a92011-11-22 09:58:06 +0800224 gnttab_shared.v1[ref].flags = flags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700225}
226
227/*
228 * Public grant-issuing interface functions
229 */
230void gnttab_grant_foreign_access_ref(grant_ref_t ref, domid_t domid,
231 unsigned long frame, int readonly)
232{
Annie Li0f9f5a92011-11-22 09:58:06 +0800233 gnttab_interface->update_entry(ref, domid, frame,
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700234 GTF_permit_access | (readonly ? GTF_readonly : 0));
235}
236EXPORT_SYMBOL_GPL(gnttab_grant_foreign_access_ref);
237
238int gnttab_grant_foreign_access(domid_t domid, unsigned long frame,
239 int readonly)
240{
241 int ref;
242
243 ref = get_free_entries(1);
244 if (unlikely(ref < 0))
245 return -ENOSPC;
246
247 gnttab_grant_foreign_access_ref(ref, domid, frame, readonly);
248
249 return ref;
250}
251EXPORT_SYMBOL_GPL(gnttab_grant_foreign_access);
252
Annie Li0f9f5a92011-11-22 09:58:06 +0800253static int gnttab_query_foreign_access_v1(grant_ref_t ref)
254{
255 return gnttab_shared.v1[ref].flags & (GTF_reading|GTF_writing);
256}
257
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700258int gnttab_query_foreign_access(grant_ref_t ref)
259{
Annie Li0f9f5a92011-11-22 09:58:06 +0800260 return gnttab_interface->query_foreign_access(ref);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700261}
262EXPORT_SYMBOL_GPL(gnttab_query_foreign_access);
263
Annie Li0f9f5a92011-11-22 09:58:06 +0800264static int gnttab_end_foreign_access_ref_v1(grant_ref_t ref, int readonly)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700265{
266 u16 flags, nflags;
Annie Lib1e495b2011-11-22 09:58:47 +0800267 u16 *pflags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700268
Annie Lib1e495b2011-11-22 09:58:47 +0800269 pflags = &gnttab_shared.v1[ref].flags;
270 nflags = *pflags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700271 do {
272 flags = nflags;
Jan Beulich569ca5b2012-04-05 16:10:07 +0100273 if (flags & (GTF_reading|GTF_writing))
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700274 return 0;
Annie Lib1e495b2011-11-22 09:58:47 +0800275 } while ((nflags = sync_cmpxchg(pflags, flags, 0)) != flags);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700276
277 return 1;
278}
Annie Li0f9f5a92011-11-22 09:58:06 +0800279
Jan Beulich569ca5b2012-04-05 16:10:07 +0100280static inline int _gnttab_end_foreign_access_ref(grant_ref_t ref, int readonly)
Annie Li0f9f5a92011-11-22 09:58:06 +0800281{
282 return gnttab_interface->end_foreign_access_ref(ref, readonly);
283}
Jan Beulich569ca5b2012-04-05 16:10:07 +0100284
285int gnttab_end_foreign_access_ref(grant_ref_t ref, int readonly)
286{
287 if (_gnttab_end_foreign_access_ref(ref, readonly))
288 return 1;
289 pr_warn("WARNING: g.e. %#x still in use!\n", ref);
290 return 0;
291}
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700292EXPORT_SYMBOL_GPL(gnttab_end_foreign_access_ref);
293
Jan Beulich569ca5b2012-04-05 16:10:07 +0100294struct deferred_entry {
295 struct list_head list;
296 grant_ref_t ref;
297 bool ro;
298 uint16_t warn_delay;
299 struct page *page;
300};
301static LIST_HEAD(deferred_list);
302static void gnttab_handle_deferred(unsigned long);
303static DEFINE_TIMER(deferred_timer, gnttab_handle_deferred, 0, 0);
304
305static void gnttab_handle_deferred(unsigned long unused)
306{
307 unsigned int nr = 10;
308 struct deferred_entry *first = NULL;
309 unsigned long flags;
310
311 spin_lock_irqsave(&gnttab_list_lock, flags);
312 while (nr--) {
313 struct deferred_entry *entry
314 = list_first_entry(&deferred_list,
315 struct deferred_entry, list);
316
317 if (entry == first)
318 break;
319 list_del(&entry->list);
320 spin_unlock_irqrestore(&gnttab_list_lock, flags);
321 if (_gnttab_end_foreign_access_ref(entry->ref, entry->ro)) {
322 put_free_entry(entry->ref);
323 if (entry->page) {
324 pr_debug("freeing g.e. %#x (pfn %#lx)\n",
325 entry->ref, page_to_pfn(entry->page));
326 __free_page(entry->page);
327 } else
328 pr_info("freeing g.e. %#x\n", entry->ref);
329 kfree(entry);
330 entry = NULL;
331 } else {
332 if (!--entry->warn_delay)
Joe Perches283c0972013-06-28 03:21:41 -0700333 pr_info("g.e. %#x still pending\n", entry->ref);
Jan Beulich569ca5b2012-04-05 16:10:07 +0100334 if (!first)
335 first = entry;
336 }
337 spin_lock_irqsave(&gnttab_list_lock, flags);
338 if (entry)
339 list_add_tail(&entry->list, &deferred_list);
340 else if (list_empty(&deferred_list))
341 break;
342 }
343 if (!list_empty(&deferred_list) && !timer_pending(&deferred_timer)) {
344 deferred_timer.expires = jiffies + HZ;
345 add_timer(&deferred_timer);
346 }
347 spin_unlock_irqrestore(&gnttab_list_lock, flags);
348}
349
350static void gnttab_add_deferred(grant_ref_t ref, bool readonly,
351 struct page *page)
352{
353 struct deferred_entry *entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
354 const char *what = KERN_WARNING "leaking";
355
356 if (entry) {
357 unsigned long flags;
358
359 entry->ref = ref;
360 entry->ro = readonly;
361 entry->page = page;
362 entry->warn_delay = 60;
363 spin_lock_irqsave(&gnttab_list_lock, flags);
364 list_add_tail(&entry->list, &deferred_list);
365 if (!timer_pending(&deferred_timer)) {
366 deferred_timer.expires = jiffies + HZ;
367 add_timer(&deferred_timer);
368 }
369 spin_unlock_irqrestore(&gnttab_list_lock, flags);
370 what = KERN_DEBUG "deferring";
371 }
372 printk("%s g.e. %#x (pfn %#lx)\n",
373 what, ref, page ? page_to_pfn(page) : -1);
374}
375
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700376void gnttab_end_foreign_access(grant_ref_t ref, int readonly,
377 unsigned long page)
378{
379 if (gnttab_end_foreign_access_ref(ref, readonly)) {
380 put_free_entry(ref);
381 if (page != 0)
382 free_page(page);
Jan Beulich569ca5b2012-04-05 16:10:07 +0100383 } else
384 gnttab_add_deferred(ref, readonly,
385 page ? virt_to_page(page) : NULL);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700386}
387EXPORT_SYMBOL_GPL(gnttab_end_foreign_access);
388
389int gnttab_grant_foreign_transfer(domid_t domid, unsigned long pfn)
390{
391 int ref;
392
393 ref = get_free_entries(1);
394 if (unlikely(ref < 0))
395 return -ENOSPC;
396 gnttab_grant_foreign_transfer_ref(ref, domid, pfn);
397
398 return ref;
399}
400EXPORT_SYMBOL_GPL(gnttab_grant_foreign_transfer);
401
402void gnttab_grant_foreign_transfer_ref(grant_ref_t ref, domid_t domid,
403 unsigned long pfn)
404{
Annie Li0f9f5a92011-11-22 09:58:06 +0800405 gnttab_interface->update_entry(ref, domid, pfn, GTF_accept_transfer);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700406}
407EXPORT_SYMBOL_GPL(gnttab_grant_foreign_transfer_ref);
408
Annie Li0f9f5a92011-11-22 09:58:06 +0800409static unsigned long gnttab_end_foreign_transfer_ref_v1(grant_ref_t ref)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700410{
411 unsigned long frame;
412 u16 flags;
Annie Lib1e495b2011-11-22 09:58:47 +0800413 u16 *pflags;
414
415 pflags = &gnttab_shared.v1[ref].flags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700416
417 /*
418 * If a transfer is not even yet started, try to reclaim the grant
419 * reference and return failure (== 0).
420 */
Annie Lib1e495b2011-11-22 09:58:47 +0800421 while (!((flags = *pflags) & GTF_transfer_committed)) {
422 if (sync_cmpxchg(pflags, flags, 0) == flags)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700423 return 0;
424 cpu_relax();
425 }
426
427 /* If a transfer is in progress then wait until it is completed. */
428 while (!(flags & GTF_transfer_completed)) {
Annie Lib1e495b2011-11-22 09:58:47 +0800429 flags = *pflags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700430 cpu_relax();
431 }
432
433 rmb(); /* Read the frame number /after/ reading completion status. */
Annie Li0f9f5a92011-11-22 09:58:06 +0800434 frame = gnttab_shared.v1[ref].frame;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700435 BUG_ON(frame == 0);
436
437 return frame;
438}
Annie Li0f9f5a92011-11-22 09:58:06 +0800439
440unsigned long gnttab_end_foreign_transfer_ref(grant_ref_t ref)
441{
442 return gnttab_interface->end_foreign_transfer_ref(ref);
443}
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700444EXPORT_SYMBOL_GPL(gnttab_end_foreign_transfer_ref);
445
446unsigned long gnttab_end_foreign_transfer(grant_ref_t ref)
447{
448 unsigned long frame = gnttab_end_foreign_transfer_ref(ref);
449 put_free_entry(ref);
450 return frame;
451}
452EXPORT_SYMBOL_GPL(gnttab_end_foreign_transfer);
453
454void gnttab_free_grant_reference(grant_ref_t ref)
455{
456 put_free_entry(ref);
457}
458EXPORT_SYMBOL_GPL(gnttab_free_grant_reference);
459
460void gnttab_free_grant_references(grant_ref_t head)
461{
462 grant_ref_t ref;
463 unsigned long flags;
464 int count = 1;
465 if (head == GNTTAB_LIST_END)
466 return;
467 spin_lock_irqsave(&gnttab_list_lock, flags);
468 ref = head;
469 while (gnttab_entry(ref) != GNTTAB_LIST_END) {
470 ref = gnttab_entry(ref);
471 count++;
472 }
473 gnttab_entry(ref) = gnttab_free_head;
474 gnttab_free_head = head;
475 gnttab_free_count += count;
476 check_free_callbacks();
477 spin_unlock_irqrestore(&gnttab_list_lock, flags);
478}
479EXPORT_SYMBOL_GPL(gnttab_free_grant_references);
480
481int gnttab_alloc_grant_references(u16 count, grant_ref_t *head)
482{
483 int h = get_free_entries(count);
484
485 if (h < 0)
486 return -ENOSPC;
487
488 *head = h;
489
490 return 0;
491}
492EXPORT_SYMBOL_GPL(gnttab_alloc_grant_references);
493
494int gnttab_empty_grant_references(const grant_ref_t *private_head)
495{
496 return (*private_head == GNTTAB_LIST_END);
497}
498EXPORT_SYMBOL_GPL(gnttab_empty_grant_references);
499
500int gnttab_claim_grant_reference(grant_ref_t *private_head)
501{
502 grant_ref_t g = *private_head;
503 if (unlikely(g == GNTTAB_LIST_END))
504 return -ENOSPC;
505 *private_head = gnttab_entry(g);
506 return g;
507}
508EXPORT_SYMBOL_GPL(gnttab_claim_grant_reference);
509
510void gnttab_release_grant_reference(grant_ref_t *private_head,
511 grant_ref_t release)
512{
513 gnttab_entry(release) = *private_head;
514 *private_head = release;
515}
516EXPORT_SYMBOL_GPL(gnttab_release_grant_reference);
517
518void gnttab_request_free_callback(struct gnttab_free_callback *callback,
519 void (*fn)(void *), void *arg, u16 count)
520{
521 unsigned long flags;
Roger Pau Monne5f338d92013-07-31 17:00:42 +0200522 struct gnttab_free_callback *cb;
523
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700524 spin_lock_irqsave(&gnttab_list_lock, flags);
Roger Pau Monne5f338d92013-07-31 17:00:42 +0200525
526 /* Check if the callback is already on the list */
527 cb = gnttab_free_callback_list;
528 while (cb) {
529 if (cb == callback)
530 goto out;
531 cb = cb->next;
532 }
533
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700534 callback->fn = fn;
535 callback->arg = arg;
536 callback->count = count;
537 callback->next = gnttab_free_callback_list;
538 gnttab_free_callback_list = callback;
539 check_free_callbacks();
540out:
541 spin_unlock_irqrestore(&gnttab_list_lock, flags);
542}
543EXPORT_SYMBOL_GPL(gnttab_request_free_callback);
544
545void gnttab_cancel_free_callback(struct gnttab_free_callback *callback)
546{
547 struct gnttab_free_callback **pcb;
548 unsigned long flags;
549
550 spin_lock_irqsave(&gnttab_list_lock, flags);
551 for (pcb = &gnttab_free_callback_list; *pcb; pcb = &(*pcb)->next) {
552 if (*pcb == callback) {
553 *pcb = callback->next;
554 break;
555 }
556 }
557 spin_unlock_irqrestore(&gnttab_list_lock, flags);
558}
559EXPORT_SYMBOL_GPL(gnttab_cancel_free_callback);
560
561static int grow_gnttab_list(unsigned int more_frames)
562{
563 unsigned int new_nr_grant_frames, extra_entries, i;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -0700564 unsigned int nr_glist_frames, new_nr_glist_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700565
Matt Wilsond0b4d642013-01-15 13:21:27 +0000566 BUG_ON(grefs_per_grant_frame == 0);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700567
Matt Wilsond0b4d642013-01-15 13:21:27 +0000568 new_nr_grant_frames = nr_grant_frames + more_frames;
569 extra_entries = more_frames * grefs_per_grant_frame;
570
571 nr_glist_frames = (nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -0700572 new_nr_glist_frames =
Matt Wilsond0b4d642013-01-15 13:21:27 +0000573 (new_nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -0700574 for (i = nr_glist_frames; i < new_nr_glist_frames; i++) {
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700575 gnttab_list[i] = (grant_ref_t *)__get_free_page(GFP_ATOMIC);
576 if (!gnttab_list[i])
577 goto grow_nomem;
578 }
579
580
Matt Wilsond0b4d642013-01-15 13:21:27 +0000581 for (i = grefs_per_grant_frame * nr_grant_frames;
582 i < grefs_per_grant_frame * new_nr_grant_frames - 1; i++)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700583 gnttab_entry(i) = i + 1;
584
585 gnttab_entry(i) = gnttab_free_head;
Matt Wilsond0b4d642013-01-15 13:21:27 +0000586 gnttab_free_head = grefs_per_grant_frame * nr_grant_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700587 gnttab_free_count += extra_entries;
588
589 nr_grant_frames = new_nr_grant_frames;
590
591 check_free_callbacks();
592
593 return 0;
594
595grow_nomem:
Chen Gang46e36262014-08-26 23:38:44 +0800596 while (i-- > nr_glist_frames)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700597 free_page((unsigned long) gnttab_list[i]);
598 return -ENOMEM;
599}
600
601static unsigned int __max_nr_grant_frames(void)
602{
603 struct gnttab_query_size query;
604 int rc;
605
606 query.dom = DOMID_SELF;
607
608 rc = HYPERVISOR_grant_table_op(GNTTABOP_query_size, &query, 1);
609 if ((rc < 0) || (query.status != GNTST_okay))
610 return 4; /* Legacy max supported number of frames */
611
612 return query.max_nr_frames;
613}
614
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100615unsigned int gnttab_max_grant_frames(void)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700616{
617 unsigned int xen_max = __max_nr_grant_frames();
Konrad Rzeszutek Wilk7f256022013-12-31 15:55:39 -0500618 static unsigned int boot_max_nr_grant_frames;
619
620 /* First time, initialize it properly. */
621 if (!boot_max_nr_grant_frames)
622 boot_max_nr_grant_frames = __max_nr_grant_frames();
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700623
624 if (xen_max > boot_max_nr_grant_frames)
625 return boot_max_nr_grant_frames;
626 return xen_max;
627}
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100628EXPORT_SYMBOL_GPL(gnttab_max_grant_frames);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700629
Julien Grall47c54202014-01-30 12:56:34 +0000630int gnttab_setup_auto_xlat_frames(phys_addr_t addr)
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500631{
632 xen_pfn_t *pfn;
633 unsigned int max_nr_gframes = __max_nr_grant_frames();
634 unsigned int i;
635 void *vaddr;
636
637 if (xen_auto_xlat_grant_frames.count)
638 return -EINVAL;
639
640 vaddr = xen_remap(addr, PAGE_SIZE * max_nr_gframes);
641 if (vaddr == NULL) {
Julien Grall47c54202014-01-30 12:56:34 +0000642 pr_warn("Failed to ioremap gnttab share frames (addr=%pa)!\n",
643 &addr);
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500644 return -ENOMEM;
645 }
646 pfn = kcalloc(max_nr_gframes, sizeof(pfn[0]), GFP_KERNEL);
647 if (!pfn) {
648 xen_unmap(vaddr);
649 return -ENOMEM;
650 }
651 for (i = 0; i < max_nr_gframes; i++)
652 pfn[i] = PFN_DOWN(addr) + i;
653
654 xen_auto_xlat_grant_frames.vaddr = vaddr;
655 xen_auto_xlat_grant_frames.pfn = pfn;
656 xen_auto_xlat_grant_frames.count = max_nr_gframes;
657
658 return 0;
659}
660EXPORT_SYMBOL_GPL(gnttab_setup_auto_xlat_frames);
661
662void gnttab_free_auto_xlat_frames(void)
663{
664 if (!xen_auto_xlat_grant_frames.count)
665 return;
666 kfree(xen_auto_xlat_grant_frames.pfn);
667 xen_unmap(xen_auto_xlat_grant_frames.vaddr);
668
669 xen_auto_xlat_grant_frames.pfn = NULL;
670 xen_auto_xlat_grant_frames.count = 0;
671 xen_auto_xlat_grant_frames.vaddr = NULL;
672}
673EXPORT_SYMBOL_GPL(gnttab_free_auto_xlat_frames);
674
David Vrabelff4b1562015-01-08 18:06:01 +0000675/**
676 * gnttab_alloc_pages - alloc pages suitable for grant mapping into
677 * @nr_pages: number of pages to alloc
678 * @pages: returns the pages
679 */
680int gnttab_alloc_pages(int nr_pages, struct page **pages)
681{
Jennifer Herbert8da76332014-12-24 14:17:06 +0000682 int i;
David Vrabelff4b1562015-01-08 18:06:01 +0000683 int ret;
684
685 ret = alloc_xenballooned_pages(nr_pages, pages, false);
686 if (ret < 0)
687 return ret;
688
Jennifer Herbert8da76332014-12-24 14:17:06 +0000689 for (i = 0; i < nr_pages; i++) {
690#if BITS_PER_LONG < 64
691 struct xen_page_foreign *foreign;
692
693 foreign = kzalloc(sizeof(*foreign), GFP_KERNEL);
694 if (!foreign) {
695 gnttab_free_pages(nr_pages, pages);
696 return -ENOMEM;
697 }
698 set_page_private(pages[i], (unsigned long)foreign);
699#endif
700 SetPagePrivate(pages[i]);
701 }
702
David Vrabelff4b1562015-01-08 18:06:01 +0000703 return 0;
704}
705EXPORT_SYMBOL(gnttab_alloc_pages);
706
707/**
708 * gnttab_free_pages - free pages allocated by gnttab_alloc_pages()
709 * @nr_pages; number of pages to free
710 * @pages: the pages
711 */
712void gnttab_free_pages(int nr_pages, struct page **pages)
713{
Jennifer Herbert8da76332014-12-24 14:17:06 +0000714 int i;
715
716 for (i = 0; i < nr_pages; i++) {
717 if (PagePrivate(pages[i])) {
718#if BITS_PER_LONG < 64
719 kfree((void *)page_private(pages[i]));
720#endif
721 ClearPagePrivate(pages[i]);
722 }
723 }
David Vrabelff4b1562015-01-08 18:06:01 +0000724 free_xenballooned_pages(nr_pages, pages);
725}
726EXPORT_SYMBOL(gnttab_free_pages);
727
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +0000728/* Handling of paged out grant targets (GNTST_eagain) */
729#define MAX_DELAY 256
730static inline void
731gnttab_retry_eagain_gop(unsigned int cmd, void *gop, int16_t *status,
732 const char *func)
733{
734 unsigned delay = 1;
735
736 do {
737 BUG_ON(HYPERVISOR_grant_table_op(cmd, gop, 1));
738 if (*status == GNTST_eagain)
739 msleep(delay++);
740 } while ((*status == GNTST_eagain) && (delay < MAX_DELAY));
741
742 if (delay >= MAX_DELAY) {
Joe Perches283c0972013-06-28 03:21:41 -0700743 pr_err("%s: %s eagain grant\n", func, current->comm);
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +0000744 *status = GNTST_bad_page;
745 }
746}
747
748void gnttab_batch_map(struct gnttab_map_grant_ref *batch, unsigned count)
749{
750 struct gnttab_map_grant_ref *op;
751
752 if (HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, batch, count))
753 BUG();
754 for (op = batch; op < batch + count; op++)
755 if (op->status == GNTST_eagain)
756 gnttab_retry_eagain_gop(GNTTABOP_map_grant_ref, op,
757 &op->status, __func__);
758}
759EXPORT_SYMBOL_GPL(gnttab_batch_map);
760
761void gnttab_batch_copy(struct gnttab_copy *batch, unsigned count)
762{
763 struct gnttab_copy *op;
764
765 if (HYPERVISOR_grant_table_op(GNTTABOP_copy, batch, count))
766 BUG();
767 for (op = batch; op < batch + count; op++)
768 if (op->status == GNTST_eagain)
769 gnttab_retry_eagain_gop(GNTTABOP_copy, op,
770 &op->status, __func__);
771}
772EXPORT_SYMBOL_GPL(gnttab_batch_copy);
773
Konrad Rzeszutek Wilke85fc982014-02-03 06:43:59 -0500774int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops,
Annie Lic1237992011-11-22 09:59:56 +0800775 struct gnttab_map_grant_ref *kmap_ops,
Konrad Rzeszutek Wilke85fc982014-02-03 06:43:59 -0500776 struct page **pages, unsigned int count)
Stefano Stabellini289b7772010-12-10 14:54:44 +0000777{
778 int i, ret;
Stefano Stabellini289b7772010-12-10 14:54:44 +0000779
780 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map_ops, count);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000781 if (ret)
782 return ret;
Stefano Stabellini289b7772010-12-10 14:54:44 +0000783
Jennifer Herbert8da76332014-12-24 14:17:06 +0000784 for (i = 0; i < count; i++) {
785 /* Retry eagain maps */
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +0000786 if (map_ops[i].status == GNTST_eagain)
787 gnttab_retry_eagain_gop(GNTTABOP_map_grant_ref, map_ops + i,
788 &map_ops[i].status, __func__);
789
Jennifer Herbert8da76332014-12-24 14:17:06 +0000790 if (map_ops[i].status == GNTST_okay) {
791 struct xen_page_foreign *foreign;
792
793 SetPageForeign(pages[i]);
794 foreign = xen_page_foreign(pages[i]);
795 foreign->domid = map_ops[i].dom;
796 foreign->gref = map_ops[i].ref;
797 }
798 }
799
Zoltan Kiss1429d462014-02-27 15:55:30 +0000800 return set_foreign_p2m_mapping(map_ops, kmap_ops, pages, count);
Stefano Stabellini289b7772010-12-10 14:54:44 +0000801}
802EXPORT_SYMBOL_GPL(gnttab_map_refs);
803
Konrad Rzeszutek Wilke85fc982014-02-03 06:43:59 -0500804int gnttab_unmap_refs(struct gnttab_unmap_grant_ref *unmap_ops,
David Vrabel853d0282015-01-05 14:13:41 +0000805 struct gnttab_unmap_grant_ref *kunmap_ops,
Konrad Rzeszutek Wilke85fc982014-02-03 06:43:59 -0500806 struct page **pages, unsigned int count)
Stefano Stabellini289b7772010-12-10 14:54:44 +0000807{
Jennifer Herbert8da76332014-12-24 14:17:06 +0000808 unsigned int i;
Zoltan Kiss1429d462014-02-27 15:55:30 +0000809 int ret;
Stefano Stabellini289b7772010-12-10 14:54:44 +0000810
811 ret = HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, unmap_ops, count);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000812 if (ret)
813 return ret;
814
Jennifer Herbert8da76332014-12-24 14:17:06 +0000815 for (i = 0; i < count; i++)
816 ClearPageForeign(pages[i]);
817
David Vrabel853d0282015-01-05 14:13:41 +0000818 return clear_foreign_p2m_mapping(unmap_ops, kunmap_ops, pages, count);
Stefano Stabellini289b7772010-12-10 14:54:44 +0000819}
820EXPORT_SYMBOL_GPL(gnttab_unmap_refs);
821
Ian Campbellef32f892012-10-17 09:39:14 +0100822static int gnttab_map_frames_v1(xen_pfn_t *frames, unsigned int nr_gframes)
Annie Li0f9f5a92011-11-22 09:58:06 +0800823{
824 int rc;
825
826 rc = arch_gnttab_map_shared(frames, nr_gframes,
827 gnttab_max_grant_frames(),
828 &gnttab_shared.addr);
829 BUG_ON(rc);
830
831 return 0;
832}
833
834static void gnttab_unmap_frames_v1(void)
835{
Annie Li85ff6ac2011-11-22 09:59:21 +0800836 arch_gnttab_unmap(gnttab_shared.addr, nr_grant_frames);
837}
838
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700839static int gnttab_map(unsigned int start_idx, unsigned int end_idx)
840{
841 struct gnttab_setup_table setup;
Ian Campbellef32f892012-10-17 09:39:14 +0100842 xen_pfn_t *frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700843 unsigned int nr_gframes = end_idx + 1;
844 int rc;
845
Konrad Rzeszutek Wilk6926f6d2014-01-03 10:20:18 -0500846 if (xen_feature(XENFEAT_auto_translated_physmap)) {
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100847 struct xen_add_to_physmap xatp;
848 unsigned int i = end_idx;
849 rc = 0;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500850 BUG_ON(xen_auto_xlat_grant_frames.count < nr_gframes);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100851 /*
852 * Loop backwards, so that the first hypercall has the largest
853 * index, ensuring that the table will grow only once.
854 */
855 do {
856 xatp.domid = DOMID_SELF;
857 xatp.idx = i;
858 xatp.space = XENMAPSPACE_grant_table;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500859 xatp.gpfn = xen_auto_xlat_grant_frames.pfn[i];
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100860 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp);
861 if (rc != 0) {
Joe Perches283c0972013-06-28 03:21:41 -0700862 pr_warn("grant table add_to_physmap failed, err=%d\n",
863 rc);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100864 break;
865 }
866 } while (i-- > start_idx);
867
868 return rc;
869 }
870
Annie Li85ff6ac2011-11-22 09:59:21 +0800871 /* No need for kzalloc as it is initialized in following hypercall
872 * GNTTABOP_setup_table.
873 */
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700874 frames = kmalloc(nr_gframes * sizeof(unsigned long), GFP_ATOMIC);
875 if (!frames)
876 return -ENOMEM;
877
878 setup.dom = DOMID_SELF;
879 setup.nr_frames = nr_gframes;
Isaku Yamahata87e27cf2008-04-02 10:53:52 -0700880 set_xen_guest_handle(setup.frame_list, frames);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700881
882 rc = HYPERVISOR_grant_table_op(GNTTABOP_setup_table, &setup, 1);
883 if (rc == -ENOSYS) {
884 kfree(frames);
885 return -ENOSYS;
886 }
887
888 BUG_ON(rc || setup.status);
889
Annie Li0f9f5a92011-11-22 09:58:06 +0800890 rc = gnttab_interface->map_frames(frames, nr_gframes);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700891
892 kfree(frames);
893
Annie Li0f9f5a92011-11-22 09:58:06 +0800894 return rc;
895}
896
897static struct gnttab_ops gnttab_v1_ops = {
898 .map_frames = gnttab_map_frames_v1,
899 .unmap_frames = gnttab_unmap_frames_v1,
900 .update_entry = gnttab_update_entry_v1,
901 .end_foreign_access_ref = gnttab_end_foreign_access_ref_v1,
902 .end_foreign_transfer_ref = gnttab_end_foreign_transfer_ref_v1,
903 .query_foreign_access = gnttab_query_foreign_access_v1,
904};
905
906static void gnttab_request_version(void)
907{
David Vrabel438b33c2014-07-02 11:25:29 +0100908 /* Only version 1 is used, which will always be available. */
909 grant_table_version = 1;
910 grefs_per_grant_frame = PAGE_SIZE / sizeof(struct grant_entry_v1);
911 gnttab_interface = &gnttab_v1_ops;
Annie Li85ff6ac2011-11-22 09:59:21 +0800912
Joe Perches283c0972013-06-28 03:21:41 -0700913 pr_info("Grant tables using version %d layout\n", grant_table_version);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700914}
915
Matt Wilsond0b4d642013-01-15 13:21:27 +0000916static int gnttab_setup(void)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700917{
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100918 unsigned int max_nr_gframes;
919
920 max_nr_gframes = gnttab_max_grant_frames();
921 if (max_nr_gframes < nr_grant_frames)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700922 return -ENOSYS;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100923
Konrad Rzeszutek Wilk45684752013-12-31 16:33:31 -0500924 if (xen_feature(XENFEAT_auto_translated_physmap) && gnttab_shared.addr == NULL) {
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500925 gnttab_shared.addr = xen_auto_xlat_grant_frames.vaddr;
Annie Li0f9f5a92011-11-22 09:58:06 +0800926 if (gnttab_shared.addr == NULL) {
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500927 pr_warn("gnttab share frames (addr=0x%08lx) is not mapped!\n",
928 (unsigned long)xen_auto_xlat_grant_frames.vaddr);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100929 return -ENOMEM;
930 }
931 }
Konrad Rzeszutek Wilk45684752013-12-31 16:33:31 -0500932 return gnttab_map(0, nr_grant_frames - 1);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700933}
934
Matt Wilsond0b4d642013-01-15 13:21:27 +0000935int gnttab_resume(void)
936{
937 gnttab_request_version();
938 return gnttab_setup();
939}
940
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100941int gnttab_suspend(void)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700942{
David Vrabel13cd36a2014-06-16 11:12:03 +0100943 if (!xen_feature(XENFEAT_auto_translated_physmap))
944 gnttab_interface->unmap_frames();
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700945 return 0;
946}
947
948static int gnttab_expand(unsigned int req_entries)
949{
950 int rc;
951 unsigned int cur, extra;
952
Matt Wilsond0b4d642013-01-15 13:21:27 +0000953 BUG_ON(grefs_per_grant_frame == 0);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700954 cur = nr_grant_frames;
Matt Wilsond0b4d642013-01-15 13:21:27 +0000955 extra = ((req_entries + (grefs_per_grant_frame-1)) /
956 grefs_per_grant_frame);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100957 if (cur + extra > gnttab_max_grant_frames())
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700958 return -ENOSPC;
959
960 rc = gnttab_map(cur, cur + extra - 1);
961 if (rc == 0)
962 rc = grow_gnttab_list(extra);
963
964 return rc;
965}
966
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100967int gnttab_init(void)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700968{
969 int i;
David Vrabel162e3712014-07-11 16:42:34 +0100970 unsigned long max_nr_grant_frames;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -0700971 unsigned int max_nr_glist_frames, nr_glist_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700972 unsigned int nr_init_grefs;
Julia Lawall6b5e7d92012-04-15 11:27:12 +0200973 int ret;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700974
Matt Wilsond0b4d642013-01-15 13:21:27 +0000975 gnttab_request_version();
David Vrabel162e3712014-07-11 16:42:34 +0100976 max_nr_grant_frames = gnttab_max_grant_frames();
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700977 nr_grant_frames = 1;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700978
979 /* Determine the maximum number of frames required for the
980 * grant reference free list on the current hypervisor.
981 */
Matt Wilsond0b4d642013-01-15 13:21:27 +0000982 BUG_ON(grefs_per_grant_frame == 0);
David Vrabel162e3712014-07-11 16:42:34 +0100983 max_nr_glist_frames = (max_nr_grant_frames *
Matt Wilsond0b4d642013-01-15 13:21:27 +0000984 grefs_per_grant_frame / RPP);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700985
986 gnttab_list = kmalloc(max_nr_glist_frames * sizeof(grant_ref_t *),
987 GFP_KERNEL);
988 if (gnttab_list == NULL)
989 return -ENOMEM;
990
Matt Wilsond0b4d642013-01-15 13:21:27 +0000991 nr_glist_frames = (nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -0700992 for (i = 0; i < nr_glist_frames; i++) {
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700993 gnttab_list[i] = (grant_ref_t *)__get_free_page(GFP_KERNEL);
Julia Lawall6b5e7d92012-04-15 11:27:12 +0200994 if (gnttab_list[i] == NULL) {
995 ret = -ENOMEM;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700996 goto ini_nomem;
Julia Lawall6b5e7d92012-04-15 11:27:12 +0200997 }
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700998 }
999
David Vrabel438b33c2014-07-02 11:25:29 +01001000 ret = arch_gnttab_init(max_nr_grant_frames);
David Vrabel162e3712014-07-11 16:42:34 +01001001 if (ret < 0)
1002 goto ini_nomem;
1003
Matt Wilsond0b4d642013-01-15 13:21:27 +00001004 if (gnttab_setup() < 0) {
Julia Lawall6b5e7d92012-04-15 11:27:12 +02001005 ret = -ENODEV;
1006 goto ini_nomem;
1007 }
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001008
Matt Wilsond0b4d642013-01-15 13:21:27 +00001009 nr_init_grefs = nr_grant_frames * grefs_per_grant_frame;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001010
1011 for (i = NR_RESERVED_ENTRIES; i < nr_init_grefs - 1; i++)
1012 gnttab_entry(i) = i + 1;
1013
1014 gnttab_entry(nr_init_grefs - 1) = GNTTAB_LIST_END;
1015 gnttab_free_count = nr_init_grefs - NR_RESERVED_ENTRIES;
1016 gnttab_free_head = NR_RESERVED_ENTRIES;
1017
1018 printk("Grant table initialized\n");
1019 return 0;
1020
1021 ini_nomem:
1022 for (i--; i >= 0; i--)
1023 free_page((unsigned long)gnttab_list[i]);
1024 kfree(gnttab_list);
Julia Lawall6b5e7d92012-04-15 11:27:12 +02001025 return ret;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001026}
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001027EXPORT_SYMBOL_GPL(gnttab_init);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001028
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -08001029static int __gnttab_init(void)
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001030{
1031 /* Delay grant-table initialization in the PV on HVM case */
1032 if (xen_hvm_domain())
1033 return 0;
1034
1035 if (!xen_pv_domain())
1036 return -ENODEV;
1037
1038 return gnttab_init();
1039}
Konrad Rzeszutek Wilk6926f6d2014-01-03 10:20:18 -05001040/* Starts after core_initcall so that xen_pvh_gnttab_setup can be called
1041 * beforehand to initialize xen_auto_xlat_grant_frames. */
1042core_initcall_sync(__gnttab_init);