From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Al Cooper" Subject: [PATCH 0/7] Add password protected lock/unlock support for SD/MMC Date: Tue, 13 Aug 2013 11:21:23 -0400 Message-ID: <1376407290-21477-1-git-send-email-alcooperx@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: Received: from mms1.broadcom.com ([216.31.210.17]:2852 "EHLO mms1.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757793Ab3HMPWO (ORCPT ); Tue, 13 Aug 2013 11:22:14 -0400 Sender: linux-mmc-owner@vger.kernel.org List-Id: linux-mmc@vger.kernel.org To: cjb@laptop.org, linux-mmc@vger.kernel.org Cc: Al Cooper This set of patches adds support for password protected locking and unlocking of MMC and SD devices. It uses the LOCK/UNLOCK command (CMD42) available in both the MMC and SD command sets. Some of this code was based on a patch set submitted in 2006 by Anderson Briglia "Add MMC Password Protection (lock/unlock)". This patch set never made it into mainline. By default, a card with no password assigned is always in "unlocked" state. After password assignment, in the next power cycle the card switches to a "locked" state where only the "basic" and "lock card" command classes are accepted by the card. Only after unlocking it with the correct password can the card be used for normal operations like block I/O. Password management and caching is done through the "Kernel Key Retention Service" mechanism and the sysfs filesystem. Two new sysfs attributes were added. The "lock" attribute is used to lock, unlock, assign a password, clear a password and force erase a card. The "unlock_retry" attribute is used to retry an unlock that failed during boot because the rootfs was not yet available with the password. Al Cooper (7): mmc: lock: Use the kernel "KEYS" subsystem to get a card's password mmc: lock: Add low level LOCK_UNLOCK command mmc: lock: Add funtion to unlock a password locked card mmc: lock: Add card lock/unlock maintenance commands mmc: lock: Change SD init functionality to handle locked SD cards mmc: lock: Prevent partition table read for locked cards. mmc: lock: Change MMC init to handle locked cards. drivers/mmc/card/block.c | 7 +++ drivers/mmc/core/Kconfig | 8 +++ drivers/mmc/core/core.c | 114 +++++++++++++++++++++++++++++++++++++ drivers/mmc/core/core.h | 20 ++++++- drivers/mmc/core/mmc.c | 124 ++++++++++++++++++++++++++++++++++++++++ drivers/mmc/core/mmc_ops.c | 112 ++++++++++++++++++++++++++++++++++++ drivers/mmc/core/mmc_ops.h | 13 +++++ drivers/mmc/core/sd.c | 138 +++++++++++++++++++++++++++++++++------------ include/linux/mmc/card.h | 6 ++ 9 files changed, 505 insertions(+), 37 deletions(-) -- 1.8.1.3