Blame SPECS/shim-unsigned-x64.spec

5b2885
%global pesign_vre 0.106-1
5ba940
%global gnuefi_vre 1:3.0.5-6
5b2885
%global openssl_vre 1.0.2j
5b2885
5ba940
%global debug_package %{nil}
5ba940
%global __debug_package 1
5ba940
%global _binaries_in_noarch_packages_terminate_build 0
5ba940
%global __debug_install_post %{SOURCE100} x64 ia32
5ba940
%undefine _debuginfo_subpackages
5ba940
5b2885
%global efidir %(eval echo $(grep ^ID= /etc/os-release | sed -e 's/^ID=//' -e 's/rhel/redhat/'))
5b2885
%global shimrootdir %{_datadir}/shim/
5b2885
%global shimversiondir %{shimrootdir}/%{version}-%{release}
5b2885
%global efiarch x64
5b2885
%global shimdir %{shimversiondir}/%{efiarch}
5b2885
%global efialtarch ia32
5b2885
%global shimaltdir %{shimversiondir}/%{efialtarch}
5b2885
5b2885
Name:		shim-unsigned-%{efiarch}
5ba940
Version:	15.6
4b328f
Release:	1.el8
5b2885
Summary:	First-stage UEFI bootloader
5b2885
ExclusiveArch:	x86_64
5b2885
License:	BSD
5b2885
URL:		https://github.com/rhboot/shim
5b2885
Source0:	https://github.com/rhboot/shim/releases/download/%{version}/shim-%{version}.tar.bz2
d1e1c8
Source1:	redhatsecurebootca5.cer
5ba940
# currently here's what's in our dbx:
5ba940
# nothing.
5ba940
Source2:	dbx.esl
13952a
Source3:	sbat.redhat.csv
5ba940
Source4:	shim.patches
5b2885
5b2885
Source100:	shim-find-debuginfo.sh
5b2885
5ba940
%include %{SOURCE4}
5ba940
13952a
BuildRequires:	gcc make
5b2885
BuildRequires:	elfutils-libelf-devel
5b2885
BuildRequires:	git openssl-devel openssl
5b2885
BuildRequires:	pesign >= %{pesign_vre}
13952a
BuildRequires:	dos2unix findutils
5b2885
5b2885
# Shim uses OpenSSL, but cannot use the system copy as the UEFI ABI is not
5b2885
# compatible with SysV (there's no red zone under UEFI) and there isn't a
5b2885
# POSIX-style C library.
5b2885
# BuildRequires:	OpenSSL
5b2885
Provides:	bundled(openssl) = %{openssl_vre}
5b2885
5b2885
%global desc \
5b2885
Initial UEFI bootloader that handles chaining to a trusted full \
5b2885
bootloader under secure boot environments.
5b2885
%global debug_desc \
5b2885
This package provides debug information for package %{expand:%%{name}} \
5b2885
Debug information is useful when developing applications that \
5b2885
use this package or when debugging this package.
5b2885
5b2885
%description
5b2885
%desc
5b2885
5b2885
%package -n shim-unsigned-%{efialtarch}
5b2885
Summary:	First-stage UEFI bootloader (unsigned data)
5b2885
Provides:	bundled(openssl) = %{openssl_vre}
5b2885
5b2885
%description -n shim-unsigned-%{efialtarch}
5b2885
%desc
5b2885
5b2885
%package debuginfo
5b2885
Summary:	Debug information for shim-unsigned-%{efiarch}
4b328f
Requires:	%{name}-debugsource = %{version}-%{release}
5b2885
Group:		Development/Debug
5b2885
AutoReqProv:	0
5b2885
BuildArch:	noarch
5b2885
5b2885
%description debuginfo
5b2885
%debug_desc
5b2885
5b2885
%package -n shim-unsigned-%{efialtarch}-debuginfo
5b2885
Summary:	Debug information for shim-unsigned-%{efialtarch}
5b2885
Group:		Development/Debug
4b328f
Requires:	%{name}-debugsource = %{version}-%{release}
5b2885
AutoReqProv:	0
5b2885
BuildArch:	noarch
5b2885
5b2885
%description -n shim-unsigned-%{efialtarch}-debuginfo
5b2885
%debug_desc
5b2885
5b2885
%package debugsource
5b2885
Summary:	Debug Source for shim-unsigned
5b2885
Group:		Development/Debug
5b2885
AutoReqProv:	0
5b2885
BuildArch:	noarch
5b2885
5b2885
%description debugsource
5b2885
%debug_desc
5b2885
5b2885
%prep
5ba940
%autosetup -S git_am -n shim-%{version}
5b2885
git config --unset user.email
5b2885
git config --unset user.name
5b2885
mkdir build-%{efiarch}
5b2885
mkdir build-%{efialtarch}
13952a
cp %{SOURCE3} data/
5b2885
5b2885
%build
5b2885
COMMITID=$(cat commit)
5b2885
MAKEFLAGS="TOPDIR=.. -f ../Makefile COMMITID=${COMMITID} "
5b2885
MAKEFLAGS+="EFIDIR=%{efidir} PKGNAME=shim RELEASE=%{release} "
13952a
MAKEFLAGS+="ENABLE_SHIM_HASH=true "
5b2885
MAKEFLAGS+="%{_smp_mflags}"
4b328f
if [ -s "%{SOURCE1}" ]; then
5b2885
	MAKEFLAGS="$MAKEFLAGS VENDOR_CERT_FILE=%{SOURCE1}"
5b2885
fi
4b328f
if [ -s "%{SOURCE2}" ]; then
5b2885
	MAKEFLAGS="$MAKEFLAGS VENDOR_DBX_FILE=%{SOURCE2}"
5b2885
fi
5b2885
5b2885
cd build-%{efiarch}
5ba940
make ${MAKEFLAGS} \
5ba940
	DEFAULT_LOADER='\\\\grub%{efiarch}.efi' \
5ba940
	all
5b2885
cd ..
5b2885
5b2885
cd build-%{efialtarch}
5ba940
setarch linux32 -B make ${MAKEFLAGS} ARCH=%{efialtarch} \
5ba940
	DEFAULT_LOADER='\\\\grub%{efialtarch}.efi' \
5ba940
	all
5b2885
cd ..
5b2885
5b2885
%install
5b2885
COMMITID=$(cat commit)
5b2885
MAKEFLAGS="TOPDIR=.. -f ../Makefile COMMITID=${COMMITID} "
5b2885
MAKEFLAGS+="EFIDIR=%{efidir} PKGNAME=shim RELEASE=%{release} "
5ba940
MAKEFLAGS+="ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true "
4b328f
if [ -s "%{SOURCE1}" ]; then
5b2885
	MAKEFLAGS="$MAKEFLAGS VENDOR_CERT_FILE=%{SOURCE1}"
5b2885
fi
4b328f
if [ -s "%{SOURCE2}" ]; then
5b2885
	MAKEFLAGS="$MAKEFLAGS VENDOR_DBX_FILE=%{SOURCE2}"
5b2885
fi
5b2885
5b2885
cd build-%{efiarch}
5b2885
make ${MAKEFLAGS} \
5b2885
	DEFAULT_LOADER='\\\\grub%{efiarch}.efi' \
5b2885
	DESTDIR=${RPM_BUILD_ROOT} \
5b2885
	install-as-data install-debuginfo install-debugsource
5b2885
cd ..
5b2885
5b2885
cd build-%{efialtarch}
4b328f
setarch linux32 make ${MAKEFLAGS} ARCH=%{efialtarch} \
5b2885
	DEFAULT_LOADER='\\\\grub%{efialtarch}.efi' \
5b2885
	DESTDIR=${RPM_BUILD_ROOT} \
5b2885
	install-as-data install-debuginfo install-debugsource
5b2885
cd ..
5b2885
5b2885
%files
5b2885
%license COPYRIGHT
5b2885
%dir %{shimrootdir}
5b2885
%dir %{shimversiondir}
5b2885
%dir %{shimdir}
5ba940
%{shimdir}/*.CSV
5b2885
%{shimdir}/*.efi
5b2885
%{shimdir}/*.hash
5b2885
5b2885
%files -n shim-unsigned-%{efialtarch}
5b2885
%license COPYRIGHT
5b2885
%dir %{shimrootdir}
5b2885
%dir %{shimversiondir}
5b2885
%dir %{shimaltdir}
5ba940
%{shimaltdir}/*.CSV
5b2885
%{shimaltdir}/*.efi
5b2885
%{shimaltdir}/*.hash
5b2885
5b2885
%files debuginfo -f build-%{efiarch}/debugfiles.list
5b2885
5b2885
%files -n shim-unsigned-%{efialtarch}-debuginfo -f build-%{efialtarch}/debugfiles.list
5b2885
5b2885
%files debugsource -f build-%{efiarch}/debugsource.list
5b2885
5b2885
%changelog
5ba940
* Wed Jun 01 2022 Peter Jones <pjones@redhat.com> - 15.6-1.el8
5ba940
- Update to shim-15.6
5ba940
  Resolves: CVE-2022-28737
4b328f
4b328f
* Thu Sep 17 2020 Peter Jones <pjones@redhat.com> - 15-9.el8
4b328f
- Fix an incorrect allocation size.
4b328f
  Related: rhbz#1877253
4b328f
4b328f
* Thu Jul 30 2020 Peter Jones <pjones@redhat.com> - 15-8
4b328f
- Fix a load-address-dependent forever loop.
4b328f
  Resolves: rhbz#1861977
4b328f
  Related: CVE-2020-10713
4b328f
  Related: CVE-2020-14308
4b328f
  Related: CVE-2020-14309
4b328f
  Related: CVE-2020-14310
4b328f
  Related: CVE-2020-14311
4b328f
  Related: CVE-2020-15705
4b328f
  Related: CVE-2020-15706
4b328f
  Related: CVE-2020-15707
4b328f
4b328f
* Sat Jul 25 2020 Peter Jones <pjones@redhat.com> - 15-7
4b328f
- Implement Lenny's workaround
4b328f
  Related: CVE-2020-10713
4b328f
  Related: CVE-2020-14308
4b328f
  Related: CVE-2020-14309
4b328f
  Related: CVE-2020-14310
4b328f
  Related: CVE-2020-14311
4b328f
4b328f
* Fri Jul 24 2020 Peter Jones <pjones@redhat.com> - 15-5
4b328f
- Once more with the MokListRT config table patch added.
4b328f
  Related: CVE-2020-10713
4b328f
  Related: CVE-2020-14308
4b328f
  Related: CVE-2020-14309
4b328f
  Related: CVE-2020-14310
4b328f
  Related: CVE-2020-14311
4b328f
4b328f
* Thu Jul 23 2020 Peter Jones <pjones@redhat.com> - 15-4
4b328f
- Rebuild for bug fixes and new signing keys
4b328f
  Related: CVE-2020-10713
4b328f
  Related: CVE-2020-14308
4b328f
  Related: CVE-2020-14309
4b328f
  Related: CVE-2020-14310
4b328f
  Related: CVE-2020-14311
d1e1c8
d1e1c8
* Wed Jun 05 2019 Javier Martinez Canillas <javierm@redhat.com> - 15-3
d1e1c8
- Make EFI variable copying fatal only on secureboot enabled systems
d1e1c8
  Resolves: rhbz#1715878
d1e1c8
- Fix booting shim from an EFI shell using a relative path
d1e1c8
  Resolves: rhbz#1717064
64d7ab
5b2885
* Tue Feb 12 2019 Peter Jones <pjones@redhat.com> - 15-2
5b2885
- Fix MoK mirroring issue which breaks kdump without intervention
5b2885
  Related: rhbz#1668966
5b2885
5b2885
* Fri Jul 20 2018 Peter Jones <pjones@redhat.com> - 15-1
5b2885
- Update to shim 15
5b2885
5b2885
* Tue Sep 19 2017 Peter Jones <pjones@redhat.com> - 13-3
5b2885
- Actually update to the *real* 13 final.
5b2885
  Related: rhbz#1489604
5b2885
5b2885
* Thu Aug 31 2017 Peter Jones <pjones@redhat.com> - 13-2
5b2885
- Actually update to 13 final.
5b2885
5b2885
* Fri Aug 18 2017 Peter Jones <pjones@redhat.com> - 13-1
5b2885
- Make a new shim-unsigned-x64 package like the shim-unsigned-aarch64 one.
5b2885
- This will (eventually) supersede what's in the "shim" package so we can
5b2885
  make "shim" hold the signed one, which will confuse fewer people.