From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 E99E146C851; Fri, 7 Aug 2026 15:42:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786117357; cv=none; b=Dv1sEjXjWtb5e6Ax3AKkgFpswOFmu7oO6g7Mn5/d9I2hQ7lu9C6q3qe2np5nSx2riV9QvLE3ifDdp97xbF9ZwnCr+lg7Wpat6o0IkhSQ4e83cPs/wHEj6umRAZNqDhre6dBXXjGuCndVlX5M7JDDQCJ+C3aXUEolNOAldvl4v3E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786117357; c=relaxed/simple; bh=+OCqOTXfks3i1/ghMaiACvfXtYkH5GmaCruWiQ8oIZQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=b4su0tRmGTrT94FQJ65CsboHP1I/bT2uKEQW1GTTURPr2Vh+2gYxrOjXASBx4+rNyeTvcRuaq5wKPwpF15/pDMz9E3GLGncK9B/KWUW8QanWSWveKQmUZD86YusG43LJec6Dy0Mj4UB1rQdjRy9wmpQAzm3CgOhM5pF3SWU30VY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Pf2X1sRs; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Pf2X1sRs" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2831A1F000E9; Fri, 7 Aug 2026 15:42:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786117355; bh=UEFelk8HR9lIIT1v5YorbDYqLp26C6Qs9cL6maRPDw4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Pf2X1sRsH0IvneWkTa+l+3fKoPi6k0J6UhaS1CKiGb1yk5Md/LE1WC9Sn0ec4ie99 J60PKhQaJQXtiiJxtb5IM7Dve93jme2yhLC8CVyKVeo1F8jZZiwpIwPPOUjmv3HXSb jUcmTCAsCpUq8X4028WXSLBpUpRNhS/OldGU9M8A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, "Christian Brauner (Amutable)" Subject: [PATCH 7.1 289/438] binfmt_misc: use exe_file_deny_write_access() for the interpreter clone Date: Fri, 7 Aug 2026 16:38:05 +0200 Message-ID: <20260807143434.137367487@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260807143428.008222056@linuxfoundation.org> References: <20260807143428.008222056@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Christian Brauner commit fa5990ca8fd917003e526036bcc50413edb9722c upstream. For MISC_FMT_OPEN_FILE entries load_misc_binary() clones the registered interpreter file and denies write access to the clone via plain deny_write_access(). The clone is installed as bprm->interpreter and later released by the exec machinery through exe_file_allow_write_access() which skips the i_writecount increment for files with FMODE_FSNOTIFY_HSM set. The deny and allow side can therefore come to different conclusions when pre-content watches are in play: if a pre-content watch is added to the interpreter after registration every subsequent exec through that entry takes a write denial on the clone that is never paired with a write allowance, driving the interpreter inode's i_writecount further down with each exec and leaving the interpreter unwritable even after the entry and all its users are gone. Take the write denial via exe_file_deny_write_access() so both sides of the pairing base their decision on the same file mode, and propagate failure instead of silently ignoring it: an interpreter that is concurrently open for writing now fails the exec with ETXTBSY, exactly like an interpreter freshly opened via open_exec() would. Link: https://patch.msgid.link/20260710-work-binfmt_misc-locking-v3-2-a162f7cb58d6@kernel.org Fixes: 0357ef03c94e ("fs: don't block write during exec on pre-content watched files") Cc: stable@vger.kernel.org Signed-off-by: Christian Brauner (Amutable) Signed-off-by: Greg Kroah-Hartman --- fs/binfmt_misc.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) --- a/fs/binfmt_misc.c +++ b/fs/binfmt_misc.c @@ -249,8 +249,14 @@ static int load_misc_binary(struct linux if (fmt->flags & MISC_FMT_OPEN_FILE) { interp_file = file_clone_open(fmt->interp_file); - if (!IS_ERR(interp_file)) - deny_write_access(interp_file); + if (!IS_ERR(interp_file)) { + int err = exe_file_deny_write_access(interp_file); + + if (err) { + fput(interp_file); + interp_file = ERR_PTR(err); + } + } } else { interp_file = open_exec(fmt->interpreter); }