]> git.baikalelectronics.ru Git - kernel.git/commit
aio: fix mremap after fork null-deref
authorSeth Jenkins <sethjenkins@google.com>
Tue, 31 Jan 2023 17:25:55 +0000 (12:25 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 Feb 2023 11:59:46 +0000 (12:59 +0100)
commitd98c6d42c8defc87fa9e961a79ff4572f64c9b33
treecc2e9941338442d912c2c133d6fe1871c2f2a482
parentcc9e52cd36040826580b7a5204a475ff4210eb7f
aio: fix mremap after fork null-deref

commit 4c928f1d2395d4543e9f637f4a917b495095d307 upstream.

Commit 1d13eafecf43 ("aio: Make it possible to remap aio ring") introduced
a null-deref if mremap is called on an old aio mapping after fork as
mm->ioctx_table will be set to NULL.

[jmoyer@redhat.com: fix 80 column issue]
Link: https://lkml.kernel.org/r/x49sffq4nvg.fsf@segfault.boston.devel.redhat.com
Fixes: 1d13eafecf43 ("aio: Make it possible to remap aio ring")
Signed-off-by: Seth Jenkins <sethjenkins@google.com>
Signed-off-by: Jeff Moyer <jmoyer@redhat.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Benjamin LaHaise <bcrl@kvack.org>
Cc: Jann Horn <jannh@google.com>
Cc: Pavel Emelyanov <xemul@parallels.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/aio.c