1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34#define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt
35
36#include <linux/module.h>
37#include <linux/sched.h>
38#include <linux/mm.h>
39#include <linux/slab.h>
40#include <linux/vmalloc.h>
41#include <linux/uaccess.h>
42#include <linux/io.h>
43#include <linux/delay.h>
44#include <linux/hardirq.h>
45#include <linux/workqueue.h>
46
47#include <xen/xen.h>
48#include <xen/interface/xen.h>
49#include <xen/page.h>
50#include <xen/grant_table.h>
51#include <xen/interface/memory.h>
52#include <xen/hvc-console.h>
53#include <xen/swiotlb-xen.h>
54#include <xen/balloon.h>
55#include <asm/xen/hypercall.h>
56#include <asm/xen/interface.h>
57
58#include <asm/pgtable.h>
59#include <asm/sync_bitops.h>
60
61
62#define NR_RESERVED_ENTRIES 8
63#define GNTTAB_LIST_END 0xffffffff
64
65static grant_ref_t **gnttab_list;
66static unsigned int nr_grant_frames;
67static int gnttab_free_count;
68static grant_ref_t gnttab_free_head;
69static DEFINE_SPINLOCK(gnttab_list_lock);
70struct grant_frames xen_auto_xlat_grant_frames;
71
72static union {
73 struct grant_entry_v1 *v1;
74 void *addr;
75} gnttab_shared;
76
77
78struct gnttab_ops {
79
80
81
82
83
84
85 int (*map_frames)(xen_pfn_t *frames, unsigned int nr_gframes);
86
87
88
89
90 void (*unmap_frames)(void);
91
92
93
94
95
96
97
98 void (*update_entry)(grant_ref_t ref, domid_t domid,
99 unsigned long frame, unsigned flags);
100
101
102
103
104
105
106
107
108 int (*end_foreign_access_ref)(grant_ref_t ref, int readonly);
109
110
111
112
113
114
115
116 unsigned long (*end_foreign_transfer_ref)(grant_ref_t ref);
117
118
119
120
121
122
123 int (*query_foreign_access)(grant_ref_t ref);
124};
125
126struct unmap_refs_callback_data {
127 struct completion completion;
128 int result;
129};
130
131static struct gnttab_ops *gnttab_interface;
132
133static int grant_table_version;
134static int grefs_per_grant_frame;
135
136static struct gnttab_free_callback *gnttab_free_callback_list;
137
138static int gnttab_expand(unsigned int req_entries);
139
140#define RPP (PAGE_SIZE / sizeof(grant_ref_t))
141
142static inline grant_ref_t *__gnttab_entry(grant_ref_t entry)
143{
144 return &gnttab_list[(entry) / RPP][(entry) % RPP];
145}
146
147#define gnttab_entry(entry) (*__gnttab_entry(entry))
148
149static int get_free_entries(unsigned count)
150{
151 unsigned long flags;
152 int ref, rc = 0;
153 grant_ref_t head;
154
155 spin_lock_irqsave(&gnttab_list_lock, flags);
156
157 if ((gnttab_free_count < count) &&
158 ((rc = gnttab_expand(count - gnttab_free_count)) < 0)) {
159 spin_unlock_irqrestore(&gnttab_list_lock, flags);
160 return rc;
161 }
162
163 ref = head = gnttab_free_head;
164 gnttab_free_count -= count;
165 while (count-- > 1)
166 head = gnttab_entry(head);
167 gnttab_free_head = gnttab_entry(head);
168 gnttab_entry(head) = GNTTAB_LIST_END;
169
170 spin_unlock_irqrestore(&gnttab_list_lock, flags);
171
172 return ref;
173}
174
175static void do_free_callbacks(void)
176{
177 struct gnttab_free_callback *callback, *next;
178
179 callback = gnttab_free_callback_list;
180 gnttab_free_callback_list = NULL;
181
182 while (callback != NULL) {
183 next = callback->next;
184 if (gnttab_free_count >= callback->count) {
185 callback->next = NULL;
186 callback->fn(callback->arg);
187 } else {
188 callback->next = gnttab_free_callback_list;
189 gnttab_free_callback_list = callback;
190 }
191 callback = next;
192 }
193}
194
195static inline void check_free_callbacks(void)
196{
197 if (unlikely(gnttab_free_callback_list))
198 do_free_callbacks();
199}
200
201static void put_free_entry(grant_ref_t ref)
202{
203 unsigned long flags;
204 spin_lock_irqsave(&gnttab_list_lock, flags);
205 gnttab_entry(ref) = gnttab_free_head;
206 gnttab_free_head = ref;
207 gnttab_free_count++;
208 check_free_callbacks();
209 spin_unlock_irqrestore(&gnttab_list_lock, flags);
210}
211
212
213
214
215
216
217
218
219
220
221
222
223static void gnttab_update_entry_v1(grant_ref_t ref, domid_t domid,
224 unsigned long frame, unsigned flags)
225{
226 gnttab_shared.v1[ref].domid = domid;
227 gnttab_shared.v1[ref].frame = frame;
228 wmb();
229 gnttab_shared.v1[ref].flags = flags;
230}
231
232
233
234
235void gnttab_grant_foreign_access_ref(grant_ref_t ref, domid_t domid,
236 unsigned long frame, int readonly)
237{
238 gnttab_interface->update_entry(ref, domid, frame,
239 GTF_permit_access | (readonly ? GTF_readonly : 0));
240}
241EXPORT_SYMBOL_GPL(gnttab_grant_foreign_access_ref);
242
243int gnttab_grant_foreign_access(domid_t domid, unsigned long frame,
244 int readonly)
245{
246 int ref;
247
248 ref = get_free_entries(1);
249 if (unlikely(ref < 0))
250 return -ENOSPC;
251
252 gnttab_grant_foreign_access_ref(ref, domid, frame, readonly);
253
254 return ref;
255}
256EXPORT_SYMBOL_GPL(gnttab_grant_foreign_access);
257
258static int gnttab_query_foreign_access_v1(grant_ref_t ref)
259{
260 return gnttab_shared.v1[ref].flags & (GTF_reading|GTF_writing);
261}
262
263int gnttab_query_foreign_access(grant_ref_t ref)
264{
265 return gnttab_interface->query_foreign_access(ref);
266}
267EXPORT_SYMBOL_GPL(gnttab_query_foreign_access);
268
269static int gnttab_end_foreign_access_ref_v1(grant_ref_t ref, int readonly)
270{
271 u16 flags, nflags;
272 u16 *pflags;
273
274 pflags = &gnttab_shared.v1[ref].flags;
275 nflags = *pflags;
276 do {
277 flags = nflags;
278 if (flags & (GTF_reading|GTF_writing))
279 return 0;
280 } while ((nflags = sync_cmpxchg(pflags, flags, 0)) != flags);
281
282 return 1;
283}
284
285static inline int _gnttab_end_foreign_access_ref(grant_ref_t ref, int readonly)
286{
287 return gnttab_interface->end_foreign_access_ref(ref, readonly);
288}
289
290int gnttab_end_foreign_access_ref(grant_ref_t ref, int readonly)
291{
292 if (_gnttab_end_foreign_access_ref(ref, readonly))
293 return 1;
294 pr_warn("WARNING: g.e. %#x still in use!\n", ref);
295 return 0;
296}
297EXPORT_SYMBOL_GPL(gnttab_end_foreign_access_ref);
298
299struct deferred_entry {
300 struct list_head list;
301 grant_ref_t ref;
302 bool ro;
303 uint16_t warn_delay;
304 struct page *page;
305};
306static LIST_HEAD(deferred_list);
307static void gnttab_handle_deferred(unsigned long);
308static DEFINE_TIMER(deferred_timer, gnttab_handle_deferred, 0, 0);
309
310static void gnttab_handle_deferred(unsigned long unused)
311{
312 unsigned int nr = 10;
313 struct deferred_entry *first = NULL;
314 unsigned long flags;
315
316 spin_lock_irqsave(&gnttab_list_lock, flags);
317 while (nr--) {
318 struct deferred_entry *entry
319 = list_first_entry(&deferred_list,
320 struct deferred_entry, list);
321
322 if (entry == first)
323 break;
324 list_del(&entry->list);
325 spin_unlock_irqrestore(&gnttab_list_lock, flags);
326 if (_gnttab_end_foreign_access_ref(entry->ref, entry->ro)) {
327 put_free_entry(entry->ref);
328 if (entry->page) {
329 pr_debug("freeing g.e. %#x (pfn %#lx)\n",
330 entry->ref, page_to_pfn(entry->page));
331 __free_page(entry->page);
332 } else
333 pr_info("freeing g.e. %#x\n", entry->ref);
334 kfree(entry);
335 entry = NULL;
336 } else {
337 if (!--entry->warn_delay)
338 pr_info("g.e. %#x still pending\n", entry->ref);
339 if (!first)
340 first = entry;
341 }
342 spin_lock_irqsave(&gnttab_list_lock, flags);
343 if (entry)
344 list_add_tail(&entry->list, &deferred_list);
345 else if (list_empty(&deferred_list))
346 break;
347 }
348 if (!list_empty(&deferred_list) && !timer_pending(&deferred_timer)) {
349 deferred_timer.expires = jiffies + HZ;
350 add_timer(&deferred_timer);
351 }
352 spin_unlock_irqrestore(&gnttab_list_lock, flags);
353}
354
355static void gnttab_add_deferred(grant_ref_t ref, bool readonly,
356 struct page *page)
357{
358 struct deferred_entry *entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
359 const char *what = KERN_WARNING "leaking";
360
361 if (entry) {
362 unsigned long flags;
363
364 entry->ref = ref;
365 entry->ro = readonly;
366 entry->page = page;
367 entry->warn_delay = 60;
368 spin_lock_irqsave(&gnttab_list_lock, flags);
369 list_add_tail(&entry->list, &deferred_list);
370 if (!timer_pending(&deferred_timer)) {
371 deferred_timer.expires = jiffies + HZ;
372 add_timer(&deferred_timer);
373 }
374 spin_unlock_irqrestore(&gnttab_list_lock, flags);
375 what = KERN_DEBUG "deferring";
376 }
377 printk("%s g.e. %#x (pfn %#lx)\n",
378 what, ref, page ? page_to_pfn(page) : -1);
379}
380
381void gnttab_end_foreign_access(grant_ref_t ref, int readonly,
382 unsigned long page)
383{
384 if (gnttab_end_foreign_access_ref(ref, readonly)) {
385 put_free_entry(ref);
386 if (page != 0)
387 free_page(page);
388 } else
389 gnttab_add_deferred(ref, readonly,
390 page ? virt_to_page(page) : NULL);
391}
392EXPORT_SYMBOL_GPL(gnttab_end_foreign_access);
393
394int gnttab_grant_foreign_transfer(domid_t domid, unsigned long pfn)
395{
396 int ref;
397
398 ref = get_free_entries(1);
399 if (unlikely(ref < 0))
400 return -ENOSPC;
401 gnttab_grant_foreign_transfer_ref(ref, domid, pfn);
402
403 return ref;
404}
405EXPORT_SYMBOL_GPL(gnttab_grant_foreign_transfer);
406
407void gnttab_grant_foreign_transfer_ref(grant_ref_t ref, domid_t domid,
408 unsigned long pfn)
409{
410 gnttab_interface->update_entry(ref, domid, pfn, GTF_accept_transfer);
411}
412EXPORT_SYMBOL_GPL(gnttab_grant_foreign_transfer_ref);
413
414static unsigned long gnttab_end_foreign_transfer_ref_v1(grant_ref_t ref)
415{
416 unsigned long frame;
417 u16 flags;
418 u16 *pflags;
419
420 pflags = &gnttab_shared.v1[ref].flags;
421
422
423
424
425
426 while (!((flags = *pflags) & GTF_transfer_committed)) {
427 if (sync_cmpxchg(pflags, flags, 0) == flags)
428 return 0;
429 cpu_relax();
430 }
431
432
433 while (!(flags & GTF_transfer_completed)) {
434 flags = *pflags;
435 cpu_relax();
436 }
437
438 rmb();
439 frame = gnttab_shared.v1[ref].frame;
440 BUG_ON(frame == 0);
441
442 return frame;
443}
444
445unsigned long gnttab_end_foreign_transfer_ref(grant_ref_t ref)
446{
447 return gnttab_interface->end_foreign_transfer_ref(ref);
448}
449EXPORT_SYMBOL_GPL(gnttab_end_foreign_transfer_ref);
450
451unsigned long gnttab_end_foreign_transfer(grant_ref_t ref)
452{
453 unsigned long frame = gnttab_end_foreign_transfer_ref(ref);
454 put_free_entry(ref);
455 return frame;
456}
457EXPORT_SYMBOL_GPL(gnttab_end_foreign_transfer);
458
459void gnttab_free_grant_reference(grant_ref_t ref)
460{
461 put_free_entry(ref);
462}
463EXPORT_SYMBOL_GPL(gnttab_free_grant_reference);
464
465void gnttab_free_grant_references(grant_ref_t head)
466{
467 grant_ref_t ref;
468 unsigned long flags;
469 int count = 1;
470 if (head == GNTTAB_LIST_END)
471 return;
472 spin_lock_irqsave(&gnttab_list_lock, flags);
473 ref = head;
474 while (gnttab_entry(ref) != GNTTAB_LIST_END) {
475 ref = gnttab_entry(ref);
476 count++;
477 }
478 gnttab_entry(ref) = gnttab_free_head;
479 gnttab_free_head = head;
480 gnttab_free_count += count;
481 check_free_callbacks();
482 spin_unlock_irqrestore(&gnttab_list_lock, flags);
483}
484EXPORT_SYMBOL_GPL(gnttab_free_grant_references);
485
486int gnttab_alloc_grant_references(u16 count, grant_ref_t *head)
487{
488 int h = get_free_entries(count);
489
490 if (h < 0)
491 return -ENOSPC;
492
493 *head = h;
494
495 return 0;
496}
497EXPORT_SYMBOL_GPL(gnttab_alloc_grant_references);
498
499int gnttab_empty_grant_references(const grant_ref_t *private_head)
500{
501 return (*private_head == GNTTAB_LIST_END);
502}
503EXPORT_SYMBOL_GPL(gnttab_empty_grant_references);
504
505int gnttab_claim_grant_reference(grant_ref_t *private_head)
506{
507 grant_ref_t g = *private_head;
508 if (unlikely(g == GNTTAB_LIST_END))
509 return -ENOSPC;
510 *private_head = gnttab_entry(g);
511 return g;
512}
513EXPORT_SYMBOL_GPL(gnttab_claim_grant_reference);
514
515void gnttab_release_grant_reference(grant_ref_t *private_head,
516 grant_ref_t release)
517{
518 gnttab_entry(release) = *private_head;
519 *private_head = release;
520}
521EXPORT_SYMBOL_GPL(gnttab_release_grant_reference);
522
523void gnttab_request_free_callback(struct gnttab_free_callback *callback,
524 void (*fn)(void *), void *arg, u16 count)
525{
526 unsigned long flags;
527 struct gnttab_free_callback *cb;
528
529 spin_lock_irqsave(&gnttab_list_lock, flags);
530
531
532 cb = gnttab_free_callback_list;
533 while (cb) {
534 if (cb == callback)
535 goto out;
536 cb = cb->next;
537 }
538
539 callback->fn = fn;
540 callback->arg = arg;
541 callback->count = count;
542 callback->next = gnttab_free_callback_list;
543 gnttab_free_callback_list = callback;
544 check_free_callbacks();
545out:
546 spin_unlock_irqrestore(&gnttab_list_lock, flags);
547}
548EXPORT_SYMBOL_GPL(gnttab_request_free_callback);
549
550void gnttab_cancel_free_callback(struct gnttab_free_callback *callback)
551{
552 struct gnttab_free_callback **pcb;
553 unsigned long flags;
554
555 spin_lock_irqsave(&gnttab_list_lock, flags);
556 for (pcb = &gnttab_free_callback_list; *pcb; pcb = &(*pcb)->next) {
557 if (*pcb == callback) {
558 *pcb = callback->next;
559 break;
560 }
561 }
562 spin_unlock_irqrestore(&gnttab_list_lock, flags);
563}
564EXPORT_SYMBOL_GPL(gnttab_cancel_free_callback);
565
566static int grow_gnttab_list(unsigned int more_frames)
567{
568 unsigned int new_nr_grant_frames, extra_entries, i;
569 unsigned int nr_glist_frames, new_nr_glist_frames;
570
571 BUG_ON(grefs_per_grant_frame == 0);
572
573 new_nr_grant_frames = nr_grant_frames + more_frames;
574 extra_entries = more_frames * grefs_per_grant_frame;
575
576 nr_glist_frames = (nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
577 new_nr_glist_frames =
578 (new_nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
579 for (i = nr_glist_frames; i < new_nr_glist_frames; i++) {
580 gnttab_list[i] = (grant_ref_t *)__get_free_page(GFP_ATOMIC);
581 if (!gnttab_list[i])
582 goto grow_nomem;
583 }
584
585
586 for (i = grefs_per_grant_frame * nr_grant_frames;
587 i < grefs_per_grant_frame * new_nr_grant_frames - 1; i++)
588 gnttab_entry(i) = i + 1;
589
590 gnttab_entry(i) = gnttab_free_head;
591 gnttab_free_head = grefs_per_grant_frame * nr_grant_frames;
592 gnttab_free_count += extra_entries;
593
594 nr_grant_frames = new_nr_grant_frames;
595
596 check_free_callbacks();
597
598 return 0;
599
600grow_nomem:
601 while (i-- > nr_glist_frames)
602 free_page((unsigned long) gnttab_list[i]);
603 return -ENOMEM;
604}
605
606static unsigned int __max_nr_grant_frames(void)
607{
608 struct gnttab_query_size query;
609 int rc;
610
611 query.dom = DOMID_SELF;
612
613 rc = HYPERVISOR_grant_table_op(GNTTABOP_query_size, &query, 1);
614 if ((rc < 0) || (query.status != GNTST_okay))
615 return 4;
616
617 return query.max_nr_frames;
618}
619
620unsigned int gnttab_max_grant_frames(void)
621{
622 unsigned int xen_max = __max_nr_grant_frames();
623 static unsigned int boot_max_nr_grant_frames;
624
625
626 if (!boot_max_nr_grant_frames)
627 boot_max_nr_grant_frames = __max_nr_grant_frames();
628
629 if (xen_max > boot_max_nr_grant_frames)
630 return boot_max_nr_grant_frames;
631 return xen_max;
632}
633EXPORT_SYMBOL_GPL(gnttab_max_grant_frames);
634
635int gnttab_setup_auto_xlat_frames(phys_addr_t addr)
636{
637 xen_pfn_t *pfn;
638 unsigned int max_nr_gframes = __max_nr_grant_frames();
639 unsigned int i;
640 void *vaddr;
641
642 if (xen_auto_xlat_grant_frames.count)
643 return -EINVAL;
644
645 vaddr = xen_remap(addr, PAGE_SIZE * max_nr_gframes);
646 if (vaddr == NULL) {
647 pr_warn("Failed to ioremap gnttab share frames (addr=%pa)!\n",
648 &addr);
649 return -ENOMEM;
650 }
651 pfn = kcalloc(max_nr_gframes, sizeof(pfn[0]), GFP_KERNEL);
652 if (!pfn) {
653 xen_unmap(vaddr);
654 return -ENOMEM;
655 }
656 for (i = 0; i < max_nr_gframes; i++)
657 pfn[i] = PFN_DOWN(addr) + i;
658
659 xen_auto_xlat_grant_frames.vaddr = vaddr;
660 xen_auto_xlat_grant_frames.pfn = pfn;
661 xen_auto_xlat_grant_frames.count = max_nr_gframes;
662
663 return 0;
664}
665EXPORT_SYMBOL_GPL(gnttab_setup_auto_xlat_frames);
666
667void gnttab_free_auto_xlat_frames(void)
668{
669 if (!xen_auto_xlat_grant_frames.count)
670 return;
671 kfree(xen_auto_xlat_grant_frames.pfn);
672 xen_unmap(xen_auto_xlat_grant_frames.vaddr);
673
674 xen_auto_xlat_grant_frames.pfn = NULL;
675 xen_auto_xlat_grant_frames.count = 0;
676 xen_auto_xlat_grant_frames.vaddr = NULL;
677}
678EXPORT_SYMBOL_GPL(gnttab_free_auto_xlat_frames);
679
680
681
682
683
684
685int gnttab_alloc_pages(int nr_pages, struct page **pages)
686{
687 int i;
688 int ret;
689
690 ret = alloc_xenballooned_pages(nr_pages, pages, false);
691 if (ret < 0)
692 return ret;
693
694 for (i = 0; i < nr_pages; i++) {
695#if BITS_PER_LONG < 64
696 struct xen_page_foreign *foreign;
697
698 foreign = kzalloc(sizeof(*foreign), GFP_KERNEL);
699 if (!foreign) {
700 gnttab_free_pages(nr_pages, pages);
701 return -ENOMEM;
702 }
703 set_page_private(pages[i], (unsigned long)foreign);
704#endif
705 SetPagePrivate(pages[i]);
706 }
707
708 return 0;
709}
710EXPORT_SYMBOL(gnttab_alloc_pages);
711
712
713
714
715
716
717void gnttab_free_pages(int nr_pages, struct page **pages)
718{
719 int i;
720
721 for (i = 0; i < nr_pages; i++) {
722 if (PagePrivate(pages[i])) {
723#if BITS_PER_LONG < 64
724 kfree((void *)page_private(pages[i]));
725#endif
726 ClearPagePrivate(pages[i]);
727 }
728 }
729 free_xenballooned_pages(nr_pages, pages);
730}
731EXPORT_SYMBOL(gnttab_free_pages);
732
733
734#define MAX_DELAY 256
735static inline void
736gnttab_retry_eagain_gop(unsigned int cmd, void *gop, int16_t *status,
737 const char *func)
738{
739 unsigned delay = 1;
740
741 do {
742 BUG_ON(HYPERVISOR_grant_table_op(cmd, gop, 1));
743 if (*status == GNTST_eagain)
744 msleep(delay++);
745 } while ((*status == GNTST_eagain) && (delay < MAX_DELAY));
746
747 if (delay >= MAX_DELAY) {
748 pr_err("%s: %s eagain grant\n", func, current->comm);
749 *status = GNTST_bad_page;
750 }
751}
752
753void gnttab_batch_map(struct gnttab_map_grant_ref *batch, unsigned count)
754{
755 struct gnttab_map_grant_ref *op;
756
757 if (HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, batch, count))
758 BUG();
759 for (op = batch; op < batch + count; op++)
760 if (op->status == GNTST_eagain)
761 gnttab_retry_eagain_gop(GNTTABOP_map_grant_ref, op,
762 &op->status, __func__);
763}
764EXPORT_SYMBOL_GPL(gnttab_batch_map);
765
766void gnttab_batch_copy(struct gnttab_copy *batch, unsigned count)
767{
768 struct gnttab_copy *op;
769
770 if (HYPERVISOR_grant_table_op(GNTTABOP_copy, batch, count))
771 BUG();
772 for (op = batch; op < batch + count; op++)
773 if (op->status == GNTST_eagain)
774 gnttab_retry_eagain_gop(GNTTABOP_copy, op,
775 &op->status, __func__);
776}
777EXPORT_SYMBOL_GPL(gnttab_batch_copy);
778
779int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops,
780 struct gnttab_map_grant_ref *kmap_ops,
781 struct page **pages, unsigned int count)
782{
783 int i, ret;
784
785 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map_ops, count);
786 if (ret)
787 return ret;
788
789 for (i = 0; i < count; i++) {
790
791 if (map_ops[i].status == GNTST_eagain)
792 gnttab_retry_eagain_gop(GNTTABOP_map_grant_ref, map_ops + i,
793 &map_ops[i].status, __func__);
794
795 if (map_ops[i].status == GNTST_okay) {
796 struct xen_page_foreign *foreign;
797
798 SetPageForeign(pages[i]);
799 foreign = xen_page_foreign(pages[i]);
800 foreign->domid = map_ops[i].dom;
801 foreign->gref = map_ops[i].ref;
802 }
803 }
804
805 return set_foreign_p2m_mapping(map_ops, kmap_ops, pages, count);
806}
807EXPORT_SYMBOL_GPL(gnttab_map_refs);
808
809int gnttab_unmap_refs(struct gnttab_unmap_grant_ref *unmap_ops,
810 struct gnttab_unmap_grant_ref *kunmap_ops,
811 struct page **pages, unsigned int count)
812{
813 unsigned int i;
814 int ret;
815
816 ret = HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, unmap_ops, count);
817 if (ret)
818 return ret;
819
820 for (i = 0; i < count; i++)
821 ClearPageForeign(pages[i]);
822
823 return clear_foreign_p2m_mapping(unmap_ops, kunmap_ops, pages, count);
824}
825EXPORT_SYMBOL_GPL(gnttab_unmap_refs);
826
827#define GNTTAB_UNMAP_REFS_DELAY 5
828
829static void __gnttab_unmap_refs_async(struct gntab_unmap_queue_data* item);
830
831static void gnttab_unmap_work(struct work_struct *work)
832{
833 struct gntab_unmap_queue_data
834 *unmap_data = container_of(work,
835 struct gntab_unmap_queue_data,
836 gnttab_work.work);
837 if (unmap_data->age != UINT_MAX)
838 unmap_data->age++;
839 __gnttab_unmap_refs_async(unmap_data);
840}
841
842static void __gnttab_unmap_refs_async(struct gntab_unmap_queue_data* item)
843{
844 int ret;
845 int pc;
846
847 for (pc = 0; pc < item->count; pc++) {
848 if (page_count(item->pages[pc]) > 1) {
849 unsigned long delay = GNTTAB_UNMAP_REFS_DELAY * (item->age + 1);
850 schedule_delayed_work(&item->gnttab_work,
851 msecs_to_jiffies(delay));
852 return;
853 }
854 }
855
856 ret = gnttab_unmap_refs(item->unmap_ops, item->kunmap_ops,
857 item->pages, item->count);
858 item->done(ret, item);
859}
860
861void gnttab_unmap_refs_async(struct gntab_unmap_queue_data* item)
862{
863 INIT_DELAYED_WORK(&item->gnttab_work, gnttab_unmap_work);
864 item->age = 0;
865
866 __gnttab_unmap_refs_async(item);
867}
868EXPORT_SYMBOL_GPL(gnttab_unmap_refs_async);
869
870static void unmap_refs_callback(int result,
871 struct gntab_unmap_queue_data *data)
872{
873 struct unmap_refs_callback_data *d = data->data;
874
875 d->result = result;
876 complete(&d->completion);
877}
878
879int gnttab_unmap_refs_sync(struct gntab_unmap_queue_data *item)
880{
881 struct unmap_refs_callback_data data;
882
883 init_completion(&data.completion);
884 item->data = &data;
885 item->done = &unmap_refs_callback;
886 gnttab_unmap_refs_async(item);
887 wait_for_completion(&data.completion);
888
889 return data.result;
890}
891EXPORT_SYMBOL_GPL(gnttab_unmap_refs_sync);
892
893static int gnttab_map_frames_v1(xen_pfn_t *frames, unsigned int nr_gframes)
894{
895 int rc;
896
897 rc = arch_gnttab_map_shared(frames, nr_gframes,
898 gnttab_max_grant_frames(),
899 &gnttab_shared.addr);
900 BUG_ON(rc);
901
902 return 0;
903}
904
905static void gnttab_unmap_frames_v1(void)
906{
907 arch_gnttab_unmap(gnttab_shared.addr, nr_grant_frames);
908}
909
910static int gnttab_map(unsigned int start_idx, unsigned int end_idx)
911{
912 struct gnttab_setup_table setup;
913 xen_pfn_t *frames;
914 unsigned int nr_gframes = end_idx + 1;
915 int rc;
916
917 if (xen_feature(XENFEAT_auto_translated_physmap)) {
918 struct xen_add_to_physmap xatp;
919 unsigned int i = end_idx;
920 rc = 0;
921 BUG_ON(xen_auto_xlat_grant_frames.count < nr_gframes);
922
923
924
925
926 do {
927 xatp.domid = DOMID_SELF;
928 xatp.idx = i;
929 xatp.space = XENMAPSPACE_grant_table;
930 xatp.gpfn = xen_auto_xlat_grant_frames.pfn[i];
931 rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp);
932 if (rc != 0) {
933 pr_warn("grant table add_to_physmap failed, err=%d\n",
934 rc);
935 break;
936 }
937 } while (i-- > start_idx);
938
939 return rc;
940 }
941
942
943
944
945 frames = kmalloc(nr_gframes * sizeof(unsigned long), GFP_ATOMIC);
946 if (!frames)
947 return -ENOMEM;
948
949 setup.dom = DOMID_SELF;
950 setup.nr_frames = nr_gframes;
951 set_xen_guest_handle(setup.frame_list, frames);
952
953 rc = HYPERVISOR_grant_table_op(GNTTABOP_setup_table, &setup, 1);
954 if (rc == -ENOSYS) {
955 kfree(frames);
956 return -ENOSYS;
957 }
958
959 BUG_ON(rc || setup.status);
960
961 rc = gnttab_interface->map_frames(frames, nr_gframes);
962
963 kfree(frames);
964
965 return rc;
966}
967
968static struct gnttab_ops gnttab_v1_ops = {
969 .map_frames = gnttab_map_frames_v1,
970 .unmap_frames = gnttab_unmap_frames_v1,
971 .update_entry = gnttab_update_entry_v1,
972 .end_foreign_access_ref = gnttab_end_foreign_access_ref_v1,
973 .end_foreign_transfer_ref = gnttab_end_foreign_transfer_ref_v1,
974 .query_foreign_access = gnttab_query_foreign_access_v1,
975};
976
977static void gnttab_request_version(void)
978{
979
980 grant_table_version = 1;
981 grefs_per_grant_frame = PAGE_SIZE / sizeof(struct grant_entry_v1);
982 gnttab_interface = &gnttab_v1_ops;
983
984 pr_info("Grant tables using version %d layout\n", grant_table_version);
985}
986
987static int gnttab_setup(void)
988{
989 unsigned int max_nr_gframes;
990
991 max_nr_gframes = gnttab_max_grant_frames();
992 if (max_nr_gframes < nr_grant_frames)
993 return -ENOSYS;
994
995 if (xen_feature(XENFEAT_auto_translated_physmap) && gnttab_shared.addr == NULL) {
996 gnttab_shared.addr = xen_auto_xlat_grant_frames.vaddr;
997 if (gnttab_shared.addr == NULL) {
998 pr_warn("gnttab share frames (addr=0x%08lx) is not mapped!\n",
999 (unsigned long)xen_auto_xlat_grant_frames.vaddr);
1000 return -ENOMEM;
1001 }
1002 }
1003 return gnttab_map(0, nr_grant_frames - 1);
1004}
1005
1006int gnttab_resume(void)
1007{
1008 gnttab_request_version();
1009 return gnttab_setup();
1010}
1011
1012int gnttab_suspend(void)
1013{
1014 if (!xen_feature(XENFEAT_auto_translated_physmap))
1015 gnttab_interface->unmap_frames();
1016 return 0;
1017}
1018
1019static int gnttab_expand(unsigned int req_entries)
1020{
1021 int rc;
1022 unsigned int cur, extra;
1023
1024 BUG_ON(grefs_per_grant_frame == 0);
1025 cur = nr_grant_frames;
1026 extra = ((req_entries + (grefs_per_grant_frame-1)) /
1027 grefs_per_grant_frame);
1028 if (cur + extra > gnttab_max_grant_frames())
1029 return -ENOSPC;
1030
1031 rc = gnttab_map(cur, cur + extra - 1);
1032 if (rc == 0)
1033 rc = grow_gnttab_list(extra);
1034
1035 return rc;
1036}
1037
1038int gnttab_init(void)
1039{
1040 int i;
1041 unsigned long max_nr_grant_frames;
1042 unsigned int max_nr_glist_frames, nr_glist_frames;
1043 unsigned int nr_init_grefs;
1044 int ret;
1045
1046 gnttab_request_version();
1047 max_nr_grant_frames = gnttab_max_grant_frames();
1048 nr_grant_frames = 1;
1049
1050
1051
1052
1053 BUG_ON(grefs_per_grant_frame == 0);
1054 max_nr_glist_frames = (max_nr_grant_frames *
1055 grefs_per_grant_frame / RPP);
1056
1057 gnttab_list = kmalloc(max_nr_glist_frames * sizeof(grant_ref_t *),
1058 GFP_KERNEL);
1059 if (gnttab_list == NULL)
1060 return -ENOMEM;
1061
1062 nr_glist_frames = (nr_grant_frames * grefs_per_grant_frame + RPP - 1) / RPP;
1063 for (i = 0; i < nr_glist_frames; i++) {
1064 gnttab_list[i] = (grant_ref_t *)__get_free_page(GFP_KERNEL);
1065 if (gnttab_list[i] == NULL) {
1066 ret = -ENOMEM;
1067 goto ini_nomem;
1068 }
1069 }
1070
1071 ret = arch_gnttab_init(max_nr_grant_frames);
1072 if (ret < 0)
1073 goto ini_nomem;
1074
1075 if (gnttab_setup() < 0) {
1076 ret = -ENODEV;
1077 goto ini_nomem;
1078 }
1079
1080 nr_init_grefs = nr_grant_frames * grefs_per_grant_frame;
1081
1082 for (i = NR_RESERVED_ENTRIES; i < nr_init_grefs - 1; i++)
1083 gnttab_entry(i) = i + 1;
1084
1085 gnttab_entry(nr_init_grefs - 1) = GNTTAB_LIST_END;
1086 gnttab_free_count = nr_init_grefs - NR_RESERVED_ENTRIES;
1087 gnttab_free_head = NR_RESERVED_ENTRIES;
1088
1089 printk("Grant table initialized\n");
1090 return 0;
1091
1092 ini_nomem:
1093 for (i--; i >= 0; i--)
1094 free_page((unsigned long)gnttab_list[i]);
1095 kfree(gnttab_list);
1096 return ret;
1097}
1098EXPORT_SYMBOL_GPL(gnttab_init);
1099
1100static int __gnttab_init(void)
1101{
1102
1103 if (xen_hvm_domain())
1104 return 0;
1105
1106 if (!xen_pv_domain())
1107 return -ENODEV;
1108
1109 return gnttab_init();
1110}
1111
1112
1113core_initcall_sync(__gnttab_init);
1114