From nobody Mon Feb 9 10:12:49 2026 Received: from forward100c.mail.yandex.net (forward100c.mail.yandex.net [178.154.239.211]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5DAA67E118; Tue, 23 Apr 2024 10:49:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=178.154.239.211 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713869377; cv=none; b=Rc+LKWqaZGIgMh5Nj1gx1wWqTbzi0Zf2rau45qV1iPnoE4/Qwfau1ZoSEXZZeC13Xk+bTVOZp8/e865/9TlVYIk3r4cC1qgXbvKu/6QF1i4LRpwZGtWAoVs3zE+/aFr2mPXEbsgox85Rkl9vjh/1KkGPMUFvmh0A3MLmh1/vF7c= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713869377; c=relaxed/simple; bh=t2/9kzu5cn37NlBr754kfbC9x4lMRcCfuiRc7DMS7GA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=C2PNivVQesAFeDlCI44Xkgwbh7HYaDpo+7GWQ4/OvsxskblQ5CbQwCXpUIdOzIxVeLb7a5NQ39BmRN51O1qjOllqFzGGJt16iTt44EXGz5R3o2+THlmZpUBcoT/QhOekHneDpdJwxn9ATGD0uFy+gv9G7YbVZEWmPnfoqiBnWdc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=yandex.ru; spf=pass smtp.mailfrom=yandex.ru; dkim=pass (1024-bit key) header.d=yandex.ru header.i=@yandex.ru header.b=tcz4wkXJ; arc=none smtp.client-ip=178.154.239.211 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=yandex.ru Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=yandex.ru Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=yandex.ru header.i=@yandex.ru header.b="tcz4wkXJ" Received: from mail-nwsmtp-smtp-production-main-85.iva.yp-c.yandex.net (mail-nwsmtp-smtp-production-main-85.iva.yp-c.yandex.net [IPv6:2a02:6b8:c0c:b1a0:0:640:e983:0]) by forward100c.mail.yandex.net (Yandex) with ESMTPS id 0378B60AA7; Tue, 23 Apr 2024 13:49:33 +0300 (MSK) Received: by mail-nwsmtp-smtp-production-main-85.iva.yp-c.yandex.net (smtp/Yandex) with ESMTPSA id TnHoiCGOm4Y0-nnKlF5bh; Tue, 23 Apr 2024 13:49:31 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1713869371; bh=5kgbLMAE980GVvENsTEIPE4CBNTxsGKzzeodVahHYoU=; h=Message-ID:Date:In-Reply-To:Cc:Subject:References:To:From; b=tcz4wkXJYAwcAKMdLdgv9qaHJS9DMXEHOP1CxThaqGHSmYF8l2SE8Td9ROtxpOkXJ 5+esTkOVhuiAbedXYk6nhUzZcbbG3XPuZQ4h07XXKBekLt+uDQHLGjfiz1LJ9L/i7+ 9BFA6dxMvAL3JpGn62OLigdcgdbhfXuPsd5fycNw= Authentication-Results: mail-nwsmtp-smtp-production-main-85.iva.yp-c.yandex.net; dkim=pass header.i=@yandex.ru From: Stas Sergeev To: linux-kernel@vger.kernel.org Cc: Stas Sergeev , Stefan Metzmacher , Eric Biederman , Alexander Viro , Andy Lutomirski , Christian Brauner , Jan Kara , Jeff Layton , Chuck Lever , Alexander Aring , linux-fsdevel@vger.kernel.org, Paolo Bonzini , =?UTF-8?q?Christian=20G=C3=B6ttsche?= Subject: [PATCH 1/2] fs: reorganize path_openat() Date: Tue, 23 Apr 2024 13:48:23 +0300 Message-ID: <20240423104824.10464-2-stsp2@yandex.ru> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240423104824.10464-1-stsp2@yandex.ru> References: <20240423104824.10464-1-stsp2@yandex.ru> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" This patch moves the call to alloc_empty_file() below the call to path_init(). That changes is needed for the next patch, which adds a cred override for alloc_empty_file(). The needed cred info is only available after the call to path_init(). No functional changes are intended by that patch. Signed-off-by: Stas Sergeev CC: Eric Biederman CC: Alexander Viro CC: Christian Brauner CC: Jan Kara CC: Andy Lutomirski CC: linux-fsdevel@vger.kernel.org CC: linux-kernel@vger.kernel.org --- fs/namei.c | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/fs/namei.c b/fs/namei.c index c5b2a25be7d0..2fde2c320ae9 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -3782,22 +3782,30 @@ static struct file *path_openat(struct nameidata *n= d, struct file *file; int error; =20 - file =3D alloc_empty_file(op->open_flag, current_cred()); - if (IS_ERR(file)) - return file; - - if (unlikely(file->f_flags & __O_TMPFILE)) { + if (unlikely(op->open_flag & __O_TMPFILE)) { + file =3D alloc_empty_file(op->open_flag, current_cred()); + if (IS_ERR(file)) + return file; error =3D do_tmpfile(nd, flags, op, file); - } else if (unlikely(file->f_flags & O_PATH)) { + } else if (unlikely(op->open_flag & O_PATH)) { + file =3D alloc_empty_file(op->open_flag, current_cred()); + if (IS_ERR(file)) + return file; error =3D do_o_path(nd, flags, file); } else { const char *s =3D path_init(nd, flags); - while (!(error =3D link_path_walk(s, nd)) && - (s =3D open_last_lookups(nd, file, op)) !=3D NULL) - ; + file =3D alloc_empty_file(op->open_flag, current_cred()); + error =3D PTR_ERR_OR_ZERO(file); + if (!error) { + while (!(error =3D link_path_walk(s, nd)) && + (s =3D open_last_lookups(nd, file, op)) !=3D NULL) + ; + } if (!error) error =3D do_open(nd, file, op); terminate_walk(nd); + if (IS_ERR(file)) + return file; } if (likely(!error)) { if (likely(file->f_mode & FMODE_OPENED)) --=20 2.44.0