From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Google-Smtp-Source: AIpwx49ev8UpJwxl81rCqiRay5vi4ALAQE04N3BtFua334B6WP4a41KNm+TmmneaSFkK3H2qdaC6 ARC-Seal: i=1; a=rsa-sha256; t=1523022056; cv=none; d=google.com; s=arc-20160816; b=BcRNSevzJcSsTZEI3rRklz65xwc5wXyHpKsjsp5pYj2K7/WE11aFPF6b1yNnDC63aZ 0svhhjU8RaxKddOMXoqQ/QKKw6mU3++YYS1axkibINyt1n9ecE3sOlkE+GtSN5y0E7Ju QiiUxoV6FD6USaLsP/bMzAusdUTO8t+JR4ZiHSFb8nfoRMzIXKIitT+Y3rstrmNfQbaB sMlTCPbdBSTe4z343SsxQoIXzCaNQU0IE2NAs8ZOtSm1JVoum71ZkRQzFcJcBgjDi8gv xpU2cvXsI7hAO8vpVEnKD5jk/vNqK3J9inNM2zWpbDmj+EdvEa/fZUnLXLTePSjeWVnF hTZg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=mime-version:user-agent:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=DG7uM9DOZbHTQz/SNFVXdI0xCNULIKGnc0rg18YtbIE=; b=QQMECbOtGYJ1tN/GBKmwAfmpPYV0bQpfIz6FJ/WJPS3QtZ+FMgN2RnhlW7eF3VKR+8 5/3U76NEe7YMViOsF8z4g2+RGT4iu7fvyHW26iwCKFgLlAj2hS1JnPS4nwZKuGQt8+Dn 6G4y7dZq6m83uMuUdIjxw2iAwulFG2puoVAzNBs8D/vezg5Hr+qWEN4S0h1itbPMGO+I Fvaip0ZG9FI8iL3WyOpt3YBLC906fDafEYbadxUk41AyI6AVpGoPJm8QJ8/T29IhZeJJ bxjbw63MgRCvMzzDw5/WqhoP1urTB3QP+70NSqWdpfTRVvA7NT824en/DVkKhEotbtBF D4+A== ARC-Authentication-Results: i=1; mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.61.202 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org Authentication-Results: mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.61.202 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Mike Kravetz , Laurent Dufour , Dan Williams , Michal Hocko , Davidlohr Bueso , Manfred Spraul , Andrew Morton , Linus Torvalds Subject: [PATCH 4.15 13/72] ipc/shm.c: add split function to shm_vm_ops Date: Fri, 6 Apr 2018 15:23:48 +0200 Message-Id: <20180406084350.555084224@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180406084349.367583460@linuxfoundation.org> References: <20180406084349.367583460@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-getmail-retrieved-from-mailbox: INBOX X-GMAIL-LABELS: =?utf-8?b?IlxcU2VudCI=?= X-GMAIL-THRID: =?utf-8?q?1597003934238227068?= X-GMAIL-MSGID: =?utf-8?q?1597004375414429317?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: 4.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Mike Kravetz commit 3d942ee079b917b24e2a0c5f18d35ac8ec9fee48 upstream. If System V shmget/shmat operations are used to create a hugetlbfs backed mapping, it is possible to munmap part of the mapping and split the underlying vma such that it is not huge page aligned. This will untimately result in the following BUG: kernel BUG at /build/linux-jWa1Fv/linux-4.15.0/mm/hugetlb.c:3310! Oops: Exception in kernel mode, sig: 5 [#1] LE SMP NR_CPUS=2048 NUMA PowerNV Modules linked in: kcm nfc af_alg caif_socket caif phonet fcrypt CPU: 18 PID: 43243 Comm: trinity-subchil Tainted: G C E 4.15.0-10-generic #11-Ubuntu NIP: c00000000036e764 LR: c00000000036ee48 CTR: 0000000000000009 REGS: c000003fbcdcf810 TRAP: 0700 Tainted: G C E (4.15.0-10-generic) MSR: 9000000000029033 CR: 24002222 XER: 20040000 CFAR: c00000000036ee44 SOFTE: 1 NIP __unmap_hugepage_range+0xa4/0x760 LR __unmap_hugepage_range_final+0x28/0x50 Call Trace: 0x7115e4e00000 (unreliable) __unmap_hugepage_range_final+0x28/0x50 unmap_single_vma+0x11c/0x190 unmap_vmas+0x94/0x140 exit_mmap+0x9c/0x1d0 mmput+0xa8/0x1d0 do_exit+0x360/0xc80 do_group_exit+0x60/0x100 SyS_exit_group+0x24/0x30 system_call+0x58/0x6c ---[ end trace ee88f958a1c62605 ]--- This bug was introduced by commit 31383c6865a5 ("mm, hugetlbfs: introduce ->split() to vm_operations_struct"). A split function was added to vm_operations_struct to determine if a mapping can be split. This was mostly for device-dax and hugetlbfs mappings which have specific alignment constraints. Mappings initiated via shmget/shmat have their original vm_ops overwritten with shm_vm_ops. shm_vm_ops functions will call back to the original vm_ops if needed. Add such a split function to shm_vm_ops. Link: http://lkml.kernel.org/r/20180321161314.7711-1-mike.kravetz@oracle.com Fixes: 31383c6865a5 ("mm, hugetlbfs: introduce ->split() to vm_operations_struct") Signed-off-by: Mike Kravetz Reported-by: Laurent Dufour Reviewed-by: Laurent Dufour Tested-by: Laurent Dufour Reviewed-by: Dan Williams Acked-by: Michal Hocko Cc: Davidlohr Bueso Cc: Manfred Spraul Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- ipc/shm.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) --- a/ipc/shm.c +++ b/ipc/shm.c @@ -386,6 +386,17 @@ static int shm_fault(struct vm_fault *vm return sfd->vm_ops->fault(vmf); } +static int shm_split(struct vm_area_struct *vma, unsigned long addr) +{ + struct file *file = vma->vm_file; + struct shm_file_data *sfd = shm_file_data(file); + + if (sfd->vm_ops && sfd->vm_ops->split) + return sfd->vm_ops->split(vma, addr); + + return 0; +} + #ifdef CONFIG_NUMA static int shm_set_policy(struct vm_area_struct *vma, struct mempolicy *new) { @@ -510,6 +521,7 @@ static const struct vm_operations_struct .open = shm_open, /* callback for a new vm-area open */ .close = shm_close, /* callback for when the vm-area is released */ .fault = shm_fault, + .split = shm_split, #if defined(CONFIG_NUMA) .set_policy = shm_set_policy, .get_policy = shm_get_policy,