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 20DD844682B; Thu, 30 Jul 2026 16:10:40 +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=1785427841; cv=none; b=rpWtePaDjx1y7kHqYGke3vfUhnatqKYG07CvNKUtmnl7liFE3LbsTRV0egvJvClSZFsNuvXJ1VgkQwdTyUG3QuRCgCXyBrZ0CstpIvCYdtinvhwuLVXGbBt3Je0d8y0qyrgPuN6G7nzSQlYMqHVuyp0sSsBzwrOEomWlmtYaV8U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785427841; c=relaxed/simple; bh=GtzBCeWD7qRcSg9TuS6hewfW/0Ncg9zp+nHfoF42aB8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=R464TbznAWO8723BvQnuDy6A5/+8Say/NpaLWC6febJr8NwSzeehbhM7cZj+wUjs2H9Mc4d9Rcf/aXoQWZmEbH5UBLtcy8JmeTqADNb1nIHyMbV64aB6dhbDtJWav0mlz7/BdbLDSH3hfnF6cVwPAjunNhAdiTazHpmUIgUOEBM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=cLfPx0Eg; 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="cLfPx0Eg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7CF2A1F000E9; Thu, 30 Jul 2026 16:10:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785427840; bh=Q83png9EnBBkYz2XdI7Sj7/SK5TNcgNnLeovxPnl6g4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=cLfPx0Eg4wh8Xeh0iFeG0zOcPUIQzgIGhbh7tVwQPvh60ngfqreXWWgNQjdoOlkI3 h1GeQjwXHxl08uzt+D5IVmLH7tx0NEG4aWfvab3lz8dr9fAtFUEVUEc0Luc6VnJWSS u9GyXZ/BR0c19U8cHM+U7GI5854fcZ3XqHFQ5Dmw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jori Koolstra , "Christian Brauner (Amutable)" Subject: [PATCH 6.6 311/484] binfmt_elf_fdpic: only honour the first PT_INTERP Date: Thu, 30 Jul 2026 16:13:28 +0200 Message-ID: <20260730141430.244233888@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141423.392222816@linuxfoundation.org> References: <20260730141423.392222816@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 6.6-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;