From nobody Sun Sep 14 00:26:20 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A7139C636BD for ; Sat, 28 Jan 2023 06:32:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231407AbjA1Gcr (ORCPT ); Sat, 28 Jan 2023 01:32:47 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37892 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229530AbjA1Gcn (ORCPT ); Sat, 28 Jan 2023 01:32:43 -0500 Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5D1C8166FA for ; Fri, 27 Jan 2023 22:32:41 -0800 (PST) Received: from dggpemm500014.china.huawei.com (unknown [172.30.72.55]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4P3l1g6WJNzRrCW; Sat, 28 Jan 2023 14:30:31 +0800 (CST) Received: from localhost.localdomain (10.175.112.125) by dggpemm500014.china.huawei.com (7.185.36.153) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.34; Sat, 28 Jan 2023 14:32:38 +0800 From: Wupeng Ma To: CC: , , , , Subject: [PATCH v3 1/4] mm/mlock: return EINVAL if len overflows for mlock/munlock Date: Sat, 28 Jan 2023 14:32:26 +0800 Message-ID: <20230128063229.989058-2-mawupeng1@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230128063229.989058-1-mawupeng1@huawei.com> References: <20230128063229.989058-1-mawupeng1@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.175.112.125] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To dggpemm500014.china.huawei.com (7.185.36.153) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Ma Wupeng While testing mlock, we have a problem if the len of mlock is ULONG_MAX. The return value of mlock is zero. But nothing will be locked since the len in do_mlock overflows to zero due to the following code in mlock: len =3D PAGE_ALIGN(len + (offset_in_page(start))); The same problem happens in munlock. Add new check and return -EINVAL to fix this overflowing scenarios since they are absolutely wrong. Return 0 early to avoid burn a bunch of cpu cycles if len =3D=3D 0. Signed-off-by: Ma Wupeng --- mm/mlock.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/mm/mlock.c b/mm/mlock.c index 7032f6dd0ce1..eb09968ba27f 100644 --- a/mm/mlock.c +++ b/mm/mlock.c @@ -478,8 +478,6 @@ static int apply_vma_lock_flags(unsigned long start, si= ze_t len, end =3D start + len; if (end < start) return -EINVAL; - if (end =3D=3D start) - return 0; vma =3D mas_walk(&mas); if (!vma) return -ENOMEM; @@ -575,7 +573,13 @@ static __must_check int do_mlock(unsigned long start, = size_t len, vm_flags_t fla if (!can_do_mlock()) return -EPERM; =20 + if (!len) + return 0; + len =3D PAGE_ALIGN(len + (offset_in_page(start))); + if (!len) + return -EINVAL; + start &=3D PAGE_MASK; =20 lock_limit =3D rlimit(RLIMIT_MEMLOCK); @@ -635,7 +639,13 @@ SYSCALL_DEFINE2(munlock, unsigned long, start, size_t,= len) =20 start =3D untagged_addr(start); =20 + if (!len) + return 0; + len =3D PAGE_ALIGN(len + (offset_in_page(start))); + if (!len) + return -EINVAL; + start &=3D PAGE_MASK; =20 if (mmap_write_lock_killable(current->mm)) --=20 2.25.1 From nobody Sun Sep 14 00:26:20 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 97632C27C76 for ; Sat, 28 Jan 2023 06:33:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231408AbjA1Gcs (ORCPT ); Sat, 28 Jan 2023 01:32:48 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37896 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229756AbjA1Gcn (ORCPT ); Sat, 28 Jan 2023 01:32:43 -0500 Received: from szxga08-in.huawei.com (szxga08-in.huawei.com [45.249.212.255]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 100F67B408 for ; Fri, 27 Jan 2023 22:32:41 -0800 (PST) Received: from dggpemm500014.china.huawei.com (unknown [172.30.72.53]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4P3l1t3mC0z16NJj; Sat, 28 Jan 2023 14:30:42 +0800 (CST) Received: from localhost.localdomain (10.175.112.125) by dggpemm500014.china.huawei.com (7.185.36.153) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.34; Sat, 28 Jan 2023 14:32:38 +0800 From: Wupeng Ma To: CC: , , , , Subject: [PATCH v3 2/4] mm/mempolicy: return EINVAL for if len overflows for set_mempolicy_home_node Date: Sat, 28 Jan 2023 14:32:27 +0800 Message-ID: <20230128063229.989058-3-mawupeng1@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230128063229.989058-1-mawupeng1@huawei.com> References: <20230128063229.989058-1-mawupeng1@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.175.112.125] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To dggpemm500014.china.huawei.com (7.185.36.153) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Ma Wupeng Check and return 0 if len =3D=3D 0 at the beginning of the function. Return -EINVAL if len overflows for set_mempolicy_home_node. Signed-off-by: Ma Wupeng --- mm/mempolicy.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 02c8a712282f..85c5d3c2503b 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -1512,13 +1512,16 @@ SYSCALL_DEFINE4(set_mempolicy_home_node, unsigned l= ong, start, unsigned long, le if (home_node >=3D MAX_NUMNODES || !node_online(home_node)) return -EINVAL; =20 + if (!len) + return 0; + len =3D PAGE_ALIGN(len); - end =3D start + len; + if (!len) + return -EINVAL; =20 + end =3D start + len; if (end < start) return -EINVAL; - if (end =3D=3D start) - return 0; mmap_write_lock(mm); for_each_vma_range(vmi, vma, end) { vmstart =3D max(start, vma->vm_start); --=20 2.25.1 From nobody Sun Sep 14 00:26:20 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B8FB2C38142 for ; Sat, 28 Jan 2023 06:33:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231563AbjA1Gcw (ORCPT ); Sat, 28 Jan 2023 01:32:52 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37928 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230502AbjA1Gcq (ORCPT ); Sat, 28 Jan 2023 01:32:46 -0500 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 37372166FA for ; Fri, 27 Jan 2023 22:32:44 -0800 (PST) Received: from dggpemm500014.china.huawei.com (unknown [172.30.72.54]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4P3kz26ScqzJqXP; Sat, 28 Jan 2023 14:28:14 +0800 (CST) Received: from localhost.localdomain (10.175.112.125) by dggpemm500014.china.huawei.com (7.185.36.153) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.34; Sat, 28 Jan 2023 14:32:39 +0800 From: Wupeng Ma To: CC: , , , , Subject: [PATCH v3 3/4] mm/mempolicy: return EINVAL if len overflows for mbind Date: Sat, 28 Jan 2023 14:32:28 +0800 Message-ID: <20230128063229.989058-4-mawupeng1@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230128063229.989058-1-mawupeng1@huawei.com> References: <20230128063229.989058-1-mawupeng1@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.175.112.125] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To dggpemm500014.china.huawei.com (7.185.36.153) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Ma Wupeng Check and return 0 if len =3D=3D 0 at the beginning of the function. Return -EINVAL if len overflows for mbind. Signed-off-by: Ma Wupeng --- mm/mempolicy.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 85c5d3c2503b..7791be5a2677 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c @@ -1275,13 +1275,16 @@ static long do_mbind(unsigned long start, unsigned = long len, if (mode =3D=3D MPOL_DEFAULT) flags &=3D ~MPOL_MF_STRICT; =20 + if (!len) + return 0; + len =3D PAGE_ALIGN(len); - end =3D start + len; + if (!len) + return -EINVAL; =20 + end =3D start + len; if (end < start) return -EINVAL; - if (end =3D=3D start) - return 0; =20 new =3D mpol_new(mode, mode_flags, nmask); if (IS_ERR(new)) --=20 2.25.1 From nobody Sun Sep 14 00:26:20 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A7E42C61DA4 for ; Sat, 28 Jan 2023 06:33:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231679AbjA1Gc4 (ORCPT ); Sat, 28 Jan 2023 01:32:56 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37930 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231158AbjA1Gcq (ORCPT ); Sat, 28 Jan 2023 01:32:46 -0500 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 66C3279630 for ; Fri, 27 Jan 2023 22:32:44 -0800 (PST) Received: from dggpemm500014.china.huawei.com (unknown [172.30.72.57]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4P3kz32VdVzJqM6; Sat, 28 Jan 2023 14:28:15 +0800 (CST) Received: from localhost.localdomain (10.175.112.125) by dggpemm500014.china.huawei.com (7.185.36.153) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.34; Sat, 28 Jan 2023 14:32:40 +0800 From: Wupeng Ma To: CC: , , , , Subject: [PATCH v3 4/4] mm/msync: return ENOMEM if len overflows for msync Date: Sat, 28 Jan 2023 14:32:29 +0800 Message-ID: <20230128063229.989058-5-mawupeng1@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230128063229.989058-1-mawupeng1@huawei.com> References: <20230128063229.989058-1-mawupeng1@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [10.175.112.125] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To dggpemm500014.china.huawei.com (7.185.36.153) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Ma Wupeng Check and return 0 if len =3D=3D 0 at the beginning of the function. Return -ENOMEM if len overflows for msync. Signed-off-by: Ma Wupeng --- mm/msync.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mm/msync.c b/mm/msync.c index ac4c9bfea2e7..3104c97d70d3 100644 --- a/mm/msync.c +++ b/mm/msync.c @@ -46,13 +46,16 @@ SYSCALL_DEFINE3(msync, unsigned long, start, size_t, le= n, int, flags) if ((flags & MS_ASYNC) && (flags & MS_SYNC)) goto out; error =3D -ENOMEM; + if (!len) + return 0; + len =3D (len + ~PAGE_MASK) & PAGE_MASK; + if (!len) + goto out; + end =3D start + len; if (end < start) goto out; - error =3D 0; - if (end =3D=3D start) - goto out; /* * If the interval [start,end) covers some unmapped address ranges, * just ignore them, but return -ENOMEM at the end. Besides, if the --=20 2.25.1