mirror of
https://github.com/torvalds/linux.git
synced 2025-04-12 16:47:42 +00:00

indivudual patches which are described in their changelogs. - "Allocate and free frozen pages" from Matthew Wilcox reorganizes the page allocator so we end up with the ability to allocate and free zero-refcount pages. So that callers (ie, slab) can avoid a refcount inc & dec. - "Support large folios for tmpfs" from Baolin Wang teaches tmpfs to use large folios other than PMD-sized ones. - "Fix mm/rodata_test" from Petr Tesarik performs some maintenance and fixes for this small built-in kernel selftest. - "mas_anode_descend() related cleanup" from Wei Yang tidies up part of the mapletree code. - "mm: fix format issues and param types" from Keren Sun implements a few minor code cleanups. - "simplify split calculation" from Wei Yang provides a few fixes and a test for the mapletree code. - "mm/vma: make more mmap logic userland testable" from Lorenzo Stoakes continues the work of moving vma-related code into the (relatively) new mm/vma.c. - "mm/page_alloc: gfp flags cleanups for alloc_contig_*()" from David Hildenbrand cleans up and rationalizes handling of gfp flags in the page allocator. - "readahead: Reintroduce fix for improper RA window sizing" from Jan Kara is a second attempt at fixing a readahead window sizing issue. It should reduce the amount of unnecessary reading. - "synchronously scan and reclaim empty user PTE pages" from Qi Zheng addresses an issue where "huge" amounts of pte pagetables are accumulated (https://lore.kernel.org/lkml/cover.1718267194.git.zhengqi.arch@bytedance.com/). Qi's series addresses this windup by synchronously freeing PTE memory within the context of madvise(MADV_DONTNEED). - "selftest/mm: Remove warnings found by adding compiler flags" from Muhammad Usama Anjum fixes some build warnings in the selftests code when optional compiler warnings are enabled. - "mm: don't use __GFP_HARDWALL when migrating remote pages" from David Hildenbrand tightens the allocator's observance of __GFP_HARDWALL. - "pkeys kselftests improvements" from Kevin Brodsky implements various fixes and cleanups in the MM selftests code, mainly pertaining to the pkeys tests. - "mm/damon: add sample modules" from SeongJae Park enhances DAMON to estimate application working set size. - "memcg/hugetlb: Rework memcg hugetlb charging" from Joshua Hahn provides some cleanups to memcg's hugetlb charging logic. - "mm/swap_cgroup: remove global swap cgroup lock" from Kairui Song removes the global swap cgroup lock. A speedup of 10% for a tmpfs-based kernel build was demonstrated. - "zram: split page type read/write handling" from Sergey Senozhatsky has several fixes and cleaups for zram in the area of zram_write_page(). A watchdog softlockup warning was eliminated. - "move pagetable_*_dtor() to __tlb_remove_table()" from Kevin Brodsky cleans up the pagetable destructor implementations. A rare use-after-free race is fixed. - "mm/debug: introduce and use VM_WARN_ON_VMG()" from Lorenzo Stoakes simplifies and cleans up the debugging code in the VMA merging logic. - "Account page tables at all levels" from Kevin Brodsky cleans up and regularizes the pagetable ctor/dtor handling. This results in improvements in accounting accuracy. - "mm/damon: replace most damon_callback usages in sysfs with new core functions" from SeongJae Park cleans up and generalizes DAMON's sysfs file interface logic. - "mm/damon: enable page level properties based monitoring" from SeongJae Park increases the amount of information which is presented in response to DAMOS actions. - "mm/damon: remove DAMON debugfs interface" from SeongJae Park removes DAMON's long-deprecated debugfs interfaces. Thus the migration to sysfs is completed. - "mm/hugetlb: Refactor hugetlb allocation resv accounting" from Peter Xu cleans up and generalizes the hugetlb reservation accounting. - "mm: alloc_pages_bulk: small API refactor" from Luiz Capitulino removes a never-used feature of the alloc_pages_bulk() interface. - "mm/damon: extend DAMOS filters for inclusion" from SeongJae Park extends DAMOS filters to support not only exclusion (rejecting), but also inclusion (allowing) behavior. - "Add zpdesc memory descriptor for zswap.zpool" from Alex Shi "introduces a new memory descriptor for zswap.zpool that currently overlaps with struct page for now. This is part of the effort to reduce the size of struct page and to enable dynamic allocation of memory descriptors." - "mm, swap: rework of swap allocator locks" from Kairui Song redoes and simplifies the swap allocator locking. A speedup of 400% was demonstrated for one workload. As was a 35% reduction for kernel build time with swap-on-zram. - "mm: update mips to use do_mmap(), make mmap_region() internal" from Lorenzo Stoakes reworks MIPS's use of mmap_region() so that mmap_region() can be made MM-internal. - "mm/mglru: performance optimizations" from Yu Zhao fixes a few MGLRU regressions and otherwise improves MGLRU performance. - "Docs/mm/damon: add tuning guide and misc updates" from SeongJae Park updates DAMON documentation. - "Cleanup for memfd_create()" from Isaac Manjarres does that thing. - "mm: hugetlb+THP folio and migration cleanups" from David Hildenbrand provides various cleanups in the areas of hugetlb folios, THP folios and migration. - "Uncached buffered IO" from Jens Axboe implements the new RWF_DONTCACHE flag which provides synchronous dropbehind for pagecache reading and writing. To permite userspace to address issues with massive buildup of useless pagecache when reading/writing fast devices. - "selftests/mm: virtual_address_range: Reduce memory" from Thomas Weißschuh fixes and optimizes some of the MM selftests. -----BEGIN PGP SIGNATURE----- iHUEABYKAB0WIQTTMBEPP41GrTpTJgfdBJ7gKXxAjgUCZ5a+cwAKCRDdBJ7gKXxA jtoyAP9R58oaOKPJuTizEKKXvh/RpMyD6sYcz/uPpnf+cKTZxQEAqfVznfWlw/Lz uC3KRZYhmd5YrxU4o+qjbzp9XWX/xAE= =Ib2s -----END PGP SIGNATURE----- Merge tag 'mm-stable-2025-01-26-14-59' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Pull MM updates from Andrew Morton: "The various patchsets are summarized below. Plus of course many indivudual patches which are described in their changelogs. - "Allocate and free frozen pages" from Matthew Wilcox reorganizes the page allocator so we end up with the ability to allocate and free zero-refcount pages. So that callers (ie, slab) can avoid a refcount inc & dec - "Support large folios for tmpfs" from Baolin Wang teaches tmpfs to use large folios other than PMD-sized ones - "Fix mm/rodata_test" from Petr Tesarik performs some maintenance and fixes for this small built-in kernel selftest - "mas_anode_descend() related cleanup" from Wei Yang tidies up part of the mapletree code - "mm: fix format issues and param types" from Keren Sun implements a few minor code cleanups - "simplify split calculation" from Wei Yang provides a few fixes and a test for the mapletree code - "mm/vma: make more mmap logic userland testable" from Lorenzo Stoakes continues the work of moving vma-related code into the (relatively) new mm/vma.c - "mm/page_alloc: gfp flags cleanups for alloc_contig_*()" from David Hildenbrand cleans up and rationalizes handling of gfp flags in the page allocator - "readahead: Reintroduce fix for improper RA window sizing" from Jan Kara is a second attempt at fixing a readahead window sizing issue. It should reduce the amount of unnecessary reading - "synchronously scan and reclaim empty user PTE pages" from Qi Zheng addresses an issue where "huge" amounts of pte pagetables are accumulated: https://lore.kernel.org/lkml/cover.1718267194.git.zhengqi.arch@bytedance.com/ Qi's series addresses this windup by synchronously freeing PTE memory within the context of madvise(MADV_DONTNEED) - "selftest/mm: Remove warnings found by adding compiler flags" from Muhammad Usama Anjum fixes some build warnings in the selftests code when optional compiler warnings are enabled - "mm: don't use __GFP_HARDWALL when migrating remote pages" from David Hildenbrand tightens the allocator's observance of __GFP_HARDWALL - "pkeys kselftests improvements" from Kevin Brodsky implements various fixes and cleanups in the MM selftests code, mainly pertaining to the pkeys tests - "mm/damon: add sample modules" from SeongJae Park enhances DAMON to estimate application working set size - "memcg/hugetlb: Rework memcg hugetlb charging" from Joshua Hahn provides some cleanups to memcg's hugetlb charging logic - "mm/swap_cgroup: remove global swap cgroup lock" from Kairui Song removes the global swap cgroup lock. A speedup of 10% for a tmpfs-based kernel build was demonstrated - "zram: split page type read/write handling" from Sergey Senozhatsky has several fixes and cleaups for zram in the area of zram_write_page(). A watchdog softlockup warning was eliminated - "move pagetable_*_dtor() to __tlb_remove_table()" from Kevin Brodsky cleans up the pagetable destructor implementations. A rare use-after-free race is fixed - "mm/debug: introduce and use VM_WARN_ON_VMG()" from Lorenzo Stoakes simplifies and cleans up the debugging code in the VMA merging logic - "Account page tables at all levels" from Kevin Brodsky cleans up and regularizes the pagetable ctor/dtor handling. This results in improvements in accounting accuracy - "mm/damon: replace most damon_callback usages in sysfs with new core functions" from SeongJae Park cleans up and generalizes DAMON's sysfs file interface logic - "mm/damon: enable page level properties based monitoring" from SeongJae Park increases the amount of information which is presented in response to DAMOS actions - "mm/damon: remove DAMON debugfs interface" from SeongJae Park removes DAMON's long-deprecated debugfs interfaces. Thus the migration to sysfs is completed - "mm/hugetlb: Refactor hugetlb allocation resv accounting" from Peter Xu cleans up and generalizes the hugetlb reservation accounting - "mm: alloc_pages_bulk: small API refactor" from Luiz Capitulino removes a never-used feature of the alloc_pages_bulk() interface - "mm/damon: extend DAMOS filters for inclusion" from SeongJae Park extends DAMOS filters to support not only exclusion (rejecting), but also inclusion (allowing) behavior - "Add zpdesc memory descriptor for zswap.zpool" from Alex Shi introduces a new memory descriptor for zswap.zpool that currently overlaps with struct page for now. This is part of the effort to reduce the size of struct page and to enable dynamic allocation of memory descriptors - "mm, swap: rework of swap allocator locks" from Kairui Song redoes and simplifies the swap allocator locking. A speedup of 400% was demonstrated for one workload. As was a 35% reduction for kernel build time with swap-on-zram - "mm: update mips to use do_mmap(), make mmap_region() internal" from Lorenzo Stoakes reworks MIPS's use of mmap_region() so that mmap_region() can be made MM-internal - "mm/mglru: performance optimizations" from Yu Zhao fixes a few MGLRU regressions and otherwise improves MGLRU performance - "Docs/mm/damon: add tuning guide and misc updates" from SeongJae Park updates DAMON documentation - "Cleanup for memfd_create()" from Isaac Manjarres does that thing - "mm: hugetlb+THP folio and migration cleanups" from David Hildenbrand provides various cleanups in the areas of hugetlb folios, THP folios and migration - "Uncached buffered IO" from Jens Axboe implements the new RWF_DONTCACHE flag which provides synchronous dropbehind for pagecache reading and writing. To permite userspace to address issues with massive buildup of useless pagecache when reading/writing fast devices - "selftests/mm: virtual_address_range: Reduce memory" from Thomas Weißschuh fixes and optimizes some of the MM selftests" * tag 'mm-stable-2025-01-26-14-59' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (321 commits) mm/compaction: fix UBSAN shift-out-of-bounds warning s390/mm: add missing ctor/dtor on page table upgrade kasan: sw_tags: use str_on_off() helper in kasan_init_sw_tags() tools: add VM_WARN_ON_VMG definition mm/damon/core: use str_high_low() helper in damos_wmark_wait_us() seqlock: add missing parameter documentation for raw_seqcount_try_begin() mm/page-writeback: consolidate wb_thresh bumping logic into __wb_calc_thresh mm/page_alloc: remove the incorrect and misleading comment zram: remove zcomp_stream_put() from write_incompressible_page() mm: separate move/undo parts from migrate_pages_batch() mm/kfence: use str_write_read() helper in get_access_type() selftests/mm/mkdirty: fix memory leak in test_uffdio_copy() kasan: hw_tags: Use str_on_off() helper in kasan_init_hw_tags() selftests/mm: virtual_address_range: avoid reading from VM_IO mappings selftests/mm: vm_util: split up /proc/self/smaps parsing selftests/mm: virtual_address_range: unmap chunks after validation selftests/mm: virtual_address_range: mmap() without PROT_WRITE selftests/memfd/memfd_test: fix possible NULL pointer dereference mm: add FGP_DONTCACHE folio creation flag mm: call filemap_fdatawrite_range_kick() after IOCB_DONTCACHE issue ...
417 lines
10 KiB
C
417 lines
10 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/mman.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/vmalloc.h>
|
|
#include <linux/io_uring.h>
|
|
#include <linux/io_uring_types.h>
|
|
#include <asm/shmparam.h>
|
|
|
|
#include "memmap.h"
|
|
#include "kbuf.h"
|
|
#include "rsrc.h"
|
|
|
|
static void *io_mem_alloc_compound(struct page **pages, int nr_pages,
|
|
size_t size, gfp_t gfp)
|
|
{
|
|
struct page *page;
|
|
int i, order;
|
|
|
|
order = get_order(size);
|
|
if (order > MAX_PAGE_ORDER)
|
|
return ERR_PTR(-ENOMEM);
|
|
else if (order)
|
|
gfp |= __GFP_COMP;
|
|
|
|
page = alloc_pages(gfp, order);
|
|
if (!page)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
for (i = 0; i < nr_pages; i++)
|
|
pages[i] = page + i;
|
|
|
|
return page_address(page);
|
|
}
|
|
|
|
struct page **io_pin_pages(unsigned long uaddr, unsigned long len, int *npages)
|
|
{
|
|
unsigned long start, end, nr_pages;
|
|
struct page **pages;
|
|
int ret;
|
|
|
|
if (check_add_overflow(uaddr, len, &end))
|
|
return ERR_PTR(-EOVERFLOW);
|
|
if (check_add_overflow(end, PAGE_SIZE - 1, &end))
|
|
return ERR_PTR(-EOVERFLOW);
|
|
|
|
end = end >> PAGE_SHIFT;
|
|
start = uaddr >> PAGE_SHIFT;
|
|
nr_pages = end - start;
|
|
if (WARN_ON_ONCE(!nr_pages))
|
|
return ERR_PTR(-EINVAL);
|
|
if (WARN_ON_ONCE(nr_pages > INT_MAX))
|
|
return ERR_PTR(-EOVERFLOW);
|
|
|
|
pages = kvmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
|
|
if (!pages)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
ret = pin_user_pages_fast(uaddr, nr_pages, FOLL_WRITE | FOLL_LONGTERM,
|
|
pages);
|
|
/* success, mapped all pages */
|
|
if (ret == nr_pages) {
|
|
*npages = nr_pages;
|
|
return pages;
|
|
}
|
|
|
|
/* partial map, or didn't map anything */
|
|
if (ret >= 0) {
|
|
/* if we did partial map, release any pages we did get */
|
|
if (ret)
|
|
unpin_user_pages(pages, ret);
|
|
ret = -EFAULT;
|
|
}
|
|
kvfree(pages);
|
|
return ERR_PTR(ret);
|
|
}
|
|
|
|
enum {
|
|
/* memory was vmap'ed for the kernel, freeing the region vunmap's it */
|
|
IO_REGION_F_VMAP = 1,
|
|
/* memory is provided by user and pinned by the kernel */
|
|
IO_REGION_F_USER_PROVIDED = 2,
|
|
/* only the first page in the array is ref'ed */
|
|
IO_REGION_F_SINGLE_REF = 4,
|
|
};
|
|
|
|
void io_free_region(struct io_ring_ctx *ctx, struct io_mapped_region *mr)
|
|
{
|
|
if (mr->pages) {
|
|
long nr_refs = mr->nr_pages;
|
|
|
|
if (mr->flags & IO_REGION_F_SINGLE_REF)
|
|
nr_refs = 1;
|
|
|
|
if (mr->flags & IO_REGION_F_USER_PROVIDED)
|
|
unpin_user_pages(mr->pages, nr_refs);
|
|
else
|
|
release_pages(mr->pages, nr_refs);
|
|
|
|
kvfree(mr->pages);
|
|
}
|
|
if ((mr->flags & IO_REGION_F_VMAP) && mr->ptr)
|
|
vunmap(mr->ptr);
|
|
if (mr->nr_pages && ctx->user)
|
|
__io_unaccount_mem(ctx->user, mr->nr_pages);
|
|
|
|
memset(mr, 0, sizeof(*mr));
|
|
}
|
|
|
|
static int io_region_init_ptr(struct io_mapped_region *mr)
|
|
{
|
|
struct io_imu_folio_data ifd;
|
|
void *ptr;
|
|
|
|
if (io_check_coalesce_buffer(mr->pages, mr->nr_pages, &ifd)) {
|
|
if (ifd.nr_folios == 1) {
|
|
mr->ptr = page_address(mr->pages[0]);
|
|
return 0;
|
|
}
|
|
}
|
|
ptr = vmap(mr->pages, mr->nr_pages, VM_MAP, PAGE_KERNEL);
|
|
if (!ptr)
|
|
return -ENOMEM;
|
|
|
|
mr->ptr = ptr;
|
|
mr->flags |= IO_REGION_F_VMAP;
|
|
return 0;
|
|
}
|
|
|
|
static int io_region_pin_pages(struct io_ring_ctx *ctx,
|
|
struct io_mapped_region *mr,
|
|
struct io_uring_region_desc *reg)
|
|
{
|
|
unsigned long size = mr->nr_pages << PAGE_SHIFT;
|
|
struct page **pages;
|
|
int nr_pages;
|
|
|
|
pages = io_pin_pages(reg->user_addr, size, &nr_pages);
|
|
if (IS_ERR(pages))
|
|
return PTR_ERR(pages);
|
|
if (WARN_ON_ONCE(nr_pages != mr->nr_pages))
|
|
return -EFAULT;
|
|
|
|
mr->pages = pages;
|
|
mr->flags |= IO_REGION_F_USER_PROVIDED;
|
|
return 0;
|
|
}
|
|
|
|
static int io_region_allocate_pages(struct io_ring_ctx *ctx,
|
|
struct io_mapped_region *mr,
|
|
struct io_uring_region_desc *reg,
|
|
unsigned long mmap_offset)
|
|
{
|
|
gfp_t gfp = GFP_KERNEL_ACCOUNT | __GFP_ZERO | __GFP_NOWARN;
|
|
unsigned long size = mr->nr_pages << PAGE_SHIFT;
|
|
unsigned long nr_allocated;
|
|
struct page **pages;
|
|
void *p;
|
|
|
|
pages = kvmalloc_array(mr->nr_pages, sizeof(*pages), gfp);
|
|
if (!pages)
|
|
return -ENOMEM;
|
|
|
|
p = io_mem_alloc_compound(pages, mr->nr_pages, size, gfp);
|
|
if (!IS_ERR(p)) {
|
|
mr->flags |= IO_REGION_F_SINGLE_REF;
|
|
goto done;
|
|
}
|
|
|
|
nr_allocated = alloc_pages_bulk_node(gfp, NUMA_NO_NODE,
|
|
mr->nr_pages, pages);
|
|
if (nr_allocated != mr->nr_pages) {
|
|
if (nr_allocated)
|
|
release_pages(pages, nr_allocated);
|
|
kvfree(pages);
|
|
return -ENOMEM;
|
|
}
|
|
done:
|
|
reg->mmap_offset = mmap_offset;
|
|
mr->pages = pages;
|
|
return 0;
|
|
}
|
|
|
|
int io_create_region(struct io_ring_ctx *ctx, struct io_mapped_region *mr,
|
|
struct io_uring_region_desc *reg,
|
|
unsigned long mmap_offset)
|
|
{
|
|
int nr_pages, ret;
|
|
u64 end;
|
|
|
|
if (WARN_ON_ONCE(mr->pages || mr->ptr || mr->nr_pages))
|
|
return -EFAULT;
|
|
if (memchr_inv(®->__resv, 0, sizeof(reg->__resv)))
|
|
return -EINVAL;
|
|
if (reg->flags & ~IORING_MEM_REGION_TYPE_USER)
|
|
return -EINVAL;
|
|
/* user_addr should be set IFF it's a user memory backed region */
|
|
if ((reg->flags & IORING_MEM_REGION_TYPE_USER) != !!reg->user_addr)
|
|
return -EFAULT;
|
|
if (!reg->size || reg->mmap_offset || reg->id)
|
|
return -EINVAL;
|
|
if ((reg->size >> PAGE_SHIFT) > INT_MAX)
|
|
return -E2BIG;
|
|
if ((reg->user_addr | reg->size) & ~PAGE_MASK)
|
|
return -EINVAL;
|
|
if (check_add_overflow(reg->user_addr, reg->size, &end))
|
|
return -EOVERFLOW;
|
|
|
|
nr_pages = reg->size >> PAGE_SHIFT;
|
|
if (ctx->user) {
|
|
ret = __io_account_mem(ctx->user, nr_pages);
|
|
if (ret)
|
|
return ret;
|
|
}
|
|
mr->nr_pages = nr_pages;
|
|
|
|
if (reg->flags & IORING_MEM_REGION_TYPE_USER)
|
|
ret = io_region_pin_pages(ctx, mr, reg);
|
|
else
|
|
ret = io_region_allocate_pages(ctx, mr, reg, mmap_offset);
|
|
if (ret)
|
|
goto out_free;
|
|
|
|
ret = io_region_init_ptr(mr);
|
|
if (ret)
|
|
goto out_free;
|
|
return 0;
|
|
out_free:
|
|
io_free_region(ctx, mr);
|
|
return ret;
|
|
}
|
|
|
|
int io_create_region_mmap_safe(struct io_ring_ctx *ctx, struct io_mapped_region *mr,
|
|
struct io_uring_region_desc *reg,
|
|
unsigned long mmap_offset)
|
|
{
|
|
struct io_mapped_region tmp_mr;
|
|
int ret;
|
|
|
|
memcpy(&tmp_mr, mr, sizeof(tmp_mr));
|
|
ret = io_create_region(ctx, &tmp_mr, reg, mmap_offset);
|
|
if (ret)
|
|
return ret;
|
|
|
|
/*
|
|
* Once published mmap can find it without holding only the ->mmap_lock
|
|
* and not ->uring_lock.
|
|
*/
|
|
guard(mutex)(&ctx->mmap_lock);
|
|
memcpy(mr, &tmp_mr, sizeof(tmp_mr));
|
|
return 0;
|
|
}
|
|
|
|
static struct io_mapped_region *io_mmap_get_region(struct io_ring_ctx *ctx,
|
|
loff_t pgoff)
|
|
{
|
|
loff_t offset = pgoff << PAGE_SHIFT;
|
|
unsigned int bgid;
|
|
|
|
switch (offset & IORING_OFF_MMAP_MASK) {
|
|
case IORING_OFF_SQ_RING:
|
|
case IORING_OFF_CQ_RING:
|
|
return &ctx->ring_region;
|
|
case IORING_OFF_SQES:
|
|
return &ctx->sq_region;
|
|
case IORING_OFF_PBUF_RING:
|
|
bgid = (offset & ~IORING_OFF_MMAP_MASK) >> IORING_OFF_PBUF_SHIFT;
|
|
return io_pbuf_get_region(ctx, bgid);
|
|
case IORING_MAP_OFF_PARAM_REGION:
|
|
return &ctx->param_region;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static void *io_region_validate_mmap(struct io_ring_ctx *ctx,
|
|
struct io_mapped_region *mr)
|
|
{
|
|
lockdep_assert_held(&ctx->mmap_lock);
|
|
|
|
if (!io_region_is_set(mr))
|
|
return ERR_PTR(-EINVAL);
|
|
if (mr->flags & IO_REGION_F_USER_PROVIDED)
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
return io_region_get_ptr(mr);
|
|
}
|
|
|
|
static void *io_uring_validate_mmap_request(struct file *file, loff_t pgoff,
|
|
size_t sz)
|
|
{
|
|
struct io_ring_ctx *ctx = file->private_data;
|
|
struct io_mapped_region *region;
|
|
|
|
region = io_mmap_get_region(ctx, pgoff);
|
|
if (!region)
|
|
return ERR_PTR(-EINVAL);
|
|
return io_region_validate_mmap(ctx, region);
|
|
}
|
|
|
|
#ifdef CONFIG_MMU
|
|
|
|
static int io_region_mmap(struct io_ring_ctx *ctx,
|
|
struct io_mapped_region *mr,
|
|
struct vm_area_struct *vma,
|
|
unsigned max_pages)
|
|
{
|
|
unsigned long nr_pages = min(mr->nr_pages, max_pages);
|
|
|
|
vm_flags_set(vma, VM_DONTEXPAND);
|
|
return vm_insert_pages(vma, vma->vm_start, mr->pages, &nr_pages);
|
|
}
|
|
|
|
__cold int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
|
|
{
|
|
struct io_ring_ctx *ctx = file->private_data;
|
|
size_t sz = vma->vm_end - vma->vm_start;
|
|
long offset = vma->vm_pgoff << PAGE_SHIFT;
|
|
unsigned int page_limit = UINT_MAX;
|
|
struct io_mapped_region *region;
|
|
void *ptr;
|
|
|
|
guard(mutex)(&ctx->mmap_lock);
|
|
|
|
ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
|
|
if (IS_ERR(ptr))
|
|
return PTR_ERR(ptr);
|
|
|
|
switch (offset & IORING_OFF_MMAP_MASK) {
|
|
case IORING_OFF_SQ_RING:
|
|
case IORING_OFF_CQ_RING:
|
|
page_limit = (sz + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
|
break;
|
|
}
|
|
|
|
region = io_mmap_get_region(ctx, vma->vm_pgoff);
|
|
return io_region_mmap(ctx, region, vma, page_limit);
|
|
}
|
|
|
|
unsigned long io_uring_get_unmapped_area(struct file *filp, unsigned long addr,
|
|
unsigned long len, unsigned long pgoff,
|
|
unsigned long flags)
|
|
{
|
|
struct io_ring_ctx *ctx = filp->private_data;
|
|
void *ptr;
|
|
|
|
/*
|
|
* Do not allow to map to user-provided address to avoid breaking the
|
|
* aliasing rules. Userspace is not able to guess the offset address of
|
|
* kernel kmalloc()ed memory area.
|
|
*/
|
|
if (addr)
|
|
return -EINVAL;
|
|
|
|
guard(mutex)(&ctx->mmap_lock);
|
|
|
|
ptr = io_uring_validate_mmap_request(filp, pgoff, len);
|
|
if (IS_ERR(ptr))
|
|
return -ENOMEM;
|
|
|
|
/*
|
|
* Some architectures have strong cache aliasing requirements.
|
|
* For such architectures we need a coherent mapping which aliases
|
|
* kernel memory *and* userspace memory. To achieve that:
|
|
* - use a NULL file pointer to reference physical memory, and
|
|
* - use the kernel virtual address of the shared io_uring context
|
|
* (instead of the userspace-provided address, which has to be 0UL
|
|
* anyway).
|
|
* - use the same pgoff which the get_unmapped_area() uses to
|
|
* calculate the page colouring.
|
|
* For architectures without such aliasing requirements, the
|
|
* architecture will return any suitable mapping because addr is 0.
|
|
*/
|
|
filp = NULL;
|
|
flags |= MAP_SHARED;
|
|
pgoff = 0; /* has been translated to ptr above */
|
|
#ifdef SHM_COLOUR
|
|
addr = (uintptr_t) ptr;
|
|
pgoff = addr >> PAGE_SHIFT;
|
|
#else
|
|
addr = 0UL;
|
|
#endif
|
|
return mm_get_unmapped_area(current->mm, filp, addr, len, pgoff, flags);
|
|
}
|
|
|
|
#else /* !CONFIG_MMU */
|
|
|
|
int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
|
|
{
|
|
return is_nommu_shared_mapping(vma->vm_flags) ? 0 : -EINVAL;
|
|
}
|
|
|
|
unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
|
|
{
|
|
return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
|
|
}
|
|
|
|
unsigned long io_uring_get_unmapped_area(struct file *file, unsigned long addr,
|
|
unsigned long len, unsigned long pgoff,
|
|
unsigned long flags)
|
|
{
|
|
struct io_ring_ctx *ctx = file->private_data;
|
|
void *ptr;
|
|
|
|
guard(mutex)(&ctx->mmap_lock);
|
|
|
|
ptr = io_uring_validate_mmap_request(file, pgoff, len);
|
|
if (IS_ERR(ptr))
|
|
return PTR_ERR(ptr);
|
|
|
|
return (unsigned long) ptr;
|
|
}
|
|
|
|
#endif /* !CONFIG_MMU */
|