From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3D80CCA9EC4 for ; Tue, 29 Oct 2019 17:39:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1787721479 for ; Tue, 29 Oct 2019 17:39:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572370744; bh=TZP5RGLTh46FKw2IHMHKaCfLhrDgBMwi+Av69vqWVBI=; h=From:To:Cc:Subject:Date:List-ID:From; b=MxK3SJzk9WAS0kOyhUgq49MfIKKc6/0y7AYwEWMzFGEfhYNB2+eGaBu0k/45vCX3a RUVGVVfB9Xxs6QfrCBUQ/KgrSDDux4SXn8YDsLDAqkKduU37FzWvw9Es7BXKXQHsSO LGY23YPI1Ac+jgFlDRK5JAZGix4C5NMAlfGstqyg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728052AbfJ2RjD (ORCPT ); Tue, 29 Oct 2019 13:39:03 -0400 Received: from mail.kernel.org ([198.145.29.99]:52974 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726068AbfJ2RjC (ORCPT ); Tue, 29 Oct 2019 13:39:02 -0400 Received: from e123331-lin.home (lfbn-mar-1-643-104.w90-118.abo.wanadoo.fr [90.118.215.104]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 4650920679; Tue, 29 Oct 2019 17:38:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572370741; bh=TZP5RGLTh46FKw2IHMHKaCfLhrDgBMwi+Av69vqWVBI=; h=From:To:Cc:Subject:Date:From; b=xI/+BecBR5HnXNvy8BbJdxAEdOyoAxaUe6muUdJJM9yVStcxohIbweKxu1OlpumIl pyquMZCS2cdeQViNLLKqF5YTPMZm8x1fgKVykCXm2uXesKHHH0UsHy3yex+NsYlBuL rgzZ/rypjQ2EmSB39WLO8+mRVsRy0kWA1u7UmXuM= From: Ard Biesheuvel To: linux-efi@vger.kernel.org, Ingo Molnar , Thomas Gleixner Cc: Ard Biesheuvel , Ard Biesheuvel , linux-kernel@vger.kernel.org, Chester Lin , Dan Carpenter , Dominik Brodowski , Geert Uytterhoeven , Geert Uytterhoeven , Guillaume Gardet , Jarkko Sakkinen , Javier Martinez Canillas , Jerry Snitselaar , Kairui Song , Laszlo Ersek , Matthew Garrett , Narendra K Subject: [GIT PULL v2 0/6] EFI fixes for v5.4 Date: Tue, 29 Oct 2019 18:37:49 +0100 Message-Id: <20191029173755.27149-1-ardb@kernel.org> X-Mailer: git-send-email 2.17.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Ingo, Thomas, The v1 of this pull request/series was sent out last Wednesday, and appears to have slipped through the cracks. This is actually for the better, given that I had overlooked a patch that I had queued in the wrong place, so I have included it now for this v2. Thanks, Ard. The following changes since commit 7d194c2100ad2a6dded545887d02754948ca5241: Linux 5.4-rc4 (2019-10-20 15:56:22 -0400) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git tags/efi-urgent for you to fetch changes up to 8a1022da89857a21556eb04f53d281eda94ef02d: efi/efi_test: lock down /dev/efi_test and require CAP_SYS_ADMIN (2019-10-29 10:30:18 +0100) ---------------------------------------------------------------- Some more fixes for the EFI subsystem: - Prevent boot problems on HyperV due to incorrect placement of the kernel - Classify UEFI randomness as bootloader randomness - Fix EFI boot for the Raspberry Pi2 running U-boot - A capability/lockdown fix for the efi_test module. - Some more odd fixes. ---------------------------------------------------------------- Ard Biesheuvel (1): efi: libstub/arm: account for firmware reserved memory at the base of RAM Dominik Brodowski (1): efi/random: treat EFI_RNG_PROTOCOL output as bootloader randomness Javier Martinez Canillas (1): efi/efi_test: lock down /dev/efi_test and require CAP_SYS_ADMIN Jerry Snitselaar (1): efi/tpm: return -EINVAL when determining tpm final events log size fails Kairui Song (1): x86, efi: never relocate kernel below lowest acceptable address Narendra K (1): efi: Make CONFIG_EFI_RCI2_TABLE selectable on x86 only arch/x86/boot/compressed/eboot.c | 4 +++- drivers/firmware/efi/Kconfig | 1 + drivers/firmware/efi/efi.c | 2 +- drivers/firmware/efi/libstub/Makefile | 1 + drivers/firmware/efi/libstub/arm32-stub.c | 16 +++++++++++++--- drivers/firmware/efi/libstub/efi-stub-helper.c | 24 ++++++++++-------------- drivers/firmware/efi/test/efi_test.c | 8 ++++++++ drivers/firmware/efi/tpm.c | 1 + include/linux/efi.h | 18 ++++++++++++++++-- include/linux/security.h | 1 + security/lockdown/lockdown.c | 1 + 11 files changed, 56 insertions(+), 21 deletions(-)