From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751823AbeCWBDq (ORCPT ); Thu, 22 Mar 2018 21:03:46 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:53634 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751670AbeCWBDp (ORCPT ); Thu, 22 Mar 2018 21:03:45 -0400 Date: Fri, 23 Mar 2018 09:03:34 +0800 From: Dave Young To: Philipp Rudo Cc: kexec@lists.infradead.org, linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org, Eric Biederman , Vivek Goyal , Michael Ellerman , Thiago Jung Bauermann , Martin Schwidefsky , Heiko Carstens , Andrew Morton , x86@kernel.org, AKASHI Takahiro , Ingo Molnar Subject: Re: [PATCH v2 00/11] kexec_file: Clean up purgatory load Message-ID: <20180323010334.GA2541@dhcp-128-65.nay.redhat.com> References: <20180321112751.22196-1-prudo@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180321112751.22196-1-prudo@linux.vnet.ibm.com> User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/21/18 at 12:27pm, Philipp Rudo wrote: > Hi everybody > > here is the updated patch set including Dave's comments. > > Changes v1 -> v2: > * Fix missing memcpy and memset definition in x86 purgatory > introduced by moving the sha256 implementation to common code. > * Update subject of patches #7-9 to be more precise. > * Add missing semicolon in patch #7 found by kbuild bot. > * Fix compile warnings found by kbuild bot by moving all kexec_file > specific function declarations into a 'ifdef CONFIG_KEXEC_FILE' > block (patch #5 and #10). > > Thanks > Philipp > Philipp, thanks for the V2, it looks good and works for me. Can you rebase the series on top of AKASHI's patches which has been taken by Andrew? > --- > > Hi everybody > > following the discussion with Dave and AKASHI, here are the common code > patches extracted from my recent patch set (Add kexec_file_load support to > s390) [1]. The patches were extracted to allow upstream integration together > with AKASHI's common code patches before the arch code gets adjusted to the > new base. > > The reason for this series is to prepare common code for adding > kexec_file_load to s390 as well as cleaning up the mis-use of the sh_offset > field during purgatory load. In detail this series contains: > > Patch #1&2: Minor cleanups/fixes. > > Patch #3-9: Clean up the purgatory load/relocation code. Especially remove > the mis-use of the purgatory_info->sechdrs->sh_offset field, currently > holding a pointer into either kexec_purgatory (ro) or purgatory_buf (rw) > depending on the section. With these patches the section address will be > calculated verbosely and sh_offset will contain the offset of the section > in the stripped purgatory binary (purgatory_buf). > > Patch #10: Allows architectures to set the purgatory load address. This > patch is important for s390 as the kernel and purgatory have to be loaded > to fixed addresses. In current code this is impossible as the purgatory > load is opaque to the architecture. > > Patch #11: Moves x86 purgatories sha implementation to common lib/ > directory to allow reuse in other architectures. > > The patches apply to v4.16-rc3. There are no changes compared to [1] (all > requested changes only affected s390 code). Please note that I had to touch > arch code for x86 and power a little. In theory this should not change the > behavior but I don't have a way to test it. Cross-compiling with > defconfig [2] works fine for both. > > Thanks > Philipp > > [1] http://lists.infradead.org/pipermail/kexec/2018-February/019926.html > [2] On x86 with the orc unwinder and stack validation turned off. objtool > SEGFAULTs on s390... > > Philipp Rudo (11): > kexec_file: Silence compile warnings > kexec_file: Remove checks in kexec_purgatory_load > kexec_file: Make purgatory_info->ehdr const > kexec_file: Search symbols in read-only kexec_purgatory > kexec_file: Use read-only sections in arch_kexec_apply_relocations* > kexec_file: Split up __kexec_load_puragory > kexec_file: Remove unneeded for-loop in kexec_purgatory_setup_sechdrs > kexec_file: Remove unneeded variables in kexec_purgatory_setup_sechdrs > kexec_file: Remove mis-use of sh_offset field during purgatory load > kexec_file: Allow archs to set purgatory load address > kexec_file: Move purgatories sha256 to common code > > arch/powerpc/kernel/kexec_elf_64.c | 9 +- > arch/x86/kernel/kexec-bzimage64.c | 8 +- > arch/x86/kernel/machine_kexec_64.c | 66 ++--- > arch/x86/purgatory/Makefile | 3 + > arch/x86/purgatory/purgatory.c | 2 +- > arch/x86/purgatory/string.c | 12 + > include/linux/kexec.h | 49 ++-- > {arch/x86/purgatory => include/linux}/sha256.h | 11 +- > kernel/kexec_file.c | 379 ++++++++++++------------- > {arch/x86/purgatory => lib}/sha256.c | 4 +- > 10 files changed, 267 insertions(+), 276 deletions(-) > rename {arch/x86/purgatory => include/linux}/sha256.h (62%) > rename {arch/x86/purgatory => lib}/sha256.c (99%) > > -- > 2.13.5 > Thanks Dave