blob: 17972fbacddc41d34122c5af816461bd6b99effd [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>
Jennifer Herbert3f9f1c62014-12-09 18:28:37 +000045#include <linux/workqueue.h>
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070046
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070047#include <xen/xen.h>
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070048#include <xen/interface/xen.h>
49#include <xen/page.h>
50#include <xen/grant_table.h>
Stefano Stabellini183d03c2010-05-17 17:08:21 +010051#include <xen/interface/memory.h>
Annie Li85ff6ac2011-11-22 09:59:21 +080052#include <xen/hvc-console.h>
Stefano Stabellini3d24bbd2013-10-25 10:41:44 +000053#include <xen/swiotlb-xen.h>
David Vrabelff4b1562015-01-08 18:06:01 +000054#include <xen/balloon.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080055#include <asm/xen/hypercall.h>
Stefano Stabellini4d9310e2012-08-06 15:27:09 +010056#include <asm/xen/interface.h>
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070057
58#include <asm/pgtable.h>
59#include <asm/sync_bitops.h>
60
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070061/* External tools reserve first few grant table entries. */
62#define NR_RESERVED_ENTRIES 8
63#define GNTTAB_LIST_END 0xffffffff
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070064
65static grant_ref_t **gnttab_list;
66static unsigned int nr_grant_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070067static int gnttab_free_count;
68static grant_ref_t gnttab_free_head;
69static DEFINE_SPINLOCK(gnttab_list_lock);
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -050070struct grant_frames xen_auto_xlat_grant_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -070071
Annie Li0f9f5a92011-11-22 09:58:06 +080072static union {
73 struct grant_entry_v1 *v1;
74 void *addr;
75} gnttab_shared;
76
77/*This is a structure of function pointers for grant table*/
78struct gnttab_ops {
79 /*
Annie Li9dbc71d2011-12-12 18:13:57 +080080 * Mapping a list of frames for storing grant entries. Frames parameter
81 * is used to store grant table address when grant table being setup,
82 * nr_gframes is the number of frames to map grant table. Returning
83 * GNTST_okay means success and negative value means failure.
Annie Li0f9f5a92011-11-22 09:58:06 +080084 */
Ian Campbellef32f892012-10-17 09:39:14 +010085 int (*map_frames)(xen_pfn_t *frames, unsigned int nr_gframes);
Annie Li0f9f5a92011-11-22 09:58:06 +080086 /*
87 * Release a list of frames which are mapped in map_frames for grant
88 * entry status.
89 */
90 void (*unmap_frames)(void);
91 /*
Annie Li9dbc71d2011-12-12 18:13:57 +080092 * Introducing a valid entry into the grant table, granting the frame of
93 * this grant entry to domain for accessing or transfering. Ref
94 * parameter is reference of this introduced grant entry, domid is id of
95 * granted domain, frame is the page frame to be granted, and flags is
96 * status of the grant entry to be updated.
Annie Li0f9f5a92011-11-22 09:58:06 +080097 */
Annie Li9dbc71d2011-12-12 18:13:57 +080098 void (*update_entry)(grant_ref_t ref, domid_t domid,
99 unsigned long frame, unsigned flags);
Annie Li0f9f5a92011-11-22 09:58:06 +0800100 /*
Annie Li9dbc71d2011-12-12 18:13:57 +0800101 * Stop granting a grant entry to domain for accessing. Ref parameter is
102 * reference of a grant entry whose grant access will be stopped,
103 * readonly is not in use in this function. If the grant entry is
Annie Li0f9f5a92011-11-22 09:58:06 +0800104 * currently mapped for reading or writing, just return failure(==0)
105 * directly and don't tear down the grant access. Otherwise, stop grant
106 * access for this entry and return success(==1).
107 */
Annie Li9dbc71d2011-12-12 18:13:57 +0800108 int (*end_foreign_access_ref)(grant_ref_t ref, int readonly);
Annie Li0f9f5a92011-11-22 09:58:06 +0800109 /*
Annie Li9dbc71d2011-12-12 18:13:57 +0800110 * Stop granting a grant entry to domain for transfer. Ref parameter is
111 * reference of a grant entry whose grant transfer will be stopped. If
112 * tranfer has not started, just reclaim the grant entry and return
113 * failure(==0). Otherwise, wait for the transfer to complete and then
114 * return the frame.
Annie Li0f9f5a92011-11-22 09:58:06 +0800115 */
Annie Li9dbc71d2011-12-12 18:13:57 +0800116 unsigned long (*end_foreign_transfer_ref)(grant_ref_t ref);
Annie Li0f9f5a92011-11-22 09:58:06 +0800117 /*
Annie Li9dbc71d2011-12-12 18:13:57 +0800118 * Query the status of a grant entry. Ref parameter is reference of
Annie Li0f9f5a92011-11-22 09:58:06 +0800119 * queried grant entry, return value is the status of queried entry.
120 * Detailed status(writing/reading) can be gotten from the return value
121 * by bit operations.
122 */
Annie Li9dbc71d2011-12-12 18:13:57 +0800123 int (*query_foreign_access)(grant_ref_t ref);
Annie Li0f9f5a92011-11-22 09:58:06 +0800124};
125
126static struct gnttab_ops *gnttab_interface;
127
128static int grant_table_version;
Matt Wilsond0b4d642013-01-15 13:21:27 +0000129static int grefs_per_grant_frame;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700130
131static struct gnttab_free_callback *gnttab_free_callback_list;
132
133static int gnttab_expand(unsigned int req_entries);
134
135#define RPP (PAGE_SIZE / sizeof(grant_ref_t))
Annie Li85ff6ac2011-11-22 09:59:21 +0800136#define SPP (PAGE_SIZE / sizeof(grant_status_t))
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700137
138static inline grant_ref_t *__gnttab_entry(grant_ref_t entry)
139{
140 return &gnttab_list[(entry) / RPP][(entry) % RPP];
141}
142/* This can be used as an l-value */
143#define gnttab_entry(entry) (*__gnttab_entry(entry))
144
145static int get_free_entries(unsigned count)
146{
147 unsigned long flags;
Konrad Rzeszutek Wilk272800d2011-07-22 14:00:06 -0400148 int ref, rc = 0;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700149 grant_ref_t head;
150
151 spin_lock_irqsave(&gnttab_list_lock, flags);
152
153 if ((gnttab_free_count < count) &&
154 ((rc = gnttab_expand(count - gnttab_free_count)) < 0)) {
155 spin_unlock_irqrestore(&gnttab_list_lock, flags);
156 return rc;
157 }
158
159 ref = head = gnttab_free_head;
160 gnttab_free_count -= count;
161 while (count-- > 1)
162 head = gnttab_entry(head);
163 gnttab_free_head = gnttab_entry(head);
164 gnttab_entry(head) = GNTTAB_LIST_END;
165
166 spin_unlock_irqrestore(&gnttab_list_lock, flags);
167
168 return ref;
169}
170
171static void do_free_callbacks(void)
172{
173 struct gnttab_free_callback *callback, *next;
174
175 callback = gnttab_free_callback_list;
176 gnttab_free_callback_list = NULL;
177
178 while (callback != NULL) {
179 next = callback->next;
180 if (gnttab_free_count >= callback->count) {
181 callback->next = NULL;
182 callback->fn(callback->arg);
183 } else {
184 callback->next = gnttab_free_callback_list;
185 gnttab_free_callback_list = callback;
186 }
187 callback = next;
188 }
189}
190
191static inline void check_free_callbacks(void)
192{
193 if (unlikely(gnttab_free_callback_list))
194 do_free_callbacks();
195}
196
197static void put_free_entry(grant_ref_t ref)
198{
199 unsigned long flags;
200 spin_lock_irqsave(&gnttab_list_lock, flags);
201 gnttab_entry(ref) = gnttab_free_head;
202 gnttab_free_head = ref;
203 gnttab_free_count++;
204 check_free_callbacks();
205 spin_unlock_irqrestore(&gnttab_list_lock, flags);
206}
207
Annie Li0f9f5a92011-11-22 09:58:06 +0800208/*
David Vrabel438b33c2014-07-02 11:25:29 +0100209 * Following applies to gnttab_update_entry_v1.
Annie Li0f9f5a92011-11-22 09:58:06 +0800210 * Introducing a valid entry into the grant table:
211 * 1. Write ent->domid.
212 * 2. Write ent->frame:
213 * GTF_permit_access: Frame to which access is permitted.
214 * GTF_accept_transfer: Pseudo-phys frame slot being filled by new
215 * frame, or zero if none.
216 * 3. Write memory barrier (WMB).
217 * 4. Write ent->flags, inc. valid type.
218 */
219static void gnttab_update_entry_v1(grant_ref_t ref, domid_t domid,
220 unsigned long frame, unsigned flags)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700221{
Annie Li0f9f5a92011-11-22 09:58:06 +0800222 gnttab_shared.v1[ref].domid = domid;
223 gnttab_shared.v1[ref].frame = frame;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700224 wmb();
Annie Li0f9f5a92011-11-22 09:58:06 +0800225 gnttab_shared.v1[ref].flags = flags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700226}
227
228/*
229 * Public grant-issuing interface functions
230 */
231void gnttab_grant_foreign_access_ref(grant_ref_t ref, domid_t domid,
232 unsigned long frame, int readonly)
233{
Annie Li0f9f5a92011-11-22 09:58:06 +0800234 gnttab_interface->update_entry(ref, domid, frame,
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700235 GTF_permit_access | (readonly ? GTF_readonly : 0));
236}
237EXPORT_SYMBOL_GPL(gnttab_grant_foreign_access_ref);
238
239int gnttab_grant_foreign_access(domid_t domid, unsigned long frame,
240 int readonly)
241{
242 int ref;
243
244 ref = get_free_entries(1);
245 if (unlikely(ref < 0))
246 return -ENOSPC;
247
248 gnttab_grant_foreign_access_ref(ref, domid, frame, readonly);
249
250 return ref;
251}
252EXPORT_SYMBOL_GPL(gnttab_grant_foreign_access);
253
Annie Li0f9f5a92011-11-22 09:58:06 +0800254static int gnttab_query_foreign_access_v1(grant_ref_t ref)
255{
256 return gnttab_shared.v1[ref].flags & (GTF_reading|GTF_writing);
257}
258
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700259int gnttab_query_foreign_access(grant_ref_t ref)
260{
Annie Li0f9f5a92011-11-22 09:58:06 +0800261 return gnttab_interface->query_foreign_access(ref);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700262}
263EXPORT_SYMBOL_GPL(gnttab_query_foreign_access);
264
Annie Li0f9f5a92011-11-22 09:58:06 +0800265static int gnttab_end_foreign_access_ref_v1(grant_ref_t ref, int readonly)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700266{
267 u16 flags, nflags;
Annie Lib1e495b2011-11-22 09:58:47 +0800268 u16 *pflags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700269
Annie Lib1e495b2011-11-22 09:58:47 +0800270 pflags = &gnttab_shared.v1[ref].flags;
271 nflags = *pflags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700272 do {
273 flags = nflags;
Jan Beulich569ca5b2012-04-05 16:10:07 +0100274 if (flags & (GTF_reading|GTF_writing))
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700275 return 0;
Annie Lib1e495b2011-11-22 09:58:47 +0800276 } while ((nflags = sync_cmpxchg(pflags, flags, 0)) != flags);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700277
278 return 1;
279}
Annie Li0f9f5a92011-11-22 09:58:06 +0800280
Jan Beulich569ca5b2012-04-05 16:10:07 +0100281static inline int _gnttab_end_foreign_access_ref(grant_ref_t ref, int readonly)
Annie Li0f9f5a92011-11-22 09:58:06 +0800282{
283 return gnttab_interface->end_foreign_access_ref(ref, readonly);
284}
Jan Beulich569ca5b2012-04-05 16:10:07 +0100285
286int gnttab_end_foreign_access_ref(grant_ref_t ref, int readonly)
287{
288 if (_gnttab_end_foreign_access_ref(ref, readonly))
289 return 1;
290 pr_warn("WARNING: g.e. %#x still in use!\n", ref);
291 return 0;
292}
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700293EXPORT_SYMBOL_GPL(gnttab_end_foreign_access_ref);
294
Jan Beulich569ca5b2012-04-05 16:10:07 +0100295struct deferred_entry {
296 struct list_head list;
297 grant_ref_t ref;
298 bool ro;
299 uint16_t warn_delay;
300 struct page *page;
301};
302static LIST_HEAD(deferred_list);
303static void gnttab_handle_deferred(unsigned long);
304static DEFINE_TIMER(deferred_timer, gnttab_handle_deferred, 0, 0);
305
306static void gnttab_handle_deferred(unsigned long unused)
307{
308 unsigned int nr = 10;
309 struct deferred_entry *first = NULL;
310 unsigned long flags;
311
312 spin_lock_irqsave(&gnttab_list_lock, flags);
313 while (nr--) {
314 struct deferred_entry *entry
315 = list_first_entry(&deferred_list,
316 struct deferred_entry, list);
317
318 if (entry == first)
319 break;
320 list_del(&entry->list);
321 spin_unlock_irqrestore(&gnttab_list_lock, flags);
322 if (_gnttab_end_foreign_access_ref(entry->ref, entry->ro)) {
323 put_free_entry(entry->ref);
324 if (entry->page) {
325 pr_debug("freeing g.e. %#x (pfn %#lx)\n",
326 entry->ref, page_to_pfn(entry->page));
327 __free_page(entry->page);
328 } else
329 pr_info("freeing g.e. %#x\n", entry->ref);
330 kfree(entry);
331 entry = NULL;
332 } else {
333 if (!--entry->warn_delay)
Joe Perches283c0972013-06-28 03:21:41 -0700334 pr_info("g.e. %#x still pending\n", entry->ref);
Jan Beulich569ca5b2012-04-05 16:10:07 +0100335 if (!first)
336 first = entry;
337 }
338 spin_lock_irqsave(&gnttab_list_lock, flags);
339 if (entry)
340 list_add_tail(&entry->list, &deferred_list);
341 else if (list_empty(&deferred_list))
342 break;
343 }
344 if (!list_empty(&deferred_list) && !timer_pending(&deferred_timer)) {
345 deferred_timer.expires = jiffies + HZ;
346 add_timer(&deferred_timer);
347 }
348 spin_unlock_irqrestore(&gnttab_list_lock, flags);
349}
350
351static void gnttab_add_deferred(grant_ref_t ref, bool readonly,
352 struct page *page)
353{
354 struct deferred_entry *entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
355 const char *what = KERN_WARNING "leaking";
356
357 if (entry) {
358 unsigned long flags;
359
360 entry->ref = ref;
361 entry->ro = readonly;
362 entry->page = page;
363 entry->warn_delay = 60;
364 spin_lock_irqsave(&gnttab_list_lock, flags);
365 list_add_tail(&entry->list, &deferred_list);
366 if (!timer_pending(&deferred_timer)) {
367 deferred_timer.expires = jiffies + HZ;
368 add_timer(&deferred_timer);
369 }
370 spin_unlock_irqrestore(&gnttab_list_lock, flags);
371 what = KERN_DEBUG "deferring";
372 }
373 printk("%s g.e. %#x (pfn %#lx)\n",
374 what, ref, page ? page_to_pfn(page) : -1);
375}
376
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700377void gnttab_end_foreign_access(grant_ref_t ref, int readonly,
378 unsigned long page)
379{
380 if (gnttab_end_foreign_access_ref(ref, readonly)) {
381 put_free_entry(ref);
382 if (page != 0)
383 free_page(page);
Jan Beulich569ca5b2012-04-05 16:10:07 +0100384 } else
385 gnttab_add_deferred(ref, readonly,
386 page ? virt_to_page(page) : NULL);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700387}
388EXPORT_SYMBOL_GPL(gnttab_end_foreign_access);
389
390int gnttab_grant_foreign_transfer(domid_t domid, unsigned long pfn)
391{
392 int ref;
393
394 ref = get_free_entries(1);
395 if (unlikely(ref < 0))
396 return -ENOSPC;
397 gnttab_grant_foreign_transfer_ref(ref, domid, pfn);
398
399 return ref;
400}
401EXPORT_SYMBOL_GPL(gnttab_grant_foreign_transfer);
402
403void gnttab_grant_foreign_transfer_ref(grant_ref_t ref, domid_t domid,
404 unsigned long pfn)
405{
Annie Li0f9f5a92011-11-22 09:58:06 +0800406 gnttab_interface->update_entry(ref, domid, pfn, GTF_accept_transfer);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700407}
408EXPORT_SYMBOL_GPL(gnttab_grant_foreign_transfer_ref);
409
Annie Li0f9f5a92011-11-22 09:58:06 +0800410static unsigned long gnttab_end_foreign_transfer_ref_v1(grant_ref_t ref)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700411{
412 unsigned long frame;
413 u16 flags;
Annie Lib1e495b2011-11-22 09:58:47 +0800414 u16 *pflags;
415
416 pflags = &gnttab_shared.v1[ref].flags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700417
418 /*
419 * If a transfer is not even yet started, try to reclaim the grant
420 * reference and return failure (== 0).
421 */
Annie Lib1e495b2011-11-22 09:58:47 +0800422 while (!((flags = *pflags) & GTF_transfer_committed)) {
423 if (sync_cmpxchg(pflags, flags, 0) == flags)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700424 return 0;
425 cpu_relax();
426 }
427
428 /* If a transfer is in progress then wait until it is completed. */
429 while (!(flags & GTF_transfer_completed)) {
Annie Lib1e495b2011-11-22 09:58:47 +0800430 flags = *pflags;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700431 cpu_relax();
432 }
433
434 rmb(); /* Read the frame number /after/ reading completion status. */
Annie Li0f9f5a92011-11-22 09:58:06 +0800435 frame = gnttab_shared.v1[ref].frame;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700436 BUG_ON(frame == 0);
437
438 return frame;
439}
Annie Li0f9f5a92011-11-22 09:58:06 +0800440
441unsigned long gnttab_end_foreign_transfer_ref(grant_ref_t ref)
442{
443 return gnttab_interface->end_foreign_transfer_ref(ref);
444}
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700445EXPORT_SYMBOL_GPL(gnttab_end_foreign_transfer_ref);
446
447unsigned long gnttab_end_foreign_transfer(grant_ref_t ref)
448{
449 unsigned long frame = gnttab_end_foreign_transfer_ref(ref);
450 put_free_entry(ref);
451 return frame;
452}
453EXPORT_SYMBOL_GPL(gnttab_end_foreign_transfer);
454
455void gnttab_free_grant_reference(grant_ref_t ref)
456{
457 put_free_entry(ref);
458}
459EXPORT_SYMBOL_GPL(gnttab_free_grant_reference);
460
461void gnttab_free_grant_references(grant_ref_t head)
462{
463 grant_ref_t ref;
464 unsigned long flags;
465 int count = 1;
466 if (head == GNTTAB_LIST_END)
467 return;
468 spin_lock_irqsave(&gnttab_list_lock, flags);
469 ref = head;
470 while (gnttab_entry(ref) != GNTTAB_LIST_END) {
471 ref = gnttab_entry(ref);
472 count++;
473 }
474 gnttab_entry(ref) = gnttab_free_head;
475 gnttab_free_head = head;
476 gnttab_free_count += count;
477 check_free_callbacks();
478 spin_unlock_irqrestore(&gnttab_list_lock, flags);
479}
480EXPORT_SYMBOL_GPL(gnttab_free_grant_references);
481
482int gnttab_alloc_grant_references(u16 count, grant_ref_t *head)
483{
484 int h = get_free_entries(count);
485
486 if (h < 0)
487 return -ENOSPC;
488
489 *head = h;
490
491 return 0;
492}
493EXPORT_SYMBOL_GPL(gnttab_alloc_grant_references);
494
495int gnttab_empty_grant_references(const grant_ref_t *private_head)
496{
497 return (*private_head == GNTTAB_LIST_END);
498}
499EXPORT_SYMBOL_GPL(gnttab_empty_grant_references);
500
501int gnttab_claim_grant_reference(grant_ref_t *private_head)
502{
503 grant_ref_t g = *private_head;
504 if (unlikely(g == GNTTAB_LIST_END))
505 return -ENOSPC;
506 *private_head = gnttab_entry(g);
507 return g;
508}
509EXPORT_SYMBOL_GPL(gnttab_claim_grant_reference);
510
511void gnttab_release_grant_reference(grant_ref_t *private_head,
512 grant_ref_t release)
513{
514 gnttab_entry(release) = *private_head;
515 *private_head = release;
516}
517EXPORT_SYMBOL_GPL(gnttab_release_grant_reference);
518
519void gnttab_request_free_callback(struct gnttab_free_callback *callback,
520 void (*fn)(void *), void *arg, u16 count)
521{
522 unsigned long flags;
Roger Pau Monne5f338d92013-07-31 17:00:42 +0200523 struct gnttab_free_callback *cb;
524
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700525 spin_lock_irqsave(&gnttab_list_lock, flags);
Roger Pau Monne5f338d92013-07-31 17:00:42 +0200526
527 /* Check if the callback is already on the list */
528 cb = gnttab_free_callback_list;
529 while (cb) {
530 if (cb == callback)
531 goto out;
532 cb = cb->next;
533 }
534
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700535 callback->fn = fn;
536 callback->arg = arg;
537 callback->count = count;
538 callback->next = gnttab_free_callback_list;
539 gnttab_free_callback_list = callback;
540 check_free_callbacks();
541out:
542 spin_unlock_irqrestore(&gnttab_list_lock, flags);
543}
544EXPORT_SYMBOL_GPL(gnttab_request_free_callback);
545
546void gnttab_cancel_free_callback(struct gnttab_free_callback *callback)
547{
548 struct gnttab_free_callback **pcb;
549 unsigned long flags;
550
551 spin_lock_irqsave(&gnttab_list_lock, flags);
552 for (pcb = &gnttab_free_callback_list; *pcb; pcb = &(*pcb)->next) {
553 if (*pcb == callback) {
554 *pcb = callback->next;
555 break;
556 }
557 }
558 spin_unlock_irqrestore(&gnttab_list_lock, flags);
559}
560EXPORT_SYMBOL_GPL(gnttab_cancel_free_callback);
561
562static int grow_gnttab_list(unsigned int more_frames)
563{
564 unsigned int new_nr_grant_frames, extra_entries, i;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -0700565 unsigned int nr_glist_frames, new_nr_glist_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700566
Matt Wilsond0b4d642013-01-15 13:21:27 +0000567 BUG_ON(grefs_per_grant_frame == 0);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700568
Matt Wilsond0b4d642013-01-15 13:21:27 +0000569 new_nr_grant_frames = nr_grant_frames + more_frames;
570 extra_entries = more_frames * grefs_per_grant_frame;
571
572 nr_glist_frames = (nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -0700573 new_nr_glist_frames =
Matt Wilsond0b4d642013-01-15 13:21:27 +0000574 (new_nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -0700575 for (i = nr_glist_frames; i < new_nr_glist_frames; i++) {
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700576 gnttab_list[i] = (grant_ref_t *)__get_free_page(GFP_ATOMIC);
577 if (!gnttab_list[i])
578 goto grow_nomem;
579 }
580
581
Matt Wilsond0b4d642013-01-15 13:21:27 +0000582 for (i = grefs_per_grant_frame * nr_grant_frames;
583 i < grefs_per_grant_frame * new_nr_grant_frames - 1; i++)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700584 gnttab_entry(i) = i + 1;
585
586 gnttab_entry(i) = gnttab_free_head;
Matt Wilsond0b4d642013-01-15 13:21:27 +0000587 gnttab_free_head = grefs_per_grant_frame * nr_grant_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700588 gnttab_free_count += extra_entries;
589
590 nr_grant_frames = new_nr_grant_frames;
591
592 check_free_callbacks();
593
594 return 0;
595
596grow_nomem:
Chen Gang46e36262014-08-26 23:38:44 +0800597 while (i-- > nr_glist_frames)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700598 free_page((unsigned long) gnttab_list[i]);
599 return -ENOMEM;
600}
601
602static unsigned int __max_nr_grant_frames(void)
603{
604 struct gnttab_query_size query;
605 int rc;
606
607 query.dom = DOMID_SELF;
608
609 rc = HYPERVISOR_grant_table_op(GNTTABOP_query_size, &query, 1);
610 if ((rc < 0) || (query.status != GNTST_okay))
611 return 4; /* Legacy max supported number of frames */
612
613 return query.max_nr_frames;
614}
615
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100616unsigned int gnttab_max_grant_frames(void)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700617{
618 unsigned int xen_max = __max_nr_grant_frames();
Konrad Rzeszutek Wilk7f256022013-12-31 15:55:39 -0500619 static unsigned int boot_max_nr_grant_frames;
620
621 /* First time, initialize it properly. */
622 if (!boot_max_nr_grant_frames)
623 boot_max_nr_grant_frames = __max_nr_grant_frames();
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700624
625 if (xen_max > boot_max_nr_grant_frames)
626 return boot_max_nr_grant_frames;
627 return xen_max;
628}
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100629EXPORT_SYMBOL_GPL(gnttab_max_grant_frames);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700630
Julien Grall47c54202014-01-30 12:56:34 +0000631int gnttab_setup_auto_xlat_frames(phys_addr_t addr)
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500632{
633 xen_pfn_t *pfn;
634 unsigned int max_nr_gframes = __max_nr_grant_frames();
635 unsigned int i;
636 void *vaddr;
637
638 if (xen_auto_xlat_grant_frames.count)
639 return -EINVAL;
640
641 vaddr = xen_remap(addr, PAGE_SIZE * max_nr_gframes);
642 if (vaddr == NULL) {
Julien Grall47c54202014-01-30 12:56:34 +0000643 pr_warn("Failed to ioremap gnttab share frames (addr=%pa)!\n",
644 &addr);
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500645 return -ENOMEM;
646 }
647 pfn = kcalloc(max_nr_gframes, sizeof(pfn[0]), GFP_KERNEL);
648 if (!pfn) {
649 xen_unmap(vaddr);
650 return -ENOMEM;
651 }
652 for (i = 0; i < max_nr_gframes; i++)
653 pfn[i] = PFN_DOWN(addr) + i;
654
655 xen_auto_xlat_grant_frames.vaddr = vaddr;
656 xen_auto_xlat_grant_frames.pfn = pfn;
657 xen_auto_xlat_grant_frames.count = max_nr_gframes;
658
659 return 0;
660}
661EXPORT_SYMBOL_GPL(gnttab_setup_auto_xlat_frames);
662
663void gnttab_free_auto_xlat_frames(void)
664{
665 if (!xen_auto_xlat_grant_frames.count)
666 return;
667 kfree(xen_auto_xlat_grant_frames.pfn);
668 xen_unmap(xen_auto_xlat_grant_frames.vaddr);
669
670 xen_auto_xlat_grant_frames.pfn = NULL;
671 xen_auto_xlat_grant_frames.count = 0;
672 xen_auto_xlat_grant_frames.vaddr = NULL;
673}
674EXPORT_SYMBOL_GPL(gnttab_free_auto_xlat_frames);
675
David Vrabelff4b1562015-01-08 18:06:01 +0000676/**
677 * gnttab_alloc_pages - alloc pages suitable for grant mapping into
678 * @nr_pages: number of pages to alloc
679 * @pages: returns the pages
680 */
681int gnttab_alloc_pages(int nr_pages, struct page **pages)
682{
Jennifer Herbert8da76332014-12-24 14:17:06 +0000683 int i;
David Vrabelff4b1562015-01-08 18:06:01 +0000684 int ret;
685
686 ret = alloc_xenballooned_pages(nr_pages, pages, false);
687 if (ret < 0)
688 return ret;
689
Jennifer Herbert8da76332014-12-24 14:17:06 +0000690 for (i = 0; i < nr_pages; i++) {
691#if BITS_PER_LONG < 64
692 struct xen_page_foreign *foreign;
693
694 foreign = kzalloc(sizeof(*foreign), GFP_KERNEL);
695 if (!foreign) {
696 gnttab_free_pages(nr_pages, pages);
697 return -ENOMEM;
698 }
699 set_page_private(pages[i], (unsigned long)foreign);
700#endif
701 SetPagePrivate(pages[i]);
702 }
703
David Vrabelff4b1562015-01-08 18:06:01 +0000704 return 0;
705}
706EXPORT_SYMBOL(gnttab_alloc_pages);
707
708/**
709 * gnttab_free_pages - free pages allocated by gnttab_alloc_pages()
710 * @nr_pages; number of pages to free
711 * @pages: the pages
712 */
713void gnttab_free_pages(int nr_pages, struct page **pages)
714{
Jennifer Herbert8da76332014-12-24 14:17:06 +0000715 int i;
716
717 for (i = 0; i < nr_pages; i++) {
718 if (PagePrivate(pages[i])) {
719#if BITS_PER_LONG < 64
720 kfree((void *)page_private(pages[i]));
721#endif
722 ClearPagePrivate(pages[i]);
723 }
724 }
David Vrabelff4b1562015-01-08 18:06:01 +0000725 free_xenballooned_pages(nr_pages, pages);
726}
727EXPORT_SYMBOL(gnttab_free_pages);
728
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +0000729/* Handling of paged out grant targets (GNTST_eagain) */
730#define MAX_DELAY 256
731static inline void
732gnttab_retry_eagain_gop(unsigned int cmd, void *gop, int16_t *status,
733 const char *func)
734{
735 unsigned delay = 1;
736
737 do {
738 BUG_ON(HYPERVISOR_grant_table_op(cmd, gop, 1));
739 if (*status == GNTST_eagain)
740 msleep(delay++);
741 } while ((*status == GNTST_eagain) && (delay < MAX_DELAY));
742
743 if (delay >= MAX_DELAY) {
Joe Perches283c0972013-06-28 03:21:41 -0700744 pr_err("%s: %s eagain grant\n", func, current->comm);
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +0000745 *status = GNTST_bad_page;
746 }
747}
748
749void gnttab_batch_map(struct gnttab_map_grant_ref *batch, unsigned count)
750{
751 struct gnttab_map_grant_ref *op;
752
753 if (HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, batch, count))
754 BUG();
755 for (op = batch; op < batch + count; op++)
756 if (op->status == GNTST_eagain)
757 gnttab_retry_eagain_gop(GNTTABOP_map_grant_ref, op,
758 &op->status, __func__);
759}
760EXPORT_SYMBOL_GPL(gnttab_batch_map);
761
762void gnttab_batch_copy(struct gnttab_copy *batch, unsigned count)
763{
764 struct gnttab_copy *op;
765
766 if (HYPERVISOR_grant_table_op(GNTTABOP_copy, batch, count))
767 BUG();
768 for (op = batch; op < batch + count; op++)
769 if (op->status == GNTST_eagain)
770 gnttab_retry_eagain_gop(GNTTABOP_copy, op,
771 &op->status, __func__);
772}
773EXPORT_SYMBOL_GPL(gnttab_batch_copy);
774
Konrad Rzeszutek Wilke85fc982014-02-03 06:43:59 -0500775int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops,
Annie Lic1237992011-11-22 09:59:56 +0800776 struct gnttab_map_grant_ref *kmap_ops,
Konrad Rzeszutek Wilke85fc982014-02-03 06:43:59 -0500777 struct page **pages, unsigned int count)
Stefano Stabellini289b7772010-12-10 14:54:44 +0000778{
779 int i, ret;
Stefano Stabellini289b7772010-12-10 14:54:44 +0000780
781 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map_ops, count);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000782 if (ret)
783 return ret;
Stefano Stabellini289b7772010-12-10 14:54:44 +0000784
Jennifer Herbert8da76332014-12-24 14:17:06 +0000785 for (i = 0; i < count; i++) {
786 /* Retry eagain maps */
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +0000787 if (map_ops[i].status == GNTST_eagain)
788 gnttab_retry_eagain_gop(GNTTABOP_map_grant_ref, map_ops + i,
789 &map_ops[i].status, __func__);
790
Jennifer Herbert8da76332014-12-24 14:17:06 +0000791 if (map_ops[i].status == GNTST_okay) {
792 struct xen_page_foreign *foreign;
793
794 SetPageForeign(pages[i]);
795 foreign = xen_page_foreign(pages[i]);
796 foreign->domid = map_ops[i].dom;
797 foreign->gref = map_ops[i].ref;
798 }
799 }
800
Zoltan Kiss1429d462014-02-27 15:55:30 +0000801 return set_foreign_p2m_mapping(map_ops, kmap_ops, pages, count);
Stefano Stabellini289b7772010-12-10 14:54:44 +0000802}
803EXPORT_SYMBOL_GPL(gnttab_map_refs);
804
Konrad Rzeszutek Wilke85fc982014-02-03 06:43:59 -0500805int gnttab_unmap_refs(struct gnttab_unmap_grant_ref *unmap_ops,
David Vrabel853d0282015-01-05 14:13:41 +0000806 struct gnttab_unmap_grant_ref *kunmap_ops,
Konrad Rzeszutek Wilke85fc982014-02-03 06:43:59 -0500807 struct page **pages, unsigned int count)
Stefano Stabellini289b7772010-12-10 14:54:44 +0000808{
Jennifer Herbert8da76332014-12-24 14:17:06 +0000809 unsigned int i;
Zoltan Kiss1429d462014-02-27 15:55:30 +0000810 int ret;
Stefano Stabellini289b7772010-12-10 14:54:44 +0000811
812 ret = HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, unmap_ops, count);
Jeremy Fitzhardinge87f1d402010-12-13 14:42:30 +0000813 if (ret)
814 return ret;
815
Jennifer Herbert8da76332014-12-24 14:17:06 +0000816 for (i = 0; i < count; i++)
817 ClearPageForeign(pages[i]);
818
David Vrabel853d0282015-01-05 14:13:41 +0000819 return clear_foreign_p2m_mapping(unmap_ops, kunmap_ops, pages, count);
Stefano Stabellini289b7772010-12-10 14:54:44 +0000820}
821EXPORT_SYMBOL_GPL(gnttab_unmap_refs);
822
Jennifer Herbert3f9f1c62014-12-09 18:28:37 +0000823#define GNTTAB_UNMAP_REFS_DELAY 5
824
825static void __gnttab_unmap_refs_async(struct gntab_unmap_queue_data* item);
826
827static void gnttab_unmap_work(struct work_struct *work)
828{
829 struct gntab_unmap_queue_data
830 *unmap_data = container_of(work,
831 struct gntab_unmap_queue_data,
832 gnttab_work.work);
833 if (unmap_data->age != UINT_MAX)
834 unmap_data->age++;
835 __gnttab_unmap_refs_async(unmap_data);
836}
837
838static void __gnttab_unmap_refs_async(struct gntab_unmap_queue_data* item)
839{
840 int ret;
841 int pc;
842
843 for (pc = 0; pc < item->count; pc++) {
844 if (page_count(item->pages[pc]) > 1) {
845 unsigned long delay = GNTTAB_UNMAP_REFS_DELAY * (item->age + 1);
846 schedule_delayed_work(&item->gnttab_work,
847 msecs_to_jiffies(delay));
848 return;
849 }
850 }
851
852 ret = gnttab_unmap_refs(item->unmap_ops, item->kunmap_ops,
853 item->pages, item->count);
854 item->done(ret, item);
855}
856
857void gnttab_unmap_refs_async(struct gntab_unmap_queue_data* item)
858{
859 INIT_DELAYED_WORK(&item->gnttab_work, gnttab_unmap_work);
860 item->age = 0;
861
862 __gnttab_unmap_refs_async(item);
863}
864EXPORT_SYMBOL_GPL(gnttab_unmap_refs_async);
865
Ian Campbellef32f892012-10-17 09:39:14 +0100866static int gnttab_map_frames_v1(xen_pfn_t *frames, unsigned int nr_gframes)
Annie Li0f9f5a92011-11-22 09:58:06 +0800867{
868 int rc;
869
870 rc = arch_gnttab_map_shared(frames, nr_gframes,
871 gnttab_max_grant_frames(),
872 &gnttab_shared.addr);
873 BUG_ON(rc);
874
875 return 0;
876}
877
878static void gnttab_unmap_frames_v1(void)
879{
Annie Li85ff6ac2011-11-22 09:59:21 +0800880 arch_gnttab_unmap(gnttab_shared.addr, nr_grant_frames);
881}
882
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700883static int gnttab_map(unsigned int start_idx, unsigned int end_idx)
884{
885 struct gnttab_setup_table setup;
Ian Campbellef32f892012-10-17 09:39:14 +0100886 xen_pfn_t *frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700887 unsigned int nr_gframes = end_idx + 1;
888 int rc;
889
Konrad Rzeszutek Wilk6926f6d2014-01-03 10:20:18 -0500890 if (xen_feature(XENFEAT_auto_translated_physmap)) {
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100891 struct xen_add_to_physmap xatp;
892 unsigned int i = end_idx;
893 rc = 0;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500894 BUG_ON(xen_auto_xlat_grant_frames.count < nr_gframes);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100895 /*
896 * Loop backwards, so that the first hypercall has the largest
897 * index, ensuring that the table will grow only once.
898 */
899 do {
900 xatp.domid = DOMID_SELF;
901 xatp.idx = i;
902 xatp.space = XENMAPSPACE_grant_table;
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500903 xatp.gpfn = xen_auto_xlat_grant_frames.pfn[i];
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100904 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp);
905 if (rc != 0) {
Joe Perches283c0972013-06-28 03:21:41 -0700906 pr_warn("grant table add_to_physmap failed, err=%d\n",
907 rc);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100908 break;
909 }
910 } while (i-- > start_idx);
911
912 return rc;
913 }
914
Annie Li85ff6ac2011-11-22 09:59:21 +0800915 /* No need for kzalloc as it is initialized in following hypercall
916 * GNTTABOP_setup_table.
917 */
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700918 frames = kmalloc(nr_gframes * sizeof(unsigned long), GFP_ATOMIC);
919 if (!frames)
920 return -ENOMEM;
921
922 setup.dom = DOMID_SELF;
923 setup.nr_frames = nr_gframes;
Isaku Yamahata87e27cf2008-04-02 10:53:52 -0700924 set_xen_guest_handle(setup.frame_list, frames);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700925
926 rc = HYPERVISOR_grant_table_op(GNTTABOP_setup_table, &setup, 1);
927 if (rc == -ENOSYS) {
928 kfree(frames);
929 return -ENOSYS;
930 }
931
932 BUG_ON(rc || setup.status);
933
Annie Li0f9f5a92011-11-22 09:58:06 +0800934 rc = gnttab_interface->map_frames(frames, nr_gframes);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700935
936 kfree(frames);
937
Annie Li0f9f5a92011-11-22 09:58:06 +0800938 return rc;
939}
940
941static struct gnttab_ops gnttab_v1_ops = {
942 .map_frames = gnttab_map_frames_v1,
943 .unmap_frames = gnttab_unmap_frames_v1,
944 .update_entry = gnttab_update_entry_v1,
945 .end_foreign_access_ref = gnttab_end_foreign_access_ref_v1,
946 .end_foreign_transfer_ref = gnttab_end_foreign_transfer_ref_v1,
947 .query_foreign_access = gnttab_query_foreign_access_v1,
948};
949
950static void gnttab_request_version(void)
951{
David Vrabel438b33c2014-07-02 11:25:29 +0100952 /* Only version 1 is used, which will always be available. */
953 grant_table_version = 1;
954 grefs_per_grant_frame = PAGE_SIZE / sizeof(struct grant_entry_v1);
955 gnttab_interface = &gnttab_v1_ops;
Annie Li85ff6ac2011-11-22 09:59:21 +0800956
Joe Perches283c0972013-06-28 03:21:41 -0700957 pr_info("Grant tables using version %d layout\n", grant_table_version);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700958}
959
Matt Wilsond0b4d642013-01-15 13:21:27 +0000960static int gnttab_setup(void)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700961{
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100962 unsigned int max_nr_gframes;
963
964 max_nr_gframes = gnttab_max_grant_frames();
965 if (max_nr_gframes < nr_grant_frames)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700966 return -ENOSYS;
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100967
Konrad Rzeszutek Wilk45684752013-12-31 16:33:31 -0500968 if (xen_feature(XENFEAT_auto_translated_physmap) && gnttab_shared.addr == NULL) {
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500969 gnttab_shared.addr = xen_auto_xlat_grant_frames.vaddr;
Annie Li0f9f5a92011-11-22 09:58:06 +0800970 if (gnttab_shared.addr == NULL) {
Konrad Rzeszutek Wilkefaf30a2014-01-06 10:40:36 -0500971 pr_warn("gnttab share frames (addr=0x%08lx) is not mapped!\n",
972 (unsigned long)xen_auto_xlat_grant_frames.vaddr);
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100973 return -ENOMEM;
974 }
975 }
Konrad Rzeszutek Wilk45684752013-12-31 16:33:31 -0500976 return gnttab_map(0, nr_grant_frames - 1);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700977}
978
Matt Wilsond0b4d642013-01-15 13:21:27 +0000979int gnttab_resume(void)
980{
981 gnttab_request_version();
982 return gnttab_setup();
983}
984
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100985int gnttab_suspend(void)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700986{
David Vrabel13cd36a2014-06-16 11:12:03 +0100987 if (!xen_feature(XENFEAT_auto_translated_physmap))
988 gnttab_interface->unmap_frames();
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700989 return 0;
990}
991
992static int gnttab_expand(unsigned int req_entries)
993{
994 int rc;
995 unsigned int cur, extra;
996
Matt Wilsond0b4d642013-01-15 13:21:27 +0000997 BUG_ON(grefs_per_grant_frame == 0);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -0700998 cur = nr_grant_frames;
Matt Wilsond0b4d642013-01-15 13:21:27 +0000999 extra = ((req_entries + (grefs_per_grant_frame-1)) /
1000 grefs_per_grant_frame);
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001001 if (cur + extra > gnttab_max_grant_frames())
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001002 return -ENOSPC;
1003
1004 rc = gnttab_map(cur, cur + extra - 1);
1005 if (rc == 0)
1006 rc = grow_gnttab_list(extra);
1007
1008 return rc;
1009}
1010
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001011int gnttab_init(void)
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001012{
1013 int i;
David Vrabel162e3712014-07-11 16:42:34 +01001014 unsigned long max_nr_grant_frames;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -07001015 unsigned int max_nr_glist_frames, nr_glist_frames;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001016 unsigned int nr_init_grefs;
Julia Lawall6b5e7d92012-04-15 11:27:12 +02001017 int ret;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001018
Matt Wilsond0b4d642013-01-15 13:21:27 +00001019 gnttab_request_version();
David Vrabel162e3712014-07-11 16:42:34 +01001020 max_nr_grant_frames = gnttab_max_grant_frames();
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001021 nr_grant_frames = 1;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001022
1023 /* Determine the maximum number of frames required for the
1024 * grant reference free list on the current hypervisor.
1025 */
Matt Wilsond0b4d642013-01-15 13:21:27 +00001026 BUG_ON(grefs_per_grant_frame == 0);
David Vrabel162e3712014-07-11 16:42:34 +01001027 max_nr_glist_frames = (max_nr_grant_frames *
Matt Wilsond0b4d642013-01-15 13:21:27 +00001028 grefs_per_grant_frame / RPP);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001029
1030 gnttab_list = kmalloc(max_nr_glist_frames * sizeof(grant_ref_t *),
1031 GFP_KERNEL);
1032 if (gnttab_list == NULL)
1033 return -ENOMEM;
1034
Matt Wilsond0b4d642013-01-15 13:21:27 +00001035 nr_glist_frames = (nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
Michael Abd-El-Malekbbc60c12008-04-04 02:33:48 -07001036 for (i = 0; i < nr_glist_frames; i++) {
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001037 gnttab_list[i] = (grant_ref_t *)__get_free_page(GFP_KERNEL);
Julia Lawall6b5e7d92012-04-15 11:27:12 +02001038 if (gnttab_list[i] == NULL) {
1039 ret = -ENOMEM;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001040 goto ini_nomem;
Julia Lawall6b5e7d92012-04-15 11:27:12 +02001041 }
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001042 }
1043
David Vrabel438b33c2014-07-02 11:25:29 +01001044 ret = arch_gnttab_init(max_nr_grant_frames);
David Vrabel162e3712014-07-11 16:42:34 +01001045 if (ret < 0)
1046 goto ini_nomem;
1047
Matt Wilsond0b4d642013-01-15 13:21:27 +00001048 if (gnttab_setup() < 0) {
Julia Lawall6b5e7d92012-04-15 11:27:12 +02001049 ret = -ENODEV;
1050 goto ini_nomem;
1051 }
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001052
Matt Wilsond0b4d642013-01-15 13:21:27 +00001053 nr_init_grefs = nr_grant_frames * grefs_per_grant_frame;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001054
1055 for (i = NR_RESERVED_ENTRIES; i < nr_init_grefs - 1; i++)
1056 gnttab_entry(i) = i + 1;
1057
1058 gnttab_entry(nr_init_grefs - 1) = GNTTAB_LIST_END;
1059 gnttab_free_count = nr_init_grefs - NR_RESERVED_ENTRIES;
1060 gnttab_free_head = NR_RESERVED_ENTRIES;
1061
1062 printk("Grant table initialized\n");
1063 return 0;
1064
1065 ini_nomem:
1066 for (i--; i >= 0; i--)
1067 free_page((unsigned long)gnttab_list[i]);
1068 kfree(gnttab_list);
Julia Lawall6b5e7d92012-04-15 11:27:12 +02001069 return ret;
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001070}
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001071EXPORT_SYMBOL_GPL(gnttab_init);
Jeremy Fitzhardingead9a8612007-07-17 18:37:06 -07001072
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -08001073static int __gnttab_init(void)
Stefano Stabellini183d03c2010-05-17 17:08:21 +01001074{
1075 /* Delay grant-table initialization in the PV on HVM case */
1076 if (xen_hvm_domain())
1077 return 0;
1078
1079 if (!xen_pv_domain())
1080 return -ENODEV;
1081
1082 return gnttab_init();
1083}
Konrad Rzeszutek Wilk6926f6d2014-01-03 10:20:18 -05001084/* Starts after core_initcall so that xen_pvh_gnttab_setup can be called
1085 * beforehand to initialize xen_auto_xlat_grant_frames. */
1086core_initcall_sync(__gnttab_init);