From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2A6D237C0FF for ; Thu, 21 May 2026 16:22:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779380531; cv=none; b=gWmhw9aIKNVeH8OGnKjrHM++0wS35ed3zltCjRGsabeVpItzfapJH2lJLLwSN7T0tUpLaJFwD+A57Ol1L5ipIqizmmqhhlfrLRyF/OciEobx3X6NQKR1boG8oKxJs4A/4ftwVHLhMZwTpHI5pe5u6G2fMCinY6Ak/C4n3rlJa4g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779380531; c=relaxed/simple; bh=h3VasNqiyHqk+3FpjQDruY6Ah/WIpdY6y4efkvwS7E0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=eBbqGv1B49u7RRJwq3ZPbVQFprsqVZmd3oMOft7vUid1x7DoaQ6LKTaG1Wt/3fUtoRBKVr3RcAeJVJxG3pPGtRh9u9FeTv2EzA8vBF3qBZ+HiI4OrhMidQYM/f6pMhfH3QV6Ul82xQeAoyuybgninpLTZkY2sq283zS11soH7y8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=HVNb/v0B; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="HVNb/v0B" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5559C1F000E9; Thu, 21 May 2026 16:22:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1779380529; bh=atLo39KUHSbdrUnGByF6jC4S9Ytfud1UYa6uCnPklXc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=HVNb/v0B7xQNW4EcbSe1zWM13aDZe+C3XtSDg6ukc+rD5Va8iUNrtk1d4xuScUmgt TGAbAHNTc1mAOGK2DxkiUHP32LcZpKvl4Zme2sbIfz949DEgvYrOrNCxv2B6Hh6feN 1dRyweyrwhBrZv6mF7z/ABqxobmLrAhWY5TyKIYJXyJDkRhA29uragL6PK8/oL2mTg c39RAl6l7UkkbKcG1PZ8Csa4V8VJMi4CVV6tVEEfCWKHSPO5Je07+1Dz4kwoLbYzZS Pk3h3uspW8Oz24BRpnF8eYN9iGGY/b0N37xVcen8n/zwoEDO2hUAvkPaxZhtBKO329 YxgFhZNjrjubg== From: Lorenzo Stoakes To: Andrew Morton Cc: Arnd Bergmann , Greg Kroah-Hartman , David Hildenbrand , "Liam R . Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , Jann Horn , Pedro Falcato , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: [PATCH 3/3] mm/vma: eliminate mmap_action->error_hook, introduce error_filter Date: Thu, 21 May 2026 17:21:54 +0100 Message-ID: X-Mailer: git-send-email 2.54.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Rather than providing a hook, simplify things by providing the ability to filter errors. This allows us to more carefully validate the value provided and thus ensure only a valid error code is specified, and simplifies the interface. This way, we eliminate all hooks but mmap_prepare and allow only mmap actions to be specified (which core mm controls). This significantly improves robustness and eliminates any unnecessary code duplication in driver mmap hooks. We also update the /dev/mem logic (the only user) to use mmap_action->error_filter instead. Signed-off-by: Lorenzo Stoakes --- drivers/char/mem.c | 8 +------- include/linux/mm_types.h | 9 +++------ mm/util.c | 29 +++++++++++++++++++++-------- tools/testing/vma/include/dup.h | 9 +++------ 4 files changed, 28 insertions(+), 27 deletions(-) diff --git a/drivers/char/mem.c b/drivers/char/mem.c index a4297eb39887..11639d988e47 100644 --- a/drivers/char/mem.c +++ b/drivers/char/mem.c @@ -322,11 +322,6 @@ static const struct vm_operations_struct mmap_mem_ops = { #endif }; -static int mmap_filter_error(int err) -{ - return -EAGAIN; -} - static int mmap_mem_prepare(struct vm_area_desc *desc) { struct file *file = desc->file; @@ -362,8 +357,7 @@ static int mmap_mem_prepare(struct vm_area_desc *desc) /* Remap-pfn-range will mark the range with the I/O flag. */ mmap_action_remap_full(desc, desc->pgoff); - /* We filter remap errors to -EAGAIN. */ - desc->action.error_hook = mmap_filter_error; + desc->action.error_filter = -EAGAIN; return 0; } diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 945c0a5386d6..8d1fb85e7684 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -844,13 +844,10 @@ struct mmap_action { enum mmap_action_type type; /* - * If specified, this hook is invoked when an error occurred when - * attempting the selected action. - * - * The hook can return an error code in order to filter the error, but - * it is not valid to clear the error here. + * If non-zero, filter errors that arise from mmap actions such that we + * return error_filter instead. Only valid error codes may be specified. */ - int (*error_hook)(int err); + int error_filter; /* * This should be set in rare instances where the operation required diff --git a/mm/util.c b/mm/util.c index 1555aa1487b8..939ed0b0bb5d 100644 --- a/mm/util.c +++ b/mm/util.c @@ -1413,16 +1413,22 @@ static int mmap_action_finish(struct vm_area_struct *vma, */ len = vma_pages(vma) << PAGE_SHIFT; do_munmap(current->mm, vma->vm_start, len, NULL); - if (action->error_hook) { - /* We may want to filter the error. */ - err = action->error_hook(err); - /* The caller should not clear the error. */ - VM_WARN_ON_ONCE(!err); - } - return err; + + return action->error_filter ?: err; } #ifdef CONFIG_MMU + +static int check_mmap_action(struct mmap_action *action) +{ + const unsigned long filter = action->error_filter; + + if (WARN_ON_ONCE(filter && !IS_ERR_VALUE(filter))) + return -EINVAL; + + return 0; +} + /** * mmap_action_prepare - Perform preparatory setup for an VMA descriptor * action which need to be performed. @@ -1432,7 +1438,14 @@ static int mmap_action_finish(struct vm_area_struct *vma, */ int mmap_action_prepare(struct vm_area_desc *desc) { - switch (desc->action.type) { + struct mmap_action *action = &desc->action; + int err; + + err = check_mmap_action(action); + if (err) + return err; + + switch (action->type) { case MMAP_NOTHING: return 0; case MMAP_REMAP_PFN: diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h index bf67a80a8332..4f7dd92075a3 100644 --- a/tools/testing/vma/include/dup.h +++ b/tools/testing/vma/include/dup.h @@ -483,13 +483,10 @@ struct mmap_action { enum mmap_action_type type; /* - * If specified, this hook is invoked when an error occurred when - * attempting the selection action. - * - * The hook can return an error code in order to filter the error, but - * it is not valid to clear the error here. + * If non-zero, filter errors that arise from mmap actions such that we + * return error_filter instead. Only valid error codes may be specified. */ - int (*error_hook)(int err); + int error_filter; /* * This should be set in rare instances where the operation required -- 2.54.0