]> git.baikalelectronics.ru Git - kernel.git/commit
io_uring: don't assume mm is constant across submits
authorJens Axboe <axboe@kernel.dk>
Tue, 29 Dec 2020 17:50:46 +0000 (10:50 -0700)
committerJens Axboe <axboe@kernel.dk>
Tue, 29 Dec 2020 18:00:36 +0000 (11:00 -0700)
commit2c4f0006443269ba8dcc8e8ff9ad69a0812e9f1d
tree2f5da76650d3d77b40923c6b632d23b8e15a4837
parent2af7ba1dc0ac24f9c1b6fbed627077d8df258132
io_uring: don't assume mm is constant across submits

If we COW the identity, we assume that ->mm never changes. But this
isn't true of multiple processes end up sharing the ring. Hence treat
id->mm like like any other process compontent when it comes to the
identity mapping. This is pretty trivial, just moving the existing grab
into io_grab_identity(), and including a check for the match.

Cc: stable@vger.kernel.org # 5.10
Fixes: e4cef3e32c71 ("io_uring: COW io_identity on mismatch")
Reported-by: Christian Brauner <christian.brauner@ubuntu.com>:
Tested-by: Christian Brauner <christian.brauner@ubuntu.com>:
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c