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 9DF5B3793A9; Thu, 30 Jul 2026 14:50:34 +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=1785423035; cv=none; b=Nsn10imfehnBBRPX3yd7bkcrnufMwXZJwee6yNzQZnhUSECZyQa/WPfL9RsHOPhJpKkwK7IlsBe8xqe7sxZOA8LkfSjhGUZ0NOjPwCYobJcoTtOEByD5/AdxLJAgut1SW2AB0OU+wIOkhflr0RiBuUDvkNBJbVRtZ/XKMUwk72k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785423035; c=relaxed/simple; bh=BuWHtJ/6XkaVAGeG9yZSqWlaTIxiO1pVlomhfo1KSpM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=tn+kajdBx9SIMRCkwclZmKVfAH4weehUF3K1Cx+RfrCBvm8J/O08xXuIq0Htwk1gAGY9PxgaRbbnboNx3VeUH1uIaWUfQ+/HpuOUXwFVd+XlRP+I3y5OupVU0Cp9ofT7iJf77d95YA/f8EGNdsj3IR/WdMV/4yuTALtXSaVPzJs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=2g86LFdy; 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="2g86LFdy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EF9F71F000E9; Thu, 30 Jul 2026 14:50:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785423034; bh=whyRREDKZwAC4lPIUaNxx2XzCNNOHZzo3/GHWf6RptM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=2g86LFdyC9UtL0sJQEohsBKEAoD65J7Fmf7h8okUqykzIFFOTjTBA1kvFIgJhImk4 LTBPo0tarvBEkHfmsock0HAwCUCvY9EZqawKbutonfYisErrRLMgbO+PZbQVcSACBz Xqf6YBYXpnNaInJylcvcr989gW63aJr7hmlI/xxY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jori Koolstra , "Christian Brauner (Amutable)" Subject: [PATCH 7.1 641/744] binfmt_elf_fdpic: only honour the first PT_INTERP Date: Thu, 30 Jul 2026 16:15:14 +0200 Message-ID: <20260730141457.896130988@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141444.267951807@linuxfoundation.org> References: <20260730141444.267951807@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 3349ef6a366a61d631f6a263d12cea240957719d upstream. The program header scan handles PT_INTERP from a switch nested in the scan loop, so its break leaves the switch and not the loop. A binary carrying more than one PT_INTERP runs the case again and overwrites both interpreter_name and interpreter. The previous name allocation leaks and so does the previous interpreter reference, along with the write denial open_exec() took on it. The denial is never released, so the file stays unwritable for as long as the system runs. An unprivileged caller reaches this with a crafted binary and repeats it at will. binfmt_elf stops at the first PT_INTERP. Do the same here. The flaw dates back to the driver's introduction in the pre-git history tree introduced in v2.6.11 by 91808d6ebe39 ("[PATCH] FRV: Add FDPIC ELF binary format driver"). Link: https://patch.msgid.link/20260721-gezittert-medium-kreide-b41fc1f0277e@brauner Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Cc: stable@vger.kernel.org Reviewed-by: Jori Koolstra Signed-off-by: Christian Brauner (Amutable) Signed-off-by: Greg Kroah-Hartman --- fs/binfmt_elf_fdpic.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/fs/binfmt_elf_fdpic.c +++ b/fs/binfmt_elf_fdpic.c @@ -231,6 +231,10 @@ static int load_elf_fdpic_binary(struct for (i = 0; i < exec_params.hdr.e_phnum; i++, phdr++) { switch (phdr->p_type) { case PT_INTERP: + /* elf ABI allows only one interpreter */ + if (interpreter_name) + continue; + retval = -ENOMEM; if (phdr->p_filesz > PATH_MAX) goto error;