mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-05-14 21:38:46 +02:00
499d2d2f4c
The TCG Opal device could enter a state where no new session can be created, blocking even Discovery or PSID reset. While a power cycle or waiting for the timeout should work, there is another possibility for recovery: using the Stack Reset command. The Stack Reset command is defined in the TCG Storage Architecture Core Specification and is mandatory for all Opal devices (see Section 3.3.6 of the Opal SSC specification). This patch implements the Stack Reset command. Sending it should clear all active sessions immediately, allowing subsequent commands to run successfully. While it is a TCG transport layer command, the Linux kernel implements only Opal ioctls, so it makes sense to use the IOC_OPAL ioctl interface. The Stack Reset takes no arguments; the response can be success or pending. If the command reports a pending state, userspace can try to repeat it; in this case, the code returns -EBUSY. Signed-off-by: Milan Broz <gmazyland@gmail.com> Reviewed-by: Ondrej Kozina <okozina@redhat.com> Link: https://patch.msgid.link/20260310095349.411287-1-gmazyland@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
87 lines
2.1 KiB
C
87 lines
2.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright © 2016 Intel Corporation
|
|
*
|
|
* Authors:
|
|
* Rafael Antognolli <rafael.antognolli@intel.com>
|
|
* Scott Bauer <scott.bauer@intel.com>
|
|
*/
|
|
|
|
#ifndef LINUX_OPAL_H
|
|
#define LINUX_OPAL_H
|
|
|
|
#include <uapi/linux/sed-opal.h>
|
|
#include <linux/compiler_types.h>
|
|
#include <linux/types.h>
|
|
|
|
struct opal_dev;
|
|
|
|
typedef int (sec_send_recv)(void *data, u16 spsp, u8 secp, void *buffer,
|
|
size_t len, bool send);
|
|
|
|
#ifdef CONFIG_BLK_SED_OPAL
|
|
void free_opal_dev(struct opal_dev *dev);
|
|
bool opal_unlock_from_suspend(struct opal_dev *dev);
|
|
struct opal_dev *init_opal_dev(void *data, sec_send_recv *send_recv);
|
|
int sed_ioctl(struct opal_dev *dev, unsigned int cmd, void __user *ioctl_ptr);
|
|
|
|
#define OPAL_AUTH_KEY "opal-boot-pin"
|
|
#define OPAL_AUTH_KEY_PREV "opal-boot-pin-prev"
|
|
|
|
static inline bool is_sed_ioctl(unsigned int cmd)
|
|
{
|
|
switch (cmd) {
|
|
case IOC_OPAL_SAVE:
|
|
case IOC_OPAL_LOCK_UNLOCK:
|
|
case IOC_OPAL_TAKE_OWNERSHIP:
|
|
case IOC_OPAL_ACTIVATE_LSP:
|
|
case IOC_OPAL_SET_PW:
|
|
case IOC_OPAL_ACTIVATE_USR:
|
|
case IOC_OPAL_REVERT_TPR:
|
|
case IOC_OPAL_LR_SETUP:
|
|
case IOC_OPAL_ADD_USR_TO_LR:
|
|
case IOC_OPAL_ENABLE_DISABLE_MBR:
|
|
case IOC_OPAL_ERASE_LR:
|
|
case IOC_OPAL_SECURE_ERASE_LR:
|
|
case IOC_OPAL_PSID_REVERT_TPR:
|
|
case IOC_OPAL_MBR_DONE:
|
|
case IOC_OPAL_WRITE_SHADOW_MBR:
|
|
case IOC_OPAL_GENERIC_TABLE_RW:
|
|
case IOC_OPAL_GET_STATUS:
|
|
case IOC_OPAL_GET_LR_STATUS:
|
|
case IOC_OPAL_GET_GEOMETRY:
|
|
case IOC_OPAL_DISCOVERY:
|
|
case IOC_OPAL_REVERT_LSP:
|
|
case IOC_OPAL_SET_SID_PW:
|
|
case IOC_OPAL_REACTIVATE_LSP:
|
|
case IOC_OPAL_LR_SET_START_LEN:
|
|
case IOC_OPAL_ENABLE_DISABLE_LR:
|
|
case IOC_OPAL_GET_SUM_STATUS:
|
|
case IOC_OPAL_STACK_RESET:
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
#else
|
|
static inline void free_opal_dev(struct opal_dev *dev)
|
|
{
|
|
}
|
|
|
|
static inline bool is_sed_ioctl(unsigned int cmd)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
static inline int sed_ioctl(struct opal_dev *dev, unsigned int cmd,
|
|
void __user *ioctl_ptr)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline bool opal_unlock_from_suspend(struct opal_dev *dev)
|
|
{
|
|
return false;
|
|
}
|
|
#define init_opal_dev(data, send_recv) NULL
|
|
#endif /* CONFIG_BLK_SED_OPAL */
|
|
#endif /* LINUX_OPAL_H */
|