From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 7D9CA25CC74 for ; Fri, 20 Mar 2026 18:21:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774030900; cv=none; b=hxajl6kxlkOJDvUT8kCRxT7DeXGue2LjfiP7YGrt6phCsMDy9ZvxVb5ENQheKx3H2naD22kuqiqKsaEo6joCaCgCG0zmmrt2CfozoCeHgd+K+Tb+YQWDVfti0EglLp+O6T+jaZ3So5lQ1nbErW2Dv+s/dbT1BJ+eg1Tg6W6d6Lg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774030900; c=relaxed/simple; bh=PJ3QRR2JxwKxOAlKG3VPDFmh8dvbMm8iDwOFgvUSfiA=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=SB/7vS67xEqHKyV0phkWlDXdiTMIm/aYA98qETkb4Rzvhy+eE/YaKg3UzZaYUkaf7FJqrPge8gppLriXecHeZDIFU9eUGgCsJrPQd378Gex2d7otv7eEKXcscGbB068dr2menlAae2e9JOIp+6uYnFl5DnZztowN0Bwkb8TZ0jI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=id/OEkVV; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="id/OEkVV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1C661C4CEF7; Fri, 20 Mar 2026 18:21:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1774030900; bh=PJ3QRR2JxwKxOAlKG3VPDFmh8dvbMm8iDwOFgvUSfiA=; h=Date:From:To:Cc:Subject:From; b=id/OEkVVMsTEpgp9sVWSX+FEQfgL38Tc29dZLXGTPfO5XOHC2Ns/PHH1IREokDKsQ HEDmerydl3DM2ruWJPtHooI1YAGdtLeot/4tbxnMEp8vt6PeXihwYgyDoJwaTMNh+U I3kwUgADe3TsCglPk0HHgOxscmY9EDdjhgDsT/XeRCY4QYIUDdDSTs7u0/e0IvSpZ+ lN98qJu/P0QhsZtTnG4Nrs3KlyHCFlZLFBFSFMvbfNSebg6y6wx87INfjla6cFmkF7 uHiBNQxausXNcVzS44n8xCDDb+p2BrFHD+6pT626vPy4x+ZQipnQ7/1m2pzGRMLkHG CWetth901//MQ== Date: Fri, 20 Mar 2026 11:21:39 -0700 From: Kees Cook To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Alexander Mikhalitsyn , Andrei Vagin , Cyrill Gorcunov , Guenter Roeck , Kees Cook , Mark Brown , Max Filippov , Michal =?iso-8859-1?Q?Koutn=FD?= Subject: [GIT PULL] execve fixes for v7.0-rc5 Message-ID: <202603201121.A7106CC79D@keescook> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Linus, Please pull these small execve fixes for v7.0-rc5. Thanks! -Kees The following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f: Linux 7.0-rc1 (2026-02-22 13:18:59 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git tags/execve-v7.0-rc5 for you to fetch changes up to c4192754e836e0ffed95833509b6ada975b74418: fs/tests: exec: Remove bad test vector (2026-03-18 11:41:53 -0700) ---------------------------------------------------------------- execve fixes for v7.0-rc5 - binfmt_elf_fdpic: fix AUXV size calculation (Andrei Vagin) - fs/tests: exec: Remove bad test vector ---------------------------------------------------------------- Andrei Vagin (1): binfmt_elf_fdpic: fix AUXV size calculation for ELF_HWCAP3 and ELF_HWCAP4 Kees Cook (1): fs/tests: exec: Remove bad test vector include/linux/auxvec.h | 2 +- fs/binfmt_elf_fdpic.c | 6 ++++++ fs/tests/exec_kunit.c | 3 --- 3 files changed, 7 insertions(+), 4 deletions(-) -- Kees Cook