blob: a570f2263a424e96908c559750454a086a3df3e2 [file] [log] [blame]
Dave Jiang4c6926a2018-12-06 12:40:01 -08001// SPDX-License-Identifier: GPL-2.0
2/* Copyright(c) 2018 Intel Corporation. All rights reserved. */
3
4#include <linux/module.h>
5#include <linux/device.h>
6#include <linux/ndctl.h>
7#include <linux/slab.h>
8#include <linux/io.h>
9#include <linux/mm.h>
10#include <linux/cred.h>
11#include <linux/key.h>
12#include <linux/key-type.h>
13#include <keys/user-type.h>
14#include <keys/encrypted-type.h>
15#include "nd-core.h"
16#include "nd.h"
17
Dave Jiangd2a4ac72018-12-07 13:29:09 -070018#define NVDIMM_BASE_KEY 0
19#define NVDIMM_NEW_KEY 1
20
Dave Jiang4c6926a2018-12-06 12:40:01 -080021static bool key_revalidate = true;
22module_param(key_revalidate, bool, 0444);
23MODULE_PARM_DESC(key_revalidate, "Require key validation at init.");
24
Dave Jiang037c8482019-03-27 11:10:44 -070025static const char zero_key[NVDIMM_PASSPHRASE_LEN];
26
Dave Jiang4c6926a2018-12-06 12:40:01 -080027static void *key_data(struct key *key)
28{
29 struct encrypted_key_payload *epayload = dereference_key_locked(key);
30
31 lockdep_assert_held_read(&key->sem);
32
33 return epayload->decrypted_data;
34}
35
36static void nvdimm_put_key(struct key *key)
37{
Dave Jiang64e77c82018-12-07 14:02:12 -070038 if (!key)
39 return;
40
Dave Jiang4c6926a2018-12-06 12:40:01 -080041 up_read(&key->sem);
42 key_put(key);
43}
44
45/*
46 * Retrieve kernel key for DIMM and request from user space if
47 * necessary. Returns a key held for read and must be put by
48 * nvdimm_put_key() before the usage goes out of scope.
49 */
50static struct key *nvdimm_request_key(struct nvdimm *nvdimm)
51{
52 struct key *key = NULL;
53 static const char NVDIMM_PREFIX[] = "nvdimm:";
54 char desc[NVDIMM_KEY_DESC_LEN + sizeof(NVDIMM_PREFIX)];
55 struct device *dev = &nvdimm->dev;
56
57 sprintf(desc, "%s%s", NVDIMM_PREFIX, nvdimm->dimm_id);
Linus Torvalds028db3e2019-07-10 18:43:43 -070058 key = request_key(&key_type_encrypted, desc, "");
Dave Jiang4c6926a2018-12-06 12:40:01 -080059 if (IS_ERR(key)) {
60 if (PTR_ERR(key) == -ENOKEY)
Dan Williams37379cf2018-12-22 11:35:41 -080061 dev_dbg(dev, "request_key() found no key\n");
Dave Jiang4c6926a2018-12-06 12:40:01 -080062 else
Dan Williams37379cf2018-12-22 11:35:41 -080063 dev_dbg(dev, "request_key() upcall failed\n");
Dave Jiang4c6926a2018-12-06 12:40:01 -080064 key = NULL;
65 } else {
66 struct encrypted_key_payload *epayload;
67
68 down_read(&key->sem);
69 epayload = dereference_key_locked(key);
70 if (epayload->decrypted_datalen != NVDIMM_PASSPHRASE_LEN) {
71 up_read(&key->sem);
72 key_put(key);
73 key = NULL;
74 }
75 }
76
77 return key;
78}
79
Dave Jiangd2e5b642019-03-27 11:12:45 -070080static const void *nvdimm_get_key_payload(struct nvdimm *nvdimm,
81 struct key **key)
82{
83 *key = nvdimm_request_key(nvdimm);
84 if (!*key)
85 return zero_key;
86
87 return key_data(*key);
88}
89
Dave Jiang03b65b22018-12-07 10:33:30 -070090static struct key *nvdimm_lookup_user_key(struct nvdimm *nvdimm,
Dave Jiangd2a4ac72018-12-07 13:29:09 -070091 key_serial_t id, int subclass)
Dave Jiang03b65b22018-12-07 10:33:30 -070092{
93 key_ref_t keyref;
94 struct key *key;
95 struct encrypted_key_payload *epayload;
96 struct device *dev = &nvdimm->dev;
97
98 keyref = lookup_user_key(id, 0, 0);
99 if (IS_ERR(keyref))
100 return NULL;
101
102 key = key_ref_to_ptr(keyref);
103 if (key->type != &key_type_encrypted) {
104 key_put(key);
105 return NULL;
106 }
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700107
Dave Jiang03b65b22018-12-07 10:33:30 -0700108 dev_dbg(dev, "%s: key found: %#x\n", __func__, key_serial(key));
109
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700110 down_read_nested(&key->sem, subclass);
Dave Jiang03b65b22018-12-07 10:33:30 -0700111 epayload = dereference_key_locked(key);
112 if (epayload->decrypted_datalen != NVDIMM_PASSPHRASE_LEN) {
113 up_read(&key->sem);
114 key_put(key);
115 key = NULL;
116 }
117 return key;
118}
119
Dave Jiangd2e5b642019-03-27 11:12:45 -0700120static const void *nvdimm_get_user_key_payload(struct nvdimm *nvdimm,
121 key_serial_t id, int subclass, struct key **key)
122{
123 *key = NULL;
124 if (id == 0) {
125 if (subclass == NVDIMM_BASE_KEY)
126 return zero_key;
127 else
128 return NULL;
129 }
130
131 *key = nvdimm_lookup_user_key(nvdimm, id, subclass);
132 if (!*key)
133 return NULL;
134
135 return key_data(*key);
136}
137
138
139static int nvdimm_key_revalidate(struct nvdimm *nvdimm)
Dave Jiang4c6926a2018-12-06 12:40:01 -0800140{
141 struct key *key;
142 int rc;
Dave Jiangd2e5b642019-03-27 11:12:45 -0700143 const void *data;
Dave Jiang4c6926a2018-12-06 12:40:01 -0800144
145 if (!nvdimm->sec.ops->change_key)
Dave Jiangd2e5b642019-03-27 11:12:45 -0700146 return -EOPNOTSUPP;
Dave Jiang4c6926a2018-12-06 12:40:01 -0800147
Dave Jiangd2e5b642019-03-27 11:12:45 -0700148 data = nvdimm_get_key_payload(nvdimm, &key);
Dave Jiang4c6926a2018-12-06 12:40:01 -0800149
150 /*
151 * Send the same key to the hardware as new and old key to
152 * verify that the key is good.
153 */
Dave Jiangd2e5b642019-03-27 11:12:45 -0700154 rc = nvdimm->sec.ops->change_key(nvdimm, data, data, NVDIMM_USER);
Dave Jiang4c6926a2018-12-06 12:40:01 -0800155 if (rc < 0) {
156 nvdimm_put_key(key);
Dave Jiangd2e5b642019-03-27 11:12:45 -0700157 return rc;
Dave Jiang4c6926a2018-12-06 12:40:01 -0800158 }
Dave Jiangd2e5b642019-03-27 11:12:45 -0700159
160 nvdimm_put_key(key);
161 nvdimm->sec.state = nvdimm_security_state(nvdimm, NVDIMM_USER);
162 return 0;
Dave Jiang4c6926a2018-12-06 12:40:01 -0800163}
164
165static int __nvdimm_security_unlock(struct nvdimm *nvdimm)
166{
167 struct device *dev = &nvdimm->dev;
168 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
Dave Jiangd2e5b642019-03-27 11:12:45 -0700169 struct key *key;
170 const void *data;
Dave Jiang4c6926a2018-12-06 12:40:01 -0800171 int rc;
172
173 /* The bus lock should be held at the top level of the call stack */
174 lockdep_assert_held(&nvdimm_bus->reconfig_mutex);
175
176 if (!nvdimm->sec.ops || !nvdimm->sec.ops->unlock
177 || nvdimm->sec.state < 0)
178 return -EIO;
179
Dave Jiang7d988092018-12-13 15:36:18 -0700180 if (test_bit(NDD_SECURITY_OVERWRITE, &nvdimm->flags)) {
Dan Williams37379cf2018-12-22 11:35:41 -0800181 dev_dbg(dev, "Security operation in progress.\n");
Dave Jiang7d988092018-12-13 15:36:18 -0700182 return -EBUSY;
183 }
184
Dave Jiang4c6926a2018-12-06 12:40:01 -0800185 /*
186 * If the pre-OS has unlocked the DIMM, attempt to send the key
187 * from request_key() to the hardware for verification. Failure
188 * to revalidate the key against the hardware results in a
189 * freeze of the security configuration. I.e. if the OS does not
190 * have the key, security is being managed pre-OS.
191 */
192 if (nvdimm->sec.state == NVDIMM_SECURITY_UNLOCKED) {
193 if (!key_revalidate)
194 return 0;
195
Dave Jiangd2e5b642019-03-27 11:12:45 -0700196 return nvdimm_key_revalidate(nvdimm);
Dave Jiang4c6926a2018-12-06 12:40:01 -0800197 } else
Dave Jiangd2e5b642019-03-27 11:12:45 -0700198 data = nvdimm_get_key_payload(nvdimm, &key);
Dave Jiang4c6926a2018-12-06 12:40:01 -0800199
Dave Jiangd2e5b642019-03-27 11:12:45 -0700200 rc = nvdimm->sec.ops->unlock(nvdimm, data);
Dave Jiang4c6926a2018-12-06 12:40:01 -0800201 dev_dbg(dev, "key: %d unlock: %s\n", key_serial(key),
202 rc == 0 ? "success" : "fail");
203
204 nvdimm_put_key(key);
Dave Jiang89fa9d82018-12-10 10:53:22 -0700205 nvdimm->sec.state = nvdimm_security_state(nvdimm, NVDIMM_USER);
Dave Jiang4c6926a2018-12-06 12:40:01 -0800206 return rc;
207}
208
209int nvdimm_security_unlock(struct device *dev)
210{
211 struct nvdimm *nvdimm = to_nvdimm(dev);
212 int rc;
213
214 nvdimm_bus_lock(dev);
215 rc = __nvdimm_security_unlock(nvdimm);
216 nvdimm_bus_unlock(dev);
217 return rc;
218}
Dave Jiang03b65b22018-12-07 10:33:30 -0700219
220int nvdimm_security_disable(struct nvdimm *nvdimm, unsigned int keyid)
221{
222 struct device *dev = &nvdimm->dev;
223 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
224 struct key *key;
225 int rc;
Dave Jiangd2e5b642019-03-27 11:12:45 -0700226 const void *data;
Dave Jiang03b65b22018-12-07 10:33:30 -0700227
228 /* The bus lock should be held at the top level of the call stack */
229 lockdep_assert_held(&nvdimm_bus->reconfig_mutex);
230
231 if (!nvdimm->sec.ops || !nvdimm->sec.ops->disable
232 || nvdimm->sec.state < 0)
233 return -EOPNOTSUPP;
234
235 if (nvdimm->sec.state >= NVDIMM_SECURITY_FROZEN) {
Dan Williams37379cf2018-12-22 11:35:41 -0800236 dev_dbg(dev, "Incorrect security state: %d\n",
Dave Jiang03b65b22018-12-07 10:33:30 -0700237 nvdimm->sec.state);
238 return -EIO;
239 }
240
Dave Jiang7d988092018-12-13 15:36:18 -0700241 if (test_bit(NDD_SECURITY_OVERWRITE, &nvdimm->flags)) {
Dan Williams37379cf2018-12-22 11:35:41 -0800242 dev_dbg(dev, "Security operation in progress.\n");
Dave Jiang7d988092018-12-13 15:36:18 -0700243 return -EBUSY;
244 }
245
Dave Jiangd2e5b642019-03-27 11:12:45 -0700246 data = nvdimm_get_user_key_payload(nvdimm, keyid,
247 NVDIMM_BASE_KEY, &key);
248 if (!data)
Dave Jiang03b65b22018-12-07 10:33:30 -0700249 return -ENOKEY;
250
Dave Jiangd2e5b642019-03-27 11:12:45 -0700251 rc = nvdimm->sec.ops->disable(nvdimm, data);
Dave Jiang03b65b22018-12-07 10:33:30 -0700252 dev_dbg(dev, "key: %d disable: %s\n", key_serial(key),
253 rc == 0 ? "success" : "fail");
254
255 nvdimm_put_key(key);
Dave Jiang89fa9d82018-12-10 10:53:22 -0700256 nvdimm->sec.state = nvdimm_security_state(nvdimm, NVDIMM_USER);
Dave Jiang03b65b22018-12-07 10:33:30 -0700257 return rc;
258}
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700259
260int nvdimm_security_update(struct nvdimm *nvdimm, unsigned int keyid,
Dave Jiang89fa9d82018-12-10 10:53:22 -0700261 unsigned int new_keyid,
262 enum nvdimm_passphrase_type pass_type)
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700263{
264 struct device *dev = &nvdimm->dev;
265 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
266 struct key *key, *newkey;
267 int rc;
Dave Jiangd2e5b642019-03-27 11:12:45 -0700268 const void *data, *newdata;
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700269
270 /* The bus lock should be held at the top level of the call stack */
271 lockdep_assert_held(&nvdimm_bus->reconfig_mutex);
272
273 if (!nvdimm->sec.ops || !nvdimm->sec.ops->change_key
274 || nvdimm->sec.state < 0)
275 return -EOPNOTSUPP;
276
277 if (nvdimm->sec.state >= NVDIMM_SECURITY_FROZEN) {
Dan Williams37379cf2018-12-22 11:35:41 -0800278 dev_dbg(dev, "Incorrect security state: %d\n",
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700279 nvdimm->sec.state);
280 return -EIO;
281 }
282
Dave Jiangd2e5b642019-03-27 11:12:45 -0700283 data = nvdimm_get_user_key_payload(nvdimm, keyid,
284 NVDIMM_BASE_KEY, &key);
285 if (!data)
286 return -ENOKEY;
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700287
Dave Jiangd2e5b642019-03-27 11:12:45 -0700288 newdata = nvdimm_get_user_key_payload(nvdimm, new_keyid,
289 NVDIMM_NEW_KEY, &newkey);
290 if (!newdata) {
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700291 nvdimm_put_key(key);
292 return -ENOKEY;
293 }
294
Dave Jiangd2e5b642019-03-27 11:12:45 -0700295 rc = nvdimm->sec.ops->change_key(nvdimm, data, newdata, pass_type);
Dave Jiang89fa9d82018-12-10 10:53:22 -0700296 dev_dbg(dev, "key: %d %d update%s: %s\n",
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700297 key_serial(key), key_serial(newkey),
Dave Jiang89fa9d82018-12-10 10:53:22 -0700298 pass_type == NVDIMM_MASTER ? "(master)" : "(user)",
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700299 rc == 0 ? "success" : "fail");
300
301 nvdimm_put_key(newkey);
302 nvdimm_put_key(key);
Dave Jiang89fa9d82018-12-10 10:53:22 -0700303 if (pass_type == NVDIMM_MASTER)
304 nvdimm->sec.ext_state = nvdimm_security_state(nvdimm,
305 NVDIMM_MASTER);
306 else
307 nvdimm->sec.state = nvdimm_security_state(nvdimm,
308 NVDIMM_USER);
Dave Jiangd2a4ac72018-12-07 13:29:09 -0700309 return rc;
310}
Dave Jiang64e77c82018-12-07 14:02:12 -0700311
Dave Jiang89fa9d82018-12-10 10:53:22 -0700312int nvdimm_security_erase(struct nvdimm *nvdimm, unsigned int keyid,
313 enum nvdimm_passphrase_type pass_type)
Dave Jiang64e77c82018-12-07 14:02:12 -0700314{
315 struct device *dev = &nvdimm->dev;
316 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
Dave Jiang037c8482019-03-27 11:10:44 -0700317 struct key *key = NULL;
Dave Jiang64e77c82018-12-07 14:02:12 -0700318 int rc;
Dave Jiang037c8482019-03-27 11:10:44 -0700319 const void *data;
Dave Jiang64e77c82018-12-07 14:02:12 -0700320
321 /* The bus lock should be held at the top level of the call stack */
322 lockdep_assert_held(&nvdimm_bus->reconfig_mutex);
323
324 if (!nvdimm->sec.ops || !nvdimm->sec.ops->erase
325 || nvdimm->sec.state < 0)
326 return -EOPNOTSUPP;
327
328 if (atomic_read(&nvdimm->busy)) {
Dan Williams37379cf2018-12-22 11:35:41 -0800329 dev_dbg(dev, "Unable to secure erase while DIMM active.\n");
Dave Jiang64e77c82018-12-07 14:02:12 -0700330 return -EBUSY;
331 }
332
333 if (nvdimm->sec.state >= NVDIMM_SECURITY_FROZEN) {
Dan Williams37379cf2018-12-22 11:35:41 -0800334 dev_dbg(dev, "Incorrect security state: %d\n",
Dave Jiang64e77c82018-12-07 14:02:12 -0700335 nvdimm->sec.state);
336 return -EIO;
337 }
338
Dave Jiang7d988092018-12-13 15:36:18 -0700339 if (test_bit(NDD_SECURITY_OVERWRITE, &nvdimm->flags)) {
Dan Williams37379cf2018-12-22 11:35:41 -0800340 dev_dbg(dev, "Security operation in progress.\n");
Dave Jiang7d988092018-12-13 15:36:18 -0700341 return -EBUSY;
342 }
343
Dave Jiang89fa9d82018-12-10 10:53:22 -0700344 if (nvdimm->sec.ext_state != NVDIMM_SECURITY_UNLOCKED
345 && pass_type == NVDIMM_MASTER) {
Dan Williams37379cf2018-12-22 11:35:41 -0800346 dev_dbg(dev,
Dave Jiang89fa9d82018-12-10 10:53:22 -0700347 "Attempt to secure erase in wrong master state.\n");
348 return -EOPNOTSUPP;
349 }
350
Dave Jiangd2e5b642019-03-27 11:12:45 -0700351 data = nvdimm_get_user_key_payload(nvdimm, keyid,
352 NVDIMM_BASE_KEY, &key);
353 if (!data)
354 return -ENOKEY;
Dave Jiang64e77c82018-12-07 14:02:12 -0700355
Dave Jiang037c8482019-03-27 11:10:44 -0700356 rc = nvdimm->sec.ops->erase(nvdimm, data, pass_type);
Dave Jiang89fa9d82018-12-10 10:53:22 -0700357 dev_dbg(dev, "key: %d erase%s: %s\n", key_serial(key),
358 pass_type == NVDIMM_MASTER ? "(master)" : "(user)",
Dave Jiang64e77c82018-12-07 14:02:12 -0700359 rc == 0 ? "success" : "fail");
360
361 nvdimm_put_key(key);
Dave Jiang89fa9d82018-12-10 10:53:22 -0700362 nvdimm->sec.state = nvdimm_security_state(nvdimm, NVDIMM_USER);
Dave Jiang64e77c82018-12-07 14:02:12 -0700363 return rc;
364}
Dave Jiang7d988092018-12-13 15:36:18 -0700365
366int nvdimm_security_overwrite(struct nvdimm *nvdimm, unsigned int keyid)
367{
368 struct device *dev = &nvdimm->dev;
369 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(dev);
Dave Jiangd2e5b642019-03-27 11:12:45 -0700370 struct key *key = NULL;
Dave Jiang7d988092018-12-13 15:36:18 -0700371 int rc;
Dave Jiangd2e5b642019-03-27 11:12:45 -0700372 const void *data;
Dave Jiang7d988092018-12-13 15:36:18 -0700373
374 /* The bus lock should be held at the top level of the call stack */
375 lockdep_assert_held(&nvdimm_bus->reconfig_mutex);
376
377 if (!nvdimm->sec.ops || !nvdimm->sec.ops->overwrite
378 || nvdimm->sec.state < 0)
379 return -EOPNOTSUPP;
380
381 if (atomic_read(&nvdimm->busy)) {
Dan Williams37379cf2018-12-22 11:35:41 -0800382 dev_dbg(dev, "Unable to overwrite while DIMM active.\n");
Dave Jiang7d988092018-12-13 15:36:18 -0700383 return -EBUSY;
384 }
385
386 if (dev->driver == NULL) {
Dan Williams37379cf2018-12-22 11:35:41 -0800387 dev_dbg(dev, "Unable to overwrite while DIMM active.\n");
Dave Jiang7d988092018-12-13 15:36:18 -0700388 return -EINVAL;
389 }
390
391 if (nvdimm->sec.state >= NVDIMM_SECURITY_FROZEN) {
Dan Williams37379cf2018-12-22 11:35:41 -0800392 dev_dbg(dev, "Incorrect security state: %d\n",
Dave Jiang7d988092018-12-13 15:36:18 -0700393 nvdimm->sec.state);
394 return -EIO;
395 }
396
397 if (test_bit(NDD_SECURITY_OVERWRITE, &nvdimm->flags)) {
Dan Williams37379cf2018-12-22 11:35:41 -0800398 dev_dbg(dev, "Security operation in progress.\n");
Dave Jiang7d988092018-12-13 15:36:18 -0700399 return -EBUSY;
400 }
401
Dave Jiangd2e5b642019-03-27 11:12:45 -0700402 data = nvdimm_get_user_key_payload(nvdimm, keyid,
403 NVDIMM_BASE_KEY, &key);
404 if (!data)
405 return -ENOKEY;
Dave Jiang7d988092018-12-13 15:36:18 -0700406
Dave Jiangd2e5b642019-03-27 11:12:45 -0700407 rc = nvdimm->sec.ops->overwrite(nvdimm, data);
Dave Jiang7d988092018-12-13 15:36:18 -0700408 dev_dbg(dev, "key: %d overwrite submission: %s\n", key_serial(key),
409 rc == 0 ? "success" : "fail");
410
411 nvdimm_put_key(key);
412 if (rc == 0) {
413 set_bit(NDD_SECURITY_OVERWRITE, &nvdimm->flags);
414 set_bit(NDD_WORK_PENDING, &nvdimm->flags);
415 nvdimm->sec.state = NVDIMM_SECURITY_OVERWRITE;
416 /*
417 * Make sure we don't lose device while doing overwrite
418 * query.
419 */
420 get_device(dev);
421 queue_delayed_work(system_wq, &nvdimm->dwork, 0);
422 }
Dave Jiang89fa9d82018-12-10 10:53:22 -0700423
Dave Jiang7d988092018-12-13 15:36:18 -0700424 return rc;
425}
426
427void __nvdimm_security_overwrite_query(struct nvdimm *nvdimm)
428{
429 struct nvdimm_bus *nvdimm_bus = walk_to_nvdimm_bus(&nvdimm->dev);
430 int rc;
431 unsigned int tmo;
432
433 /* The bus lock should be held at the top level of the call stack */
434 lockdep_assert_held(&nvdimm_bus->reconfig_mutex);
435
436 /*
437 * Abort and release device if we no longer have the overwrite
438 * flag set. It means the work has been canceled.
439 */
440 if (!test_bit(NDD_WORK_PENDING, &nvdimm->flags))
441 return;
442
443 tmo = nvdimm->sec.overwrite_tmo;
444
445 if (!nvdimm->sec.ops || !nvdimm->sec.ops->query_overwrite
446 || nvdimm->sec.state < 0)
447 return;
448
449 rc = nvdimm->sec.ops->query_overwrite(nvdimm);
450 if (rc == -EBUSY) {
451
452 /* setup delayed work again */
453 tmo += 10;
454 queue_delayed_work(system_wq, &nvdimm->dwork, tmo * HZ);
455 nvdimm->sec.overwrite_tmo = min(15U * 60U, tmo);
456 return;
457 }
458
459 if (rc < 0)
Dan Williams37379cf2018-12-22 11:35:41 -0800460 dev_dbg(&nvdimm->dev, "overwrite failed\n");
Dave Jiang7d988092018-12-13 15:36:18 -0700461 else
462 dev_dbg(&nvdimm->dev, "overwrite completed\n");
463
464 if (nvdimm->sec.overwrite_state)
465 sysfs_notify_dirent(nvdimm->sec.overwrite_state);
466 nvdimm->sec.overwrite_tmo = 0;
467 clear_bit(NDD_SECURITY_OVERWRITE, &nvdimm->flags);
468 clear_bit(NDD_WORK_PENDING, &nvdimm->flags);
469 put_device(&nvdimm->dev);
Dave Jiang89fa9d82018-12-10 10:53:22 -0700470 nvdimm->sec.state = nvdimm_security_state(nvdimm, NVDIMM_USER);
471 nvdimm->sec.ext_state = nvdimm_security_state(nvdimm, NVDIMM_MASTER);
Dave Jiang7d988092018-12-13 15:36:18 -0700472}
473
474void nvdimm_security_overwrite_query(struct work_struct *work)
475{
476 struct nvdimm *nvdimm =
477 container_of(work, typeof(*nvdimm), dwork.work);
478
479 nvdimm_bus_lock(&nvdimm->dev);
480 __nvdimm_security_overwrite_query(nvdimm);
481 nvdimm_bus_unlock(&nvdimm->dev);
482}