]> git.baikalelectronics.ru Git - kernel.git/commit
fs/mount_setattr: always cleanup mount_kattr
authorChristian Brauner <christian.brauner@ubuntu.com>
Thu, 30 Dec 2021 19:23:09 +0000 (20:23 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 30 Dec 2021 23:12:13 +0000 (15:12 -0800)
commit5fee0f5907723fd9bccdad9e870e6a9572070f89
tree498edad3b725579e666efa4bec12762c9a071a13
parent3e3d3a97282d82710d4bceacccbc89047996eeea
fs/mount_setattr: always cleanup mount_kattr

Make sure that finish_mount_kattr() is called after mount_kattr was
succesfully built in both the success and failure case to prevent
leaking any references we took when we built it.  We returned early if
path lookup failed thereby risking to leak an additional reference we
took when building mount_kattr when an idmapped mount was requested.

Cc: linux-fsdevel@vger.kernel.org
Cc: stable@vger.kernel.org
Fixes: efda9290b79c ("fs: introduce MOUNT_ATTR_IDMAP")
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/namespace.c