1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/errno.h>
6 #include <linux/slab.h>
7 #include <linux/vmalloc.h>
8 #include <linux/pagemap.h>
9 #include <linux/sched.h>
12 * get_vaddr_frames() - map virtual addresses to pfns
13 * @start: starting user address
14 * @nr_frames: number of pages / pfns from start to map
15 * @gup_flags: flags modifying lookup behaviour
16 * @vec: structure which receives pages / pfns of the addresses mapped.
17 * It should have space for at least nr_frames entries.
19 * This function maps virtual addresses from @start and fills @vec structure
20 * with page frame numbers or page pointers to corresponding pages (choice
21 * depends on the type of the vma underlying the virtual address). If @start
22 * belongs to a normal vma, the function grabs reference to each of the pages
23 * to pin them in memory. If @start belongs to VM_IO | VM_PFNMAP vma, we don't
24 * touch page structures and the caller must make sure pfns aren't reused for
25 * anything else while he is using them.
27 * The function returns number of pages mapped which may be less than
28 * @nr_frames. In particular we stop mapping if there are more vmas of
29 * different type underlying the specified range of virtual addresses.
30 * When the function isn't able to map a single page, it returns error.
32 * This function takes care of grabbing mmap_sem as necessary.
34 int get_vaddr_frames(unsigned long start
, unsigned int nr_frames
,
35 unsigned int gup_flags
, struct frame_vector
*vec
)
37 struct mm_struct
*mm
= current
->mm
;
38 struct vm_area_struct
*vma
;
46 if (WARN_ON_ONCE(nr_frames
> vec
->nr_allocated
))
47 nr_frames
= vec
->nr_allocated
;
49 start
= untagged_addr(start
);
51 down_read(&mm
->mmap_sem
);
53 vma
= find_vma_intersection(mm
, start
, start
+ 1);
60 * While get_vaddr_frames() could be used for transient (kernel
61 * controlled lifetime) pinning of memory pages all current
62 * users establish long term (userspace controlled lifetime)
63 * page pinning. Treat get_vaddr_frames() like
64 * get_user_pages_longterm() and disallow it for filesystem-dax
67 if (vma_is_fsdax(vma
)) {
72 if (!(vma
->vm_flags
& (VM_IO
| VM_PFNMAP
))) {
75 ret
= get_user_pages_locked(start
, nr_frames
,
76 gup_flags
, (struct page
**)(vec
->ptrs
), &locked
);
83 unsigned long *nums
= frame_vector_pfns(vec
);
85 while (ret
< nr_frames
&& start
+ PAGE_SIZE
<= vma
->vm_end
) {
86 err
= follow_pfn(vma
, start
, &nums
[ret
]);
96 * We stop if we have enough pages or if VMA doesn't completely
97 * cover the tail page.
99 if (ret
>= nr_frames
|| start
< vma
->vm_end
)
101 vma
= find_vma_intersection(mm
, start
, start
+ 1);
102 } while (vma
&& vma
->vm_flags
& (VM_IO
| VM_PFNMAP
));
105 up_read(&mm
->mmap_sem
);
109 vec
->nr_frames
= ret
;
112 EXPORT_SYMBOL(get_vaddr_frames
);
115 * put_vaddr_frames() - drop references to pages if get_vaddr_frames() acquired
117 * @vec: frame vector to put
119 * Drop references to pages if get_vaddr_frames() acquired them. We also
120 * invalidate the frame vector so that it is prepared for the next call into
121 * get_vaddr_frames().
123 void put_vaddr_frames(struct frame_vector
*vec
)
130 pages
= frame_vector_pages(vec
);
132 * frame_vector_pages() might needed to do a conversion when
133 * get_vaddr_frames() got pages but vec was later converted to pfns.
134 * But it shouldn't really fail to convert pfns back...
136 if (WARN_ON(IS_ERR(pages
)))
138 for (i
= 0; i
< vec
->nr_frames
; i
++)
140 vec
->got_ref
= false;
144 EXPORT_SYMBOL(put_vaddr_frames
);
147 * frame_vector_to_pages - convert frame vector to contain page pointers
148 * @vec: frame vector to convert
150 * Convert @vec to contain array of page pointers. If the conversion is
151 * successful, return 0. Otherwise return an error. Note that we do not grab
152 * page references for the page structures.
154 int frame_vector_to_pages(struct frame_vector
*vec
)
162 nums
= frame_vector_pfns(vec
);
163 for (i
= 0; i
< vec
->nr_frames
; i
++)
164 if (!pfn_valid(nums
[i
]))
166 pages
= (struct page
**)nums
;
167 for (i
= 0; i
< vec
->nr_frames
; i
++)
168 pages
[i
] = pfn_to_page(nums
[i
]);
169 vec
->is_pfns
= false;
172 EXPORT_SYMBOL(frame_vector_to_pages
);
175 * frame_vector_to_pfns - convert frame vector to contain pfns
176 * @vec: frame vector to convert
178 * Convert @vec to contain array of pfns.
180 void frame_vector_to_pfns(struct frame_vector
*vec
)
188 pages
= (struct page
**)(vec
->ptrs
);
189 nums
= (unsigned long *)pages
;
190 for (i
= 0; i
< vec
->nr_frames
; i
++)
191 nums
[i
] = page_to_pfn(pages
[i
]);
194 EXPORT_SYMBOL(frame_vector_to_pfns
);
197 * frame_vector_create() - allocate & initialize structure for pinned pfns
198 * @nr_frames: number of pfns slots we should reserve
200 * Allocate and initialize struct pinned_pfns to be able to hold @nr_pfns
203 struct frame_vector
*frame_vector_create(unsigned int nr_frames
)
205 struct frame_vector
*vec
;
206 int size
= sizeof(struct frame_vector
) + sizeof(void *) * nr_frames
;
208 if (WARN_ON_ONCE(nr_frames
== 0))
211 * This is absurdly high. It's here just to avoid strange effects when
212 * arithmetics overflows.
214 if (WARN_ON_ONCE(nr_frames
> INT_MAX
/ sizeof(void *) / 2))
217 * Avoid higher order allocations, use vmalloc instead. It should
220 vec
= kvmalloc(size
, GFP_KERNEL
);
223 vec
->nr_allocated
= nr_frames
;
227 EXPORT_SYMBOL(frame_vector_create
);
230 * frame_vector_destroy() - free memory allocated to carry frame vector
231 * @vec: Frame vector to free
233 * Free structure allocated by frame_vector_create() to carry frames.
235 void frame_vector_destroy(struct frame_vector
*vec
)
237 /* Make sure put_vaddr_frames() got called properly... */
238 VM_BUG_ON(vec
->nr_frames
> 0);
241 EXPORT_SYMBOL(frame_vector_destroy
);