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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 03617C433F5 for ; Thu, 11 Nov 2021 16:00:15 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 65B7761247 for ; Thu, 11 Nov 2021 16:00:14 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 65B7761247 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id AB2E883A5F; Thu, 11 Nov 2021 17:00:10 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="oPjl55wU"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 773CF83A5A; Thu, 11 Nov 2021 17:00:05 +0100 (CET) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 995E28371F for ; Thu, 11 Nov 2021 16:59:58 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=kabel@kernel.org Received: by mail.kernel.org (Postfix) with ESMTPSA id 42A1961241; Thu, 11 Nov 2021 15:59:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1636646397; bh=2ZVUE0L/occbuXAMZVKENB2KfzDdnLMbM1VUTYnm2Oo=; h=From:To:Cc:Subject:Date:From; b=oPjl55wUChAngzUKvFQX84lSqZgRk90B2DyUJ4ss2e51WI9CSgOE0ZWWWL9D56KPD 4N3FVa+7oYPuFaHWKsio5nz3n5DaGOhlQCpEbdp6dzUA2zTXA7Lwkdo4E3CeJQafcB DN0zoo7PQ+JBjY14Q0Stg/mqlYeE/C0RtfCMYfIMmng4FjM/CommbyNms8Cb+zPxXM nFn6Hxx95ivSV6Jm8pVibkTN3mJeiQcOkJ5EsC/LBQPNrwc0qmWC/Mh1TKIF7WMl9g K2r0iMYxbEfMmd1fJ3Jg1GcCmH4IPSz+4SIgVwqon2/4I8uNjjUndMFytD7jlmqisK 4YGMtkPz4B9XA== From: =?UTF-8?q?Marek=20Beh=C3=BAn?= To: Stefan Roese Cc: u-boot@lists.denx.de, =?UTF-8?q?Pali=20Roh=C3=A1r?= , =?UTF-8?q?Marek=20Beh=C3=BAn?= Subject: [PATCH u-boot-marvell 0/5] More verifications for kwbimage in SPL Date: Thu, 11 Nov 2021 16:59:48 +0100 Message-Id: <20211111155953.31526-1-kabel@kernel.org> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean From: Marek Behún Hello Stefan, this series adds more checks for kwbimage validity and consistency to SPL, mainly checking image data checksum. Marek Pali Rohár (5): arm: mvebu: Check that kwbimage offset and blocksize are valid SPL: Add struct spl_boot_device parameter into spl_parse_board_header() arm: mvebu: Check that kwbimage blockid matches boot mode SPL: Add support for checking board / BootROM specific image types arm: mvebu: Check for kwbimage data checksum arch/arm/mach-mvebu/spl.c | 71 +++++++++++++++++++++++++---- arch/arm/mach-sunxi/spl_spi_sunxi.c | 2 +- common/spl/spl.c | 13 +++++- common/spl/spl_ext.c | 9 ++-- common/spl/spl_fat.c | 11 +++-- common/spl/spl_legacy.c | 3 +- common/spl/spl_mmc.c | 43 ++++++++++------- common/spl/spl_nand.c | 5 +- common/spl/spl_net.c | 2 +- common/spl/spl_nor.c | 4 +- common/spl/spl_onenand.c | 2 +- common/spl/spl_ram.c | 2 +- common/spl/spl_sata.c | 9 ++-- common/spl/spl_sdp.c | 2 +- common/spl/spl_spi.c | 9 ++-- common/spl/spl_ubi.c | 4 +- common/spl/spl_usb.c | 4 +- common/spl/spl_xip.c | 4 +- common/spl/spl_ymodem.c | 4 +- drivers/usb/gadget/f_sdp.c | 12 +++-- include/sdp.h | 3 +- include/spl.h | 7 +++ 22 files changed, 160 insertions(+), 65 deletions(-) -- 2.32.0