]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/xen/grant-table.c
xen/granttable: Refactor some code
[mirror_ubuntu-artful-kernel.git] / drivers / xen / grant-table.c
CommitLineData
ad9a8612
JF
1/******************************************************************************
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
34#include <linux/module.h>
35#include <linux/sched.h>
36#include <linux/mm.h>
5a0e3ad6 37#include <linux/slab.h>
ad9a8612
JF
38#include <linux/vmalloc.h>
39#include <linux/uaccess.h>
183d03cc 40#include <linux/io.h>
ad9a8612 41
1ccbf534 42#include <xen/xen.h>
ad9a8612
JF
43#include <xen/interface/xen.h>
44#include <xen/page.h>
45#include <xen/grant_table.h>
183d03cc 46#include <xen/interface/memory.h>
ecbf29cd 47#include <asm/xen/hypercall.h>
ad9a8612
JF
48
49#include <asm/pgtable.h>
50#include <asm/sync_bitops.h>
51
52
53/* External tools reserve first few grant table entries. */
54#define NR_RESERVED_ENTRIES 8
55#define GNTTAB_LIST_END 0xffffffff
0f9f5a95 56#define GREFS_PER_GRANT_FRAME (PAGE_SIZE / sizeof(struct grant_entry_v1))
ad9a8612
JF
57
58static grant_ref_t **gnttab_list;
59static unsigned int nr_grant_frames;
60static unsigned int boot_max_nr_grant_frames;
61static int gnttab_free_count;
62static grant_ref_t gnttab_free_head;
63static DEFINE_SPINLOCK(gnttab_list_lock);
183d03cc
SS
64unsigned long xen_hvm_resume_frames;
65EXPORT_SYMBOL_GPL(xen_hvm_resume_frames);
ad9a8612 66
0f9f5a95
AL
67static union {
68 struct grant_entry_v1 *v1;
69 void *addr;
70} gnttab_shared;
71
72/*This is a structure of function pointers for grant table*/
73struct gnttab_ops {
74 /*
75 * Mapping a list of frames for storing grant entries. First input
76 * parameter is used to storing grant table address when grant table
77 * being setup, second parameter is the number of frames to map grant
78 * table. Returning GNTST_okay means success and negative value means
79 * failure.
80 */
81 int (*map_frames)(unsigned long *, unsigned int);
82 /*
83 * Release a list of frames which are mapped in map_frames for grant
84 * entry status.
85 */
86 void (*unmap_frames)(void);
87 /*
88 * Introducing a valid entry into the grant table, granting the frame
89 * of this grant entry to domain for accessing, or transfering, or
90 * transitively accessing. First input parameter is reference of this
91 * introduced grant entry, second one is domid of granted domain, third
92 * one is the frame to be granted, and the last one is status of the
93 * grant entry to be updated.
94 */
95 void (*update_entry)(grant_ref_t, domid_t, unsigned long, unsigned);
96 /*
97 * Stop granting a grant entry to domain for accessing. First input
98 * parameter is reference of a grant entry whose grant access will be
99 * stopped, second one is not in use now. If the grant entry is
100 * currently mapped for reading or writing, just return failure(==0)
101 * directly and don't tear down the grant access. Otherwise, stop grant
102 * access for this entry and return success(==1).
103 */
104 int (*end_foreign_access_ref)(grant_ref_t, int);
105 /*
106 * Stop granting a grant entry to domain for transfer. If tranfer has
107 * not started, just reclaim the grant entry and return failure(==0).
108 * Otherwise, wait for the transfer to complete and then return the
109 * frame.
110 */
111 unsigned long (*end_foreign_transfer_ref)(grant_ref_t);
112 /*
113 * Query the status of a grant entry. Input parameter is reference of
114 * queried grant entry, return value is the status of queried entry.
115 * Detailed status(writing/reading) can be gotten from the return value
116 * by bit operations.
117 */
118 int (*query_foreign_access)(grant_ref_t);
119};
120
121static struct gnttab_ops *gnttab_interface;
122
123static int grant_table_version;
ad9a8612
JF
124
125static struct gnttab_free_callback *gnttab_free_callback_list;
126
127static int gnttab_expand(unsigned int req_entries);
128
129#define RPP (PAGE_SIZE / sizeof(grant_ref_t))
130
131static inline grant_ref_t *__gnttab_entry(grant_ref_t entry)
132{
133 return &gnttab_list[(entry) / RPP][(entry) % RPP];
134}
135/* This can be used as an l-value */
136#define gnttab_entry(entry) (*__gnttab_entry(entry))
137
138static int get_free_entries(unsigned count)
139{
140 unsigned long flags;
272800dc 141 int ref, rc = 0;
ad9a8612
JF
142 grant_ref_t head;
143
144 spin_lock_irqsave(&gnttab_list_lock, flags);
145
146 if ((gnttab_free_count < count) &&
147 ((rc = gnttab_expand(count - gnttab_free_count)) < 0)) {
148 spin_unlock_irqrestore(&gnttab_list_lock, flags);
149 return rc;
150 }
151
152 ref = head = gnttab_free_head;
153 gnttab_free_count -= count;
154 while (count-- > 1)
155 head = gnttab_entry(head);
156 gnttab_free_head = gnttab_entry(head);
157 gnttab_entry(head) = GNTTAB_LIST_END;
158
159 spin_unlock_irqrestore(&gnttab_list_lock, flags);
160
161 return ref;
162}
163
164static void do_free_callbacks(void)
165{
166 struct gnttab_free_callback *callback, *next;
167
168 callback = gnttab_free_callback_list;
169 gnttab_free_callback_list = NULL;
170
171 while (callback != NULL) {
172 next = callback->next;
173 if (gnttab_free_count >= callback->count) {
174 callback->next = NULL;
175 callback->fn(callback->arg);
176 } else {
177 callback->next = gnttab_free_callback_list;
178 gnttab_free_callback_list = callback;
179 }
180 callback = next;
181 }
182}
183
184static inline void check_free_callbacks(void)
185{
186 if (unlikely(gnttab_free_callback_list))
187 do_free_callbacks();
188}
189
190static void put_free_entry(grant_ref_t ref)
191{
192 unsigned long flags;
193 spin_lock_irqsave(&gnttab_list_lock, flags);
194 gnttab_entry(ref) = gnttab_free_head;
195 gnttab_free_head = ref;
196 gnttab_free_count++;
197 check_free_callbacks();
198 spin_unlock_irqrestore(&gnttab_list_lock, flags);
199}
200
0f9f5a95
AL
201/*
202 * Introducing a valid entry into the grant table:
203 * 1. Write ent->domid.
204 * 2. Write ent->frame:
205 * GTF_permit_access: Frame to which access is permitted.
206 * GTF_accept_transfer: Pseudo-phys frame slot being filled by new
207 * frame, or zero if none.
208 * 3. Write memory barrier (WMB).
209 * 4. Write ent->flags, inc. valid type.
210 */
211static void gnttab_update_entry_v1(grant_ref_t ref, domid_t domid,
212 unsigned long frame, unsigned flags)
ad9a8612 213{
0f9f5a95
AL
214 gnttab_shared.v1[ref].domid = domid;
215 gnttab_shared.v1[ref].frame = frame;
ad9a8612 216 wmb();
0f9f5a95 217 gnttab_shared.v1[ref].flags = flags;
ad9a8612
JF
218}
219
220/*
221 * Public grant-issuing interface functions
222 */
223void gnttab_grant_foreign_access_ref(grant_ref_t ref, domid_t domid,
224 unsigned long frame, int readonly)
225{
0f9f5a95 226 gnttab_interface->update_entry(ref, domid, frame,
ad9a8612
JF
227 GTF_permit_access | (readonly ? GTF_readonly : 0));
228}
229EXPORT_SYMBOL_GPL(gnttab_grant_foreign_access_ref);
230
231int gnttab_grant_foreign_access(domid_t domid, unsigned long frame,
232 int readonly)
233{
234 int ref;
235
236 ref = get_free_entries(1);
237 if (unlikely(ref < 0))
238 return -ENOSPC;
239
240 gnttab_grant_foreign_access_ref(ref, domid, frame, readonly);
241
242 return ref;
243}
244EXPORT_SYMBOL_GPL(gnttab_grant_foreign_access);
245
0f9f5a95 246static int gnttab_query_foreign_access_v1(grant_ref_t ref)
ad9a8612 247{
0f9f5a95
AL
248 return gnttab_shared.v1[ref].flags & (GTF_reading|GTF_writing);
249}
ad9a8612 250
0f9f5a95
AL
251int gnttab_query_foreign_access(grant_ref_t ref)
252{
253 return gnttab_interface->query_foreign_access(ref);
ad9a8612
JF
254}
255EXPORT_SYMBOL_GPL(gnttab_query_foreign_access);
256
0f9f5a95 257static int gnttab_end_foreign_access_ref_v1(grant_ref_t ref, int readonly)
ad9a8612
JF
258{
259 u16 flags, nflags;
b1e495b2 260 u16 *pflags;
ad9a8612 261
b1e495b2
AL
262 pflags = &gnttab_shared.v1[ref].flags;
263 nflags = *pflags;
ad9a8612
JF
264 do {
265 flags = nflags;
266 if (flags & (GTF_reading|GTF_writing)) {
267 printk(KERN_ALERT "WARNING: g.e. still in use!\n");
268 return 0;
269 }
b1e495b2 270 } while ((nflags = sync_cmpxchg(pflags, flags, 0)) != flags);
ad9a8612
JF
271
272 return 1;
273}
0f9f5a95
AL
274
275int gnttab_end_foreign_access_ref(grant_ref_t ref, int readonly)
276{
277 return gnttab_interface->end_foreign_access_ref(ref, readonly);
278}
ad9a8612
JF
279EXPORT_SYMBOL_GPL(gnttab_end_foreign_access_ref);
280
281void gnttab_end_foreign_access(grant_ref_t ref, int readonly,
282 unsigned long page)
283{
284 if (gnttab_end_foreign_access_ref(ref, readonly)) {
285 put_free_entry(ref);
286 if (page != 0)
287 free_page(page);
288 } else {
289 /* XXX This needs to be fixed so that the ref and page are
290 placed on a list to be freed up later. */
291 printk(KERN_WARNING
292 "WARNING: leaking g.e. and page still in use!\n");
293 }
294}
295EXPORT_SYMBOL_GPL(gnttab_end_foreign_access);
296
297int gnttab_grant_foreign_transfer(domid_t domid, unsigned long pfn)
298{
299 int ref;
300
301 ref = get_free_entries(1);
302 if (unlikely(ref < 0))
303 return -ENOSPC;
304 gnttab_grant_foreign_transfer_ref(ref, domid, pfn);
305
306 return ref;
307}
308EXPORT_SYMBOL_GPL(gnttab_grant_foreign_transfer);
309
310void gnttab_grant_foreign_transfer_ref(grant_ref_t ref, domid_t domid,
311 unsigned long pfn)
312{
0f9f5a95 313 gnttab_interface->update_entry(ref, domid, pfn, GTF_accept_transfer);
ad9a8612
JF
314}
315EXPORT_SYMBOL_GPL(gnttab_grant_foreign_transfer_ref);
316
0f9f5a95 317static unsigned long gnttab_end_foreign_transfer_ref_v1(grant_ref_t ref)
ad9a8612
JF
318{
319 unsigned long frame;
320 u16 flags;
b1e495b2
AL
321 u16 *pflags;
322
323 pflags = &gnttab_shared.v1[ref].flags;
ad9a8612
JF
324
325 /*
326 * If a transfer is not even yet started, try to reclaim the grant
327 * reference and return failure (== 0).
328 */
b1e495b2
AL
329 while (!((flags = *pflags) & GTF_transfer_committed)) {
330 if (sync_cmpxchg(pflags, flags, 0) == flags)
ad9a8612
JF
331 return 0;
332 cpu_relax();
333 }
334
335 /* If a transfer is in progress then wait until it is completed. */
336 while (!(flags & GTF_transfer_completed)) {
b1e495b2 337 flags = *pflags;
ad9a8612
JF
338 cpu_relax();
339 }
340
341 rmb(); /* Read the frame number /after/ reading completion status. */
0f9f5a95 342 frame = gnttab_shared.v1[ref].frame;
ad9a8612
JF
343 BUG_ON(frame == 0);
344
345 return frame;
346}
0f9f5a95
AL
347
348unsigned long gnttab_end_foreign_transfer_ref(grant_ref_t ref)
349{
350 return gnttab_interface->end_foreign_transfer_ref(ref);
351}
ad9a8612
JF
352EXPORT_SYMBOL_GPL(gnttab_end_foreign_transfer_ref);
353
354unsigned long gnttab_end_foreign_transfer(grant_ref_t ref)
355{
356 unsigned long frame = gnttab_end_foreign_transfer_ref(ref);
357 put_free_entry(ref);
358 return frame;
359}
360EXPORT_SYMBOL_GPL(gnttab_end_foreign_transfer);
361
362void gnttab_free_grant_reference(grant_ref_t ref)
363{
364 put_free_entry(ref);
365}
366EXPORT_SYMBOL_GPL(gnttab_free_grant_reference);
367
368void gnttab_free_grant_references(grant_ref_t head)
369{
370 grant_ref_t ref;
371 unsigned long flags;
372 int count = 1;
373 if (head == GNTTAB_LIST_END)
374 return;
375 spin_lock_irqsave(&gnttab_list_lock, flags);
376 ref = head;
377 while (gnttab_entry(ref) != GNTTAB_LIST_END) {
378 ref = gnttab_entry(ref);
379 count++;
380 }
381 gnttab_entry(ref) = gnttab_free_head;
382 gnttab_free_head = head;
383 gnttab_free_count += count;
384 check_free_callbacks();
385 spin_unlock_irqrestore(&gnttab_list_lock, flags);
386}
387EXPORT_SYMBOL_GPL(gnttab_free_grant_references);
388
389int gnttab_alloc_grant_references(u16 count, grant_ref_t *head)
390{
391 int h = get_free_entries(count);
392
393 if (h < 0)
394 return -ENOSPC;
395
396 *head = h;
397
398 return 0;
399}
400EXPORT_SYMBOL_GPL(gnttab_alloc_grant_references);
401
402int gnttab_empty_grant_references(const grant_ref_t *private_head)
403{
404 return (*private_head == GNTTAB_LIST_END);
405}
406EXPORT_SYMBOL_GPL(gnttab_empty_grant_references);
407
408int gnttab_claim_grant_reference(grant_ref_t *private_head)
409{
410 grant_ref_t g = *private_head;
411 if (unlikely(g == GNTTAB_LIST_END))
412 return -ENOSPC;
413 *private_head = gnttab_entry(g);
414 return g;
415}
416EXPORT_SYMBOL_GPL(gnttab_claim_grant_reference);
417
418void gnttab_release_grant_reference(grant_ref_t *private_head,
419 grant_ref_t release)
420{
421 gnttab_entry(release) = *private_head;
422 *private_head = release;
423}
424EXPORT_SYMBOL_GPL(gnttab_release_grant_reference);
425
426void gnttab_request_free_callback(struct gnttab_free_callback *callback,
427 void (*fn)(void *), void *arg, u16 count)
428{
429 unsigned long flags;
430 spin_lock_irqsave(&gnttab_list_lock, flags);
431 if (callback->next)
432 goto out;
433 callback->fn = fn;
434 callback->arg = arg;
435 callback->count = count;
436 callback->next = gnttab_free_callback_list;
437 gnttab_free_callback_list = callback;
438 check_free_callbacks();
439out:
440 spin_unlock_irqrestore(&gnttab_list_lock, flags);
441}
442EXPORT_SYMBOL_GPL(gnttab_request_free_callback);
443
444void gnttab_cancel_free_callback(struct gnttab_free_callback *callback)
445{
446 struct gnttab_free_callback **pcb;
447 unsigned long flags;
448
449 spin_lock_irqsave(&gnttab_list_lock, flags);
450 for (pcb = &gnttab_free_callback_list; *pcb; pcb = &(*pcb)->next) {
451 if (*pcb == callback) {
452 *pcb = callback->next;
453 break;
454 }
455 }
456 spin_unlock_irqrestore(&gnttab_list_lock, flags);
457}
458EXPORT_SYMBOL_GPL(gnttab_cancel_free_callback);
459
460static int grow_gnttab_list(unsigned int more_frames)
461{
462 unsigned int new_nr_grant_frames, extra_entries, i;
bbc60c18 463 unsigned int nr_glist_frames, new_nr_glist_frames;
ad9a8612
JF
464
465 new_nr_grant_frames = nr_grant_frames + more_frames;
466 extra_entries = more_frames * GREFS_PER_GRANT_FRAME;
467
bbc60c18
MAEM
468 nr_glist_frames = (nr_grant_frames * GREFS_PER_GRANT_FRAME + RPP - 1) / RPP;
469 new_nr_glist_frames =
470 (new_nr_grant_frames * GREFS_PER_GRANT_FRAME + RPP - 1) / RPP;
471 for (i = nr_glist_frames; i < new_nr_glist_frames; i++) {
ad9a8612
JF
472 gnttab_list[i] = (grant_ref_t *)__get_free_page(GFP_ATOMIC);
473 if (!gnttab_list[i])
474 goto grow_nomem;
475 }
476
477
478 for (i = GREFS_PER_GRANT_FRAME * nr_grant_frames;
479 i < GREFS_PER_GRANT_FRAME * new_nr_grant_frames - 1; i++)
480 gnttab_entry(i) = i + 1;
481
482 gnttab_entry(i) = gnttab_free_head;
483 gnttab_free_head = GREFS_PER_GRANT_FRAME * nr_grant_frames;
484 gnttab_free_count += extra_entries;
485
486 nr_grant_frames = new_nr_grant_frames;
487
488 check_free_callbacks();
489
490 return 0;
491
492grow_nomem:
bbc60c18 493 for ( ; i >= nr_glist_frames; i--)
ad9a8612
JF
494 free_page((unsigned long) gnttab_list[i]);
495 return -ENOMEM;
496}
497
498static unsigned int __max_nr_grant_frames(void)
499{
500 struct gnttab_query_size query;
501 int rc;
502
503 query.dom = DOMID_SELF;
504
505 rc = HYPERVISOR_grant_table_op(GNTTABOP_query_size, &query, 1);
506 if ((rc < 0) || (query.status != GNTST_okay))
507 return 4; /* Legacy max supported number of frames */
508
509 return query.max_nr_frames;
510}
511
183d03cc 512unsigned int gnttab_max_grant_frames(void)
ad9a8612
JF
513{
514 unsigned int xen_max = __max_nr_grant_frames();
515
516 if (xen_max > boot_max_nr_grant_frames)
517 return boot_max_nr_grant_frames;
518 return xen_max;
519}
183d03cc 520EXPORT_SYMBOL_GPL(gnttab_max_grant_frames);
ad9a8612 521
289b777e 522int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops,
0930bba6
SS
523 struct gnttab_map_grant_ref *kmap_ops,
524 struct page **pages, unsigned int count)
289b777e
SS
525{
526 int i, ret;
527 pte_t *pte;
528 unsigned long mfn;
529
530 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map_ops, count);
87f1d40a
JF
531 if (ret)
532 return ret;
289b777e 533
aab8f11a
DDG
534 if (xen_feature(XENFEAT_auto_translated_physmap))
535 return ret;
536
289b777e 537 for (i = 0; i < count; i++) {
dc4972a4
IC
538 /* Do not add to override if the map failed. */
539 if (map_ops[i].status)
540 continue;
541
cf8d9163
KRW
542 if (map_ops[i].flags & GNTMAP_contains_pte) {
543 pte = (pte_t *) (mfn_to_virt(PFN_DOWN(map_ops[i].host_addr)) +
289b777e 544 (map_ops[i].host_addr & ~PAGE_MASK));
cf8d9163
KRW
545 mfn = pte_mfn(*pte);
546 } else {
547 /* If you really wanted to do this:
548 * mfn = PFN_DOWN(map_ops[i].dev_bus_addr);
549 *
550 * The reason we do not implement it is b/c on the
551 * unmap path (gnttab_unmap_refs) we have no means of
552 * checking whether the page is !GNTMAP_contains_pte.
553 *
554 * That is without some extra data-structure to carry
555 * the struct page, bool clear_pte, and list_head next
556 * tuples and deal with allocation/delallocation, etc.
557 *
558 * The users of this API set the GNTMAP_contains_pte
559 * flag so lets just return not supported until it
560 * becomes neccessary to implement.
561 */
562 return -EOPNOTSUPP;
563 }
0930bba6 564 ret = m2p_add_override(mfn, pages[i], &kmap_ops[i]);
87f1d40a
JF
565 if (ret)
566 return ret;
289b777e
SS
567 }
568
569 return ret;
570}
571EXPORT_SYMBOL_GPL(gnttab_map_refs);
572
573int gnttab_unmap_refs(struct gnttab_unmap_grant_ref *unmap_ops,
574 struct page **pages, unsigned int count)
575{
576 int i, ret;
577
578 ret = HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, unmap_ops, count);
87f1d40a
JF
579 if (ret)
580 return ret;
581
aab8f11a
DDG
582 if (xen_feature(XENFEAT_auto_translated_physmap))
583 return ret;
584
87f1d40a 585 for (i = 0; i < count; i++) {
cf8d9163 586 ret = m2p_remove_override(pages[i], true /* clear the PTE */);
87f1d40a
JF
587 if (ret)
588 return ret;
589 }
289b777e
SS
590
591 return ret;
592}
593EXPORT_SYMBOL_GPL(gnttab_unmap_refs);
594
0f9f5a95
AL
595static int gnttab_map_frames_v1(unsigned long *frames, unsigned int nr_gframes)
596{
597 int rc;
598
599 rc = arch_gnttab_map_shared(frames, nr_gframes,
600 gnttab_max_grant_frames(),
601 &gnttab_shared.addr);
602 BUG_ON(rc);
603
604 return 0;
605}
606
607static void gnttab_unmap_frames_v1(void)
608{
609 arch_gnttab_unmap_shared(gnttab_shared.addr, nr_grant_frames);
610}
611
ad9a8612
JF
612static int gnttab_map(unsigned int start_idx, unsigned int end_idx)
613{
614 struct gnttab_setup_table setup;
615 unsigned long *frames;
616 unsigned int nr_gframes = end_idx + 1;
617 int rc;
618
183d03cc
SS
619 if (xen_hvm_domain()) {
620 struct xen_add_to_physmap xatp;
621 unsigned int i = end_idx;
622 rc = 0;
623 /*
624 * Loop backwards, so that the first hypercall has the largest
625 * index, ensuring that the table will grow only once.
626 */
627 do {
628 xatp.domid = DOMID_SELF;
629 xatp.idx = i;
630 xatp.space = XENMAPSPACE_grant_table;
631 xatp.gpfn = (xen_hvm_resume_frames >> PAGE_SHIFT) + i;
632 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp);
633 if (rc != 0) {
634 printk(KERN_WARNING
635 "grant table add_to_physmap failed, err=%d\n", rc);
636 break;
637 }
638 } while (i-- > start_idx);
639
640 return rc;
641 }
642
ad9a8612
JF
643 frames = kmalloc(nr_gframes * sizeof(unsigned long), GFP_ATOMIC);
644 if (!frames)
645 return -ENOMEM;
646
647 setup.dom = DOMID_SELF;
648 setup.nr_frames = nr_gframes;
87e27cf6 649 set_xen_guest_handle(setup.frame_list, frames);
ad9a8612
JF
650
651 rc = HYPERVISOR_grant_table_op(GNTTABOP_setup_table, &setup, 1);
652 if (rc == -ENOSYS) {
653 kfree(frames);
654 return -ENOSYS;
655 }
656
657 BUG_ON(rc || setup.status);
658
0f9f5a95 659 rc = gnttab_interface->map_frames(frames, nr_gframes);
ad9a8612
JF
660
661 kfree(frames);
662
0f9f5a95
AL
663 return rc;
664}
665
666static struct gnttab_ops gnttab_v1_ops = {
667 .map_frames = gnttab_map_frames_v1,
668 .unmap_frames = gnttab_unmap_frames_v1,
669 .update_entry = gnttab_update_entry_v1,
670 .end_foreign_access_ref = gnttab_end_foreign_access_ref_v1,
671 .end_foreign_transfer_ref = gnttab_end_foreign_transfer_ref_v1,
672 .query_foreign_access = gnttab_query_foreign_access_v1,
673};
674
675static void gnttab_request_version(void)
676{
677 grant_table_version = 1;
678 gnttab_interface = &gnttab_v1_ops;
679 printk(KERN_INFO "Grant tables using version %d layout.\n",
680 grant_table_version);
ad9a8612
JF
681}
682
0e91398f 683int gnttab_resume(void)
ad9a8612 684{
183d03cc
SS
685 unsigned int max_nr_gframes;
686
0f9f5a95 687 gnttab_request_version();
183d03cc
SS
688 max_nr_gframes = gnttab_max_grant_frames();
689 if (max_nr_gframes < nr_grant_frames)
ad9a8612 690 return -ENOSYS;
183d03cc
SS
691
692 if (xen_pv_domain())
693 return gnttab_map(0, nr_grant_frames - 1);
694
0f9f5a95
AL
695 if (gnttab_shared.addr == NULL) {
696 gnttab_shared.addr = ioremap(xen_hvm_resume_frames,
697 PAGE_SIZE * max_nr_gframes);
698 if (gnttab_shared.addr == NULL) {
183d03cc
SS
699 printk(KERN_WARNING
700 "Failed to ioremap gnttab share frames!");
701 return -ENOMEM;
702 }
703 }
704
705 gnttab_map(0, nr_grant_frames - 1);
706
707 return 0;
ad9a8612
JF
708}
709
0e91398f 710int gnttab_suspend(void)
ad9a8612 711{
0f9f5a95 712 gnttab_interface->unmap_frames();
ad9a8612
JF
713 return 0;
714}
715
716static int gnttab_expand(unsigned int req_entries)
717{
718 int rc;
719 unsigned int cur, extra;
720
721 cur = nr_grant_frames;
722 extra = ((req_entries + (GREFS_PER_GRANT_FRAME-1)) /
723 GREFS_PER_GRANT_FRAME);
183d03cc 724 if (cur + extra > gnttab_max_grant_frames())
ad9a8612
JF
725 return -ENOSPC;
726
727 rc = gnttab_map(cur, cur + extra - 1);
728 if (rc == 0)
729 rc = grow_gnttab_list(extra);
730
731 return rc;
732}
733
183d03cc 734int gnttab_init(void)
ad9a8612
JF
735{
736 int i;
bbc60c18 737 unsigned int max_nr_glist_frames, nr_glist_frames;
ad9a8612
JF
738 unsigned int nr_init_grefs;
739
ad9a8612
JF
740 nr_grant_frames = 1;
741 boot_max_nr_grant_frames = __max_nr_grant_frames();
742
743 /* Determine the maximum number of frames required for the
744 * grant reference free list on the current hypervisor.
745 */
746 max_nr_glist_frames = (boot_max_nr_grant_frames *
bbc60c18 747 GREFS_PER_GRANT_FRAME / RPP);
ad9a8612
JF
748
749 gnttab_list = kmalloc(max_nr_glist_frames * sizeof(grant_ref_t *),
750 GFP_KERNEL);
751 if (gnttab_list == NULL)
752 return -ENOMEM;
753
bbc60c18
MAEM
754 nr_glist_frames = (nr_grant_frames * GREFS_PER_GRANT_FRAME + RPP - 1) / RPP;
755 for (i = 0; i < nr_glist_frames; i++) {
ad9a8612
JF
756 gnttab_list[i] = (grant_ref_t *)__get_free_page(GFP_KERNEL);
757 if (gnttab_list[i] == NULL)
758 goto ini_nomem;
759 }
760
761 if (gnttab_resume() < 0)
762 return -ENODEV;
763
764 nr_init_grefs = nr_grant_frames * GREFS_PER_GRANT_FRAME;
765
766 for (i = NR_RESERVED_ENTRIES; i < nr_init_grefs - 1; i++)
767 gnttab_entry(i) = i + 1;
768
769 gnttab_entry(nr_init_grefs - 1) = GNTTAB_LIST_END;
770 gnttab_free_count = nr_init_grefs - NR_RESERVED_ENTRIES;
771 gnttab_free_head = NR_RESERVED_ENTRIES;
772
773 printk("Grant table initialized\n");
774 return 0;
775
776 ini_nomem:
777 for (i--; i >= 0; i--)
778 free_page((unsigned long)gnttab_list[i]);
779 kfree(gnttab_list);
780 return -ENOMEM;
781}
183d03cc
SS
782EXPORT_SYMBOL_GPL(gnttab_init);
783
784static int __devinit __gnttab_init(void)
785{
786 /* Delay grant-table initialization in the PV on HVM case */
787 if (xen_hvm_domain())
788 return 0;
789
790 if (!xen_pv_domain())
791 return -ENODEV;
792
793 return gnttab_init();
794}
ad9a8612 795
183d03cc 796core_initcall(__gnttab_init);