mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
3c13e2ac74
Add nfit_test support for DSM functions "Get Security State", "Set Passphrase", "Disable Passphrase", "Unlock Unit", "Freeze Lock", and "Secure Erase" for the fake DIMMs. Also adding a sysfs knob in order to put the DIMMs in "locked" state. The order of testing DIMM unlocking would be. 1a. Disable DIMM X. 1b. Set Passphrase to DIMM X. 2. Write to /sys/devices/platform/nfit_test.0/nfit_test_dimm/test_dimmX/lock_dimm 3. Renable DIMM X 4. Check DIMM X state via sysfs "security" attribute for nmemX. Signed-off-by: Dave Jiang <dave.jiang@intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright Intel Corp. 2018 */
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/moduleparam.h>
|
|
#include <linux/nd.h>
|
|
#include "pmem.h"
|
|
#include "pfn.h"
|
|
#include "nd.h"
|
|
#include "nd-core.h"
|
|
|
|
ssize_t security_show(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct nvdimm *nvdimm = to_nvdimm(dev);
|
|
|
|
/*
|
|
* For the test version we need to poll the "hardware" in order
|
|
* to get the updated status for unlock testing.
|
|
*/
|
|
nvdimm->sec.state = nvdimm_security_state(nvdimm, false);
|
|
nvdimm->sec.ext_state = nvdimm_security_state(nvdimm, true);
|
|
|
|
switch (nvdimm->sec.state) {
|
|
case NVDIMM_SECURITY_DISABLED:
|
|
return sprintf(buf, "disabled\n");
|
|
case NVDIMM_SECURITY_UNLOCKED:
|
|
return sprintf(buf, "unlocked\n");
|
|
case NVDIMM_SECURITY_LOCKED:
|
|
return sprintf(buf, "locked\n");
|
|
case NVDIMM_SECURITY_FROZEN:
|
|
return sprintf(buf, "frozen\n");
|
|
case NVDIMM_SECURITY_OVERWRITE:
|
|
return sprintf(buf, "overwrite\n");
|
|
default:
|
|
return -ENOTTY;
|
|
}
|
|
|
|
return -ENOTTY;
|
|
}
|
|
|