xref: /openbmc/linux/drivers/nvme/target/admin-cmd.c (revision 242cdad8)
1 /*
2  * NVMe admin command implementation.
3  * Copyright (c) 2015-2016 HGST, a Western Digital Company.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms and conditions of the GNU General Public License,
7  * version 2, as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  */
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
16 #include <linux/rculist.h>
17 
18 #include <generated/utsrelease.h>
19 #include <asm/unaligned.h>
20 #include "nvmet.h"
21 
22 /*
23  * This helper allows us to clear the AEN based on the RAE bit,
24  * Please use this helper when processing the log pages which are
25  * associated with the AEN.
26  */
27 static inline void nvmet_clear_aen(struct nvmet_req *req, u32 aen_bit)
28 {
29 	int rae = le32_to_cpu(req->cmd->common.cdw10[0]) & 1 << 15;
30 
31 	if (!rae)
32 		clear_bit(aen_bit, &req->sq->ctrl->aen_masked);
33 }
34 
35 u32 nvmet_get_log_page_len(struct nvme_command *cmd)
36 {
37 	u32 len = le16_to_cpu(cmd->get_log_page.numdu);
38 
39 	len <<= 16;
40 	len += le16_to_cpu(cmd->get_log_page.numdl);
41 	/* NUMD is a 0's based value */
42 	len += 1;
43 	len *= sizeof(u32);
44 
45 	return len;
46 }
47 
48 static void nvmet_execute_get_log_page_noop(struct nvmet_req *req)
49 {
50 	nvmet_req_complete(req, nvmet_zero_sgl(req, 0, req->data_len));
51 }
52 
53 static u16 nvmet_get_smart_log_nsid(struct nvmet_req *req,
54 		struct nvme_smart_log *slog)
55 {
56 	struct nvmet_ns *ns;
57 	u64 host_reads, host_writes, data_units_read, data_units_written;
58 
59 	ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->get_log_page.nsid);
60 	if (!ns) {
61 		pr_err("nvmet : Could not find namespace id : %d\n",
62 				le32_to_cpu(req->cmd->get_log_page.nsid));
63 		return NVME_SC_INVALID_NS;
64 	}
65 
66 	/* we don't have the right data for file backed ns */
67 	if (!ns->bdev)
68 		goto out;
69 
70 	host_reads = part_stat_read(ns->bdev->bd_part, ios[READ]);
71 	data_units_read = part_stat_read(ns->bdev->bd_part, sectors[READ]);
72 	host_writes = part_stat_read(ns->bdev->bd_part, ios[WRITE]);
73 	data_units_written = part_stat_read(ns->bdev->bd_part, sectors[WRITE]);
74 
75 	put_unaligned_le64(host_reads, &slog->host_reads[0]);
76 	put_unaligned_le64(data_units_read, &slog->data_units_read[0]);
77 	put_unaligned_le64(host_writes, &slog->host_writes[0]);
78 	put_unaligned_le64(data_units_written, &slog->data_units_written[0]);
79 out:
80 	nvmet_put_namespace(ns);
81 
82 	return NVME_SC_SUCCESS;
83 }
84 
85 static u16 nvmet_get_smart_log_all(struct nvmet_req *req,
86 		struct nvme_smart_log *slog)
87 {
88 	u64 host_reads = 0, host_writes = 0;
89 	u64 data_units_read = 0, data_units_written = 0;
90 	struct nvmet_ns *ns;
91 	struct nvmet_ctrl *ctrl;
92 
93 	ctrl = req->sq->ctrl;
94 
95 	rcu_read_lock();
96 	list_for_each_entry_rcu(ns, &ctrl->subsys->namespaces, dev_link) {
97 		/* we don't have the right data for file backed ns */
98 		if (!ns->bdev)
99 			continue;
100 		host_reads += part_stat_read(ns->bdev->bd_part, ios[READ]);
101 		data_units_read +=
102 			part_stat_read(ns->bdev->bd_part, sectors[READ]);
103 		host_writes += part_stat_read(ns->bdev->bd_part, ios[WRITE]);
104 		data_units_written +=
105 			part_stat_read(ns->bdev->bd_part, sectors[WRITE]);
106 
107 	}
108 	rcu_read_unlock();
109 
110 	put_unaligned_le64(host_reads, &slog->host_reads[0]);
111 	put_unaligned_le64(data_units_read, &slog->data_units_read[0]);
112 	put_unaligned_le64(host_writes, &slog->host_writes[0]);
113 	put_unaligned_le64(data_units_written, &slog->data_units_written[0]);
114 
115 	return NVME_SC_SUCCESS;
116 }
117 
118 static void nvmet_execute_get_log_page_smart(struct nvmet_req *req)
119 {
120 	struct nvme_smart_log *log;
121 	u16 status = NVME_SC_INTERNAL;
122 
123 	if (req->data_len != sizeof(*log))
124 		goto out;
125 
126 	log = kzalloc(sizeof(*log), GFP_KERNEL);
127 	if (!log)
128 		goto out;
129 
130 	if (req->cmd->get_log_page.nsid == cpu_to_le32(NVME_NSID_ALL))
131 		status = nvmet_get_smart_log_all(req, log);
132 	else
133 		status = nvmet_get_smart_log_nsid(req, log);
134 	if (status)
135 		goto out_free_log;
136 
137 	status = nvmet_copy_to_sgl(req, 0, log, sizeof(*log));
138 out_free_log:
139 	kfree(log);
140 out:
141 	nvmet_req_complete(req, status);
142 }
143 
144 static void nvmet_execute_get_log_cmd_effects_ns(struct nvmet_req *req)
145 {
146 	u16 status = NVME_SC_INTERNAL;
147 	struct nvme_effects_log *log;
148 
149 	log = kzalloc(sizeof(*log), GFP_KERNEL);
150 	if (!log)
151 		goto out;
152 
153 	log->acs[nvme_admin_get_log_page]	= cpu_to_le32(1 << 0);
154 	log->acs[nvme_admin_identify]		= cpu_to_le32(1 << 0);
155 	log->acs[nvme_admin_abort_cmd]		= cpu_to_le32(1 << 0);
156 	log->acs[nvme_admin_set_features]	= cpu_to_le32(1 << 0);
157 	log->acs[nvme_admin_get_features]	= cpu_to_le32(1 << 0);
158 	log->acs[nvme_admin_async_event]	= cpu_to_le32(1 << 0);
159 	log->acs[nvme_admin_keep_alive]		= cpu_to_le32(1 << 0);
160 
161 	log->iocs[nvme_cmd_read]		= cpu_to_le32(1 << 0);
162 	log->iocs[nvme_cmd_write]		= cpu_to_le32(1 << 0);
163 	log->iocs[nvme_cmd_flush]		= cpu_to_le32(1 << 0);
164 	log->iocs[nvme_cmd_dsm]			= cpu_to_le32(1 << 0);
165 	log->iocs[nvme_cmd_write_zeroes]	= cpu_to_le32(1 << 0);
166 
167 	status = nvmet_copy_to_sgl(req, 0, log, sizeof(*log));
168 
169 	kfree(log);
170 out:
171 	nvmet_req_complete(req, status);
172 }
173 
174 static void nvmet_execute_get_log_changed_ns(struct nvmet_req *req)
175 {
176 	struct nvmet_ctrl *ctrl = req->sq->ctrl;
177 	u16 status = NVME_SC_INTERNAL;
178 	size_t len;
179 
180 	if (req->data_len != NVME_MAX_CHANGED_NAMESPACES * sizeof(__le32))
181 		goto out;
182 
183 	mutex_lock(&ctrl->lock);
184 	if (ctrl->nr_changed_ns == U32_MAX)
185 		len = sizeof(__le32);
186 	else
187 		len = ctrl->nr_changed_ns * sizeof(__le32);
188 	status = nvmet_copy_to_sgl(req, 0, ctrl->changed_ns_list, len);
189 	if (!status)
190 		status = nvmet_zero_sgl(req, len, req->data_len - len);
191 	ctrl->nr_changed_ns = 0;
192 	nvmet_clear_aen(req, NVME_AEN_CFG_NS_ATTR);
193 	mutex_unlock(&ctrl->lock);
194 out:
195 	nvmet_req_complete(req, status);
196 }
197 
198 static u32 nvmet_format_ana_group(struct nvmet_req *req, u32 grpid,
199 		struct nvme_ana_group_desc *desc)
200 {
201 	struct nvmet_ctrl *ctrl = req->sq->ctrl;
202 	struct nvmet_ns *ns;
203 	u32 count = 0;
204 
205 	if (!(req->cmd->get_log_page.lsp & NVME_ANA_LOG_RGO)) {
206 		rcu_read_lock();
207 		list_for_each_entry_rcu(ns, &ctrl->subsys->namespaces, dev_link)
208 			if (ns->anagrpid == grpid)
209 				desc->nsids[count++] = cpu_to_le32(ns->nsid);
210 		rcu_read_unlock();
211 	}
212 
213 	desc->grpid = cpu_to_le32(grpid);
214 	desc->nnsids = cpu_to_le32(count);
215 	desc->chgcnt = cpu_to_le64(nvmet_ana_chgcnt);
216 	desc->state = req->port->ana_state[grpid];
217 	memset(desc->rsvd17, 0, sizeof(desc->rsvd17));
218 	return sizeof(struct nvme_ana_group_desc) + count * sizeof(__le32);
219 }
220 
221 static void nvmet_execute_get_log_page_ana(struct nvmet_req *req)
222 {
223 	struct nvme_ana_rsp_hdr hdr = { 0, };
224 	struct nvme_ana_group_desc *desc;
225 	size_t offset = sizeof(struct nvme_ana_rsp_hdr); /* start beyond hdr */
226 	size_t len;
227 	u32 grpid;
228 	u16 ngrps = 0;
229 	u16 status;
230 
231 	status = NVME_SC_INTERNAL;
232 	desc = kmalloc(sizeof(struct nvme_ana_group_desc) +
233 			NVMET_MAX_NAMESPACES * sizeof(__le32), GFP_KERNEL);
234 	if (!desc)
235 		goto out;
236 
237 	down_read(&nvmet_ana_sem);
238 	for (grpid = 1; grpid <= NVMET_MAX_ANAGRPS; grpid++) {
239 		if (!nvmet_ana_group_enabled[grpid])
240 			continue;
241 		len = nvmet_format_ana_group(req, grpid, desc);
242 		status = nvmet_copy_to_sgl(req, offset, desc, len);
243 		if (status)
244 			break;
245 		offset += len;
246 		ngrps++;
247 	}
248 
249 	hdr.chgcnt = cpu_to_le64(nvmet_ana_chgcnt);
250 	hdr.ngrps = cpu_to_le16(ngrps);
251 	nvmet_clear_aen(req, NVME_AEN_CFG_ANA_CHANGE);
252 	up_read(&nvmet_ana_sem);
253 
254 	kfree(desc);
255 
256 	/* copy the header last once we know the number of groups */
257 	status = nvmet_copy_to_sgl(req, 0, &hdr, sizeof(hdr));
258 out:
259 	nvmet_req_complete(req, status);
260 }
261 
262 static void nvmet_execute_identify_ctrl(struct nvmet_req *req)
263 {
264 	struct nvmet_ctrl *ctrl = req->sq->ctrl;
265 	struct nvme_id_ctrl *id;
266 	u16 status = 0;
267 	const char model[] = "Linux";
268 
269 	id = kzalloc(sizeof(*id), GFP_KERNEL);
270 	if (!id) {
271 		status = NVME_SC_INTERNAL;
272 		goto out;
273 	}
274 
275 	/* XXX: figure out how to assign real vendors IDs. */
276 	id->vid = 0;
277 	id->ssvid = 0;
278 
279 	memset(id->sn, ' ', sizeof(id->sn));
280 	bin2hex(id->sn, &ctrl->subsys->serial,
281 		min(sizeof(ctrl->subsys->serial), sizeof(id->sn) / 2));
282 	memcpy_and_pad(id->mn, sizeof(id->mn), model, sizeof(model) - 1, ' ');
283 	memcpy_and_pad(id->fr, sizeof(id->fr),
284 		       UTS_RELEASE, strlen(UTS_RELEASE), ' ');
285 
286 	id->rab = 6;
287 
288 	/*
289 	 * XXX: figure out how we can assign a IEEE OUI, but until then
290 	 * the safest is to leave it as zeroes.
291 	 */
292 
293 	/* we support multiple ports, multiples hosts and ANA: */
294 	id->cmic = (1 << 0) | (1 << 1) | (1 << 3);
295 
296 	/* no limit on data transfer sizes for now */
297 	id->mdts = 0;
298 	id->cntlid = cpu_to_le16(ctrl->cntlid);
299 	id->ver = cpu_to_le32(ctrl->subsys->ver);
300 
301 	/* XXX: figure out what to do about RTD3R/RTD3 */
302 	id->oaes = cpu_to_le32(NVMET_AEN_CFG_OPTIONAL);
303 	id->ctratt = cpu_to_le32(1 << 0);
304 
305 	id->oacs = 0;
306 
307 	/*
308 	 * We don't really have a practical limit on the number of abort
309 	 * comands.  But we don't do anything useful for abort either, so
310 	 * no point in allowing more abort commands than the spec requires.
311 	 */
312 	id->acl = 3;
313 
314 	id->aerl = NVMET_ASYNC_EVENTS - 1;
315 
316 	/* first slot is read-only, only one slot supported */
317 	id->frmw = (1 << 0) | (1 << 1);
318 	id->lpa = (1 << 0) | (1 << 1) | (1 << 2);
319 	id->elpe = NVMET_ERROR_LOG_SLOTS - 1;
320 	id->npss = 0;
321 
322 	/* We support keep-alive timeout in granularity of seconds */
323 	id->kas = cpu_to_le16(NVMET_KAS);
324 
325 	id->sqes = (0x6 << 4) | 0x6;
326 	id->cqes = (0x4 << 4) | 0x4;
327 
328 	/* no enforcement soft-limit for maxcmd - pick arbitrary high value */
329 	id->maxcmd = cpu_to_le16(NVMET_MAX_CMD);
330 
331 	id->nn = cpu_to_le32(ctrl->subsys->max_nsid);
332 	id->mnan = cpu_to_le32(NVMET_MAX_NAMESPACES);
333 	id->oncs = cpu_to_le16(NVME_CTRL_ONCS_DSM |
334 			NVME_CTRL_ONCS_WRITE_ZEROES);
335 
336 	/* XXX: don't report vwc if the underlying device is write through */
337 	id->vwc = NVME_CTRL_VWC_PRESENT;
338 
339 	/*
340 	 * We can't support atomic writes bigger than a LBA without support
341 	 * from the backend device.
342 	 */
343 	id->awun = 0;
344 	id->awupf = 0;
345 
346 	id->sgls = cpu_to_le32(1 << 0);	/* we always support SGLs */
347 	if (ctrl->ops->has_keyed_sgls)
348 		id->sgls |= cpu_to_le32(1 << 2);
349 	if (req->port->inline_data_size)
350 		id->sgls |= cpu_to_le32(1 << 20);
351 
352 	strcpy(id->subnqn, ctrl->subsys->subsysnqn);
353 
354 	/* Max command capsule size is sqe + single page of in-capsule data */
355 	id->ioccsz = cpu_to_le32((sizeof(struct nvme_command) +
356 				  req->port->inline_data_size) / 16);
357 	/* Max response capsule size is cqe */
358 	id->iorcsz = cpu_to_le32(sizeof(struct nvme_completion) / 16);
359 
360 	id->msdbd = ctrl->ops->msdbd;
361 
362 	id->anacap = (1 << 0) | (1 << 1) | (1 << 2) | (1 << 3) | (1 << 4);
363 	id->anatt = 10; /* random value */
364 	id->anagrpmax = cpu_to_le32(NVMET_MAX_ANAGRPS);
365 	id->nanagrpid = cpu_to_le32(NVMET_MAX_ANAGRPS);
366 
367 	/*
368 	 * Meh, we don't really support any power state.  Fake up the same
369 	 * values that qemu does.
370 	 */
371 	id->psd[0].max_power = cpu_to_le16(0x9c4);
372 	id->psd[0].entry_lat = cpu_to_le32(0x10);
373 	id->psd[0].exit_lat = cpu_to_le32(0x4);
374 
375 	id->nwpc = 1 << 0; /* write protect and no write protect */
376 
377 	status = nvmet_copy_to_sgl(req, 0, id, sizeof(*id));
378 
379 	kfree(id);
380 out:
381 	nvmet_req_complete(req, status);
382 }
383 
384 static void nvmet_execute_identify_ns(struct nvmet_req *req)
385 {
386 	struct nvmet_ns *ns;
387 	struct nvme_id_ns *id;
388 	u16 status = 0;
389 
390 	if (le32_to_cpu(req->cmd->identify.nsid) == NVME_NSID_ALL) {
391 		status = NVME_SC_INVALID_NS | NVME_SC_DNR;
392 		goto out;
393 	}
394 
395 	id = kzalloc(sizeof(*id), GFP_KERNEL);
396 	if (!id) {
397 		status = NVME_SC_INTERNAL;
398 		goto out;
399 	}
400 
401 	/* return an all zeroed buffer if we can't find an active namespace */
402 	ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->identify.nsid);
403 	if (!ns)
404 		goto done;
405 
406 	/*
407 	 * nuse = ncap = nsze isn't always true, but we have no way to find
408 	 * that out from the underlying device.
409 	 */
410 	id->ncap = id->nsze = cpu_to_le64(ns->size >> ns->blksize_shift);
411 	switch (req->port->ana_state[ns->anagrpid]) {
412 	case NVME_ANA_INACCESSIBLE:
413 	case NVME_ANA_PERSISTENT_LOSS:
414 		break;
415 	default:
416 		id->nuse = id->nsze;
417 		break;
418         }
419 
420 	/*
421 	 * We just provide a single LBA format that matches what the
422 	 * underlying device reports.
423 	 */
424 	id->nlbaf = 0;
425 	id->flbas = 0;
426 
427 	/*
428 	 * Our namespace might always be shared.  Not just with other
429 	 * controllers, but also with any other user of the block device.
430 	 */
431 	id->nmic = (1 << 0);
432 	id->anagrpid = cpu_to_le32(ns->anagrpid);
433 
434 	memcpy(&id->nguid, &ns->nguid, sizeof(id->nguid));
435 
436 	id->lbaf[0].ds = ns->blksize_shift;
437 
438 	if (ns->readonly)
439 		id->nsattr |= (1 << 0);
440 	nvmet_put_namespace(ns);
441 done:
442 	status = nvmet_copy_to_sgl(req, 0, id, sizeof(*id));
443 	kfree(id);
444 out:
445 	nvmet_req_complete(req, status);
446 }
447 
448 static void nvmet_execute_identify_nslist(struct nvmet_req *req)
449 {
450 	static const int buf_size = NVME_IDENTIFY_DATA_SIZE;
451 	struct nvmet_ctrl *ctrl = req->sq->ctrl;
452 	struct nvmet_ns *ns;
453 	u32 min_nsid = le32_to_cpu(req->cmd->identify.nsid);
454 	__le32 *list;
455 	u16 status = 0;
456 	int i = 0;
457 
458 	list = kzalloc(buf_size, GFP_KERNEL);
459 	if (!list) {
460 		status = NVME_SC_INTERNAL;
461 		goto out;
462 	}
463 
464 	rcu_read_lock();
465 	list_for_each_entry_rcu(ns, &ctrl->subsys->namespaces, dev_link) {
466 		if (ns->nsid <= min_nsid)
467 			continue;
468 		list[i++] = cpu_to_le32(ns->nsid);
469 		if (i == buf_size / sizeof(__le32))
470 			break;
471 	}
472 	rcu_read_unlock();
473 
474 	status = nvmet_copy_to_sgl(req, 0, list, buf_size);
475 
476 	kfree(list);
477 out:
478 	nvmet_req_complete(req, status);
479 }
480 
481 static u16 nvmet_copy_ns_identifier(struct nvmet_req *req, u8 type, u8 len,
482 				    void *id, off_t *off)
483 {
484 	struct nvme_ns_id_desc desc = {
485 		.nidt = type,
486 		.nidl = len,
487 	};
488 	u16 status;
489 
490 	status = nvmet_copy_to_sgl(req, *off, &desc, sizeof(desc));
491 	if (status)
492 		return status;
493 	*off += sizeof(desc);
494 
495 	status = nvmet_copy_to_sgl(req, *off, id, len);
496 	if (status)
497 		return status;
498 	*off += len;
499 
500 	return 0;
501 }
502 
503 static void nvmet_execute_identify_desclist(struct nvmet_req *req)
504 {
505 	struct nvmet_ns *ns;
506 	u16 status = 0;
507 	off_t off = 0;
508 
509 	ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->identify.nsid);
510 	if (!ns) {
511 		status = NVME_SC_INVALID_NS | NVME_SC_DNR;
512 		goto out;
513 	}
514 
515 	if (memchr_inv(&ns->uuid, 0, sizeof(ns->uuid))) {
516 		status = nvmet_copy_ns_identifier(req, NVME_NIDT_UUID,
517 						  NVME_NIDT_UUID_LEN,
518 						  &ns->uuid, &off);
519 		if (status)
520 			goto out_put_ns;
521 	}
522 	if (memchr_inv(ns->nguid, 0, sizeof(ns->nguid))) {
523 		status = nvmet_copy_ns_identifier(req, NVME_NIDT_NGUID,
524 						  NVME_NIDT_NGUID_LEN,
525 						  &ns->nguid, &off);
526 		if (status)
527 			goto out_put_ns;
528 	}
529 
530 	if (sg_zero_buffer(req->sg, req->sg_cnt, NVME_IDENTIFY_DATA_SIZE - off,
531 			off) != NVME_IDENTIFY_DATA_SIZE - off)
532 		status = NVME_SC_INTERNAL | NVME_SC_DNR;
533 out_put_ns:
534 	nvmet_put_namespace(ns);
535 out:
536 	nvmet_req_complete(req, status);
537 }
538 
539 /*
540  * A "minimum viable" abort implementation: the command is mandatory in the
541  * spec, but we are not required to do any useful work.  We couldn't really
542  * do a useful abort, so don't bother even with waiting for the command
543  * to be exectuted and return immediately telling the command to abort
544  * wasn't found.
545  */
546 static void nvmet_execute_abort(struct nvmet_req *req)
547 {
548 	nvmet_set_result(req, 1);
549 	nvmet_req_complete(req, 0);
550 }
551 
552 static u16 nvmet_write_protect_flush_sync(struct nvmet_req *req)
553 {
554 	u16 status;
555 
556 	if (req->ns->file)
557 		status = nvmet_file_flush(req);
558 	else
559 		status = nvmet_bdev_flush(req);
560 
561 	if (status)
562 		pr_err("write protect flush failed nsid: %u\n", req->ns->nsid);
563 	return status;
564 }
565 
566 static u16 nvmet_set_feat_write_protect(struct nvmet_req *req)
567 {
568 	u32 write_protect = le32_to_cpu(req->cmd->common.cdw10[1]);
569 	struct nvmet_subsys *subsys = req->sq->ctrl->subsys;
570 	u16 status = NVME_SC_FEATURE_NOT_CHANGEABLE;
571 
572 	req->ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->rw.nsid);
573 	if (unlikely(!req->ns))
574 		return status;
575 
576 	mutex_lock(&subsys->lock);
577 	switch (write_protect) {
578 	case NVME_NS_WRITE_PROTECT:
579 		req->ns->readonly = true;
580 		status = nvmet_write_protect_flush_sync(req);
581 		if (status)
582 			req->ns->readonly = false;
583 		break;
584 	case NVME_NS_NO_WRITE_PROTECT:
585 		req->ns->readonly = false;
586 		status = 0;
587 		break;
588 	default:
589 		break;
590 	}
591 
592 	if (!status)
593 		nvmet_ns_changed(subsys, req->ns->nsid);
594 	mutex_unlock(&subsys->lock);
595 	return status;
596 }
597 
598 static void nvmet_execute_set_features(struct nvmet_req *req)
599 {
600 	struct nvmet_subsys *subsys = req->sq->ctrl->subsys;
601 	u32 cdw10 = le32_to_cpu(req->cmd->common.cdw10[0]);
602 	u32 val32;
603 	u16 status = 0;
604 
605 	switch (cdw10 & 0xff) {
606 	case NVME_FEAT_NUM_QUEUES:
607 		nvmet_set_result(req,
608 			(subsys->max_qid - 1) | ((subsys->max_qid - 1) << 16));
609 		break;
610 	case NVME_FEAT_KATO:
611 		val32 = le32_to_cpu(req->cmd->common.cdw10[1]);
612 		req->sq->ctrl->kato = DIV_ROUND_UP(val32, 1000);
613 		nvmet_set_result(req, req->sq->ctrl->kato);
614 		break;
615 	case NVME_FEAT_ASYNC_EVENT:
616 		val32 = le32_to_cpu(req->cmd->common.cdw10[1]);
617 		if (val32 & ~NVMET_AEN_CFG_ALL) {
618 			status = NVME_SC_INVALID_FIELD | NVME_SC_DNR;
619 			break;
620 		}
621 
622 		WRITE_ONCE(req->sq->ctrl->aen_enabled, val32);
623 		nvmet_set_result(req, val32);
624 		break;
625 	case NVME_FEAT_HOST_ID:
626 		status = NVME_SC_CMD_SEQ_ERROR | NVME_SC_DNR;
627 		break;
628 	case NVME_FEAT_WRITE_PROTECT:
629 		status = nvmet_set_feat_write_protect(req);
630 		break;
631 	default:
632 		status = NVME_SC_INVALID_FIELD | NVME_SC_DNR;
633 		break;
634 	}
635 
636 	nvmet_req_complete(req, status);
637 }
638 
639 static u16 nvmet_get_feat_write_protect(struct nvmet_req *req)
640 {
641 	struct nvmet_subsys *subsys = req->sq->ctrl->subsys;
642 	u32 result;
643 
644 	req->ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->common.nsid);
645 	if (!req->ns)
646 		return NVME_SC_INVALID_NS | NVME_SC_DNR;
647 
648 	mutex_lock(&subsys->lock);
649 	if (req->ns->readonly == true)
650 		result = NVME_NS_WRITE_PROTECT;
651 	else
652 		result = NVME_NS_NO_WRITE_PROTECT;
653 	nvmet_set_result(req, result);
654 	mutex_unlock(&subsys->lock);
655 
656 	return 0;
657 }
658 
659 static void nvmet_execute_get_features(struct nvmet_req *req)
660 {
661 	struct nvmet_subsys *subsys = req->sq->ctrl->subsys;
662 	u32 cdw10 = le32_to_cpu(req->cmd->common.cdw10[0]);
663 	u16 status = 0;
664 
665 	switch (cdw10 & 0xff) {
666 	/*
667 	 * These features are mandatory in the spec, but we don't
668 	 * have a useful way to implement them.  We'll eventually
669 	 * need to come up with some fake values for these.
670 	 */
671 #if 0
672 	case NVME_FEAT_ARBITRATION:
673 		break;
674 	case NVME_FEAT_POWER_MGMT:
675 		break;
676 	case NVME_FEAT_TEMP_THRESH:
677 		break;
678 	case NVME_FEAT_ERR_RECOVERY:
679 		break;
680 	case NVME_FEAT_IRQ_COALESCE:
681 		break;
682 	case NVME_FEAT_IRQ_CONFIG:
683 		break;
684 	case NVME_FEAT_WRITE_ATOMIC:
685 		break;
686 #endif
687 	case NVME_FEAT_ASYNC_EVENT:
688 		nvmet_set_result(req, READ_ONCE(req->sq->ctrl->aen_enabled));
689 		break;
690 	case NVME_FEAT_VOLATILE_WC:
691 		nvmet_set_result(req, 1);
692 		break;
693 	case NVME_FEAT_NUM_QUEUES:
694 		nvmet_set_result(req,
695 			(subsys->max_qid-1) | ((subsys->max_qid-1) << 16));
696 		break;
697 	case NVME_FEAT_KATO:
698 		nvmet_set_result(req, req->sq->ctrl->kato * 1000);
699 		break;
700 	case NVME_FEAT_HOST_ID:
701 		/* need 128-bit host identifier flag */
702 		if (!(req->cmd->common.cdw10[1] & cpu_to_le32(1 << 0))) {
703 			status = NVME_SC_INVALID_FIELD | NVME_SC_DNR;
704 			break;
705 		}
706 
707 		status = nvmet_copy_to_sgl(req, 0, &req->sq->ctrl->hostid,
708 				sizeof(req->sq->ctrl->hostid));
709 		break;
710 	case NVME_FEAT_WRITE_PROTECT:
711 		status = nvmet_get_feat_write_protect(req);
712 		break;
713 	default:
714 		status = NVME_SC_INVALID_FIELD | NVME_SC_DNR;
715 		break;
716 	}
717 
718 	nvmet_req_complete(req, status);
719 }
720 
721 static void nvmet_execute_async_event(struct nvmet_req *req)
722 {
723 	struct nvmet_ctrl *ctrl = req->sq->ctrl;
724 
725 	mutex_lock(&ctrl->lock);
726 	if (ctrl->nr_async_event_cmds >= NVMET_ASYNC_EVENTS) {
727 		mutex_unlock(&ctrl->lock);
728 		nvmet_req_complete(req, NVME_SC_ASYNC_LIMIT | NVME_SC_DNR);
729 		return;
730 	}
731 	ctrl->async_event_cmds[ctrl->nr_async_event_cmds++] = req;
732 	mutex_unlock(&ctrl->lock);
733 
734 	schedule_work(&ctrl->async_event_work);
735 }
736 
737 static void nvmet_execute_keep_alive(struct nvmet_req *req)
738 {
739 	struct nvmet_ctrl *ctrl = req->sq->ctrl;
740 
741 	pr_debug("ctrl %d update keep-alive timer for %d secs\n",
742 		ctrl->cntlid, ctrl->kato);
743 
744 	mod_delayed_work(system_wq, &ctrl->ka_work, ctrl->kato * HZ);
745 	nvmet_req_complete(req, 0);
746 }
747 
748 u16 nvmet_parse_admin_cmd(struct nvmet_req *req)
749 {
750 	struct nvme_command *cmd = req->cmd;
751 	u16 ret;
752 
753 	ret = nvmet_check_ctrl_status(req, cmd);
754 	if (unlikely(ret))
755 		return ret;
756 
757 	switch (cmd->common.opcode) {
758 	case nvme_admin_get_log_page:
759 		req->data_len = nvmet_get_log_page_len(cmd);
760 
761 		switch (cmd->get_log_page.lid) {
762 		case NVME_LOG_ERROR:
763 			/*
764 			 * We currently never set the More bit in the status
765 			 * field, so all error log entries are invalid and can
766 			 * be zeroed out.  This is called a minum viable
767 			 * implementation (TM) of this mandatory log page.
768 			 */
769 			req->execute = nvmet_execute_get_log_page_noop;
770 			return 0;
771 		case NVME_LOG_SMART:
772 			req->execute = nvmet_execute_get_log_page_smart;
773 			return 0;
774 		case NVME_LOG_FW_SLOT:
775 			/*
776 			 * We only support a single firmware slot which always
777 			 * is active, so we can zero out the whole firmware slot
778 			 * log and still claim to fully implement this mandatory
779 			 * log page.
780 			 */
781 			req->execute = nvmet_execute_get_log_page_noop;
782 			return 0;
783 		case NVME_LOG_CHANGED_NS:
784 			req->execute = nvmet_execute_get_log_changed_ns;
785 			return 0;
786 		case NVME_LOG_CMD_EFFECTS:
787 			req->execute = nvmet_execute_get_log_cmd_effects_ns;
788 			return 0;
789 		case NVME_LOG_ANA:
790 			req->execute = nvmet_execute_get_log_page_ana;
791 			return 0;
792 		}
793 		break;
794 	case nvme_admin_identify:
795 		req->data_len = NVME_IDENTIFY_DATA_SIZE;
796 		switch (cmd->identify.cns) {
797 		case NVME_ID_CNS_NS:
798 			req->execute = nvmet_execute_identify_ns;
799 			return 0;
800 		case NVME_ID_CNS_CTRL:
801 			req->execute = nvmet_execute_identify_ctrl;
802 			return 0;
803 		case NVME_ID_CNS_NS_ACTIVE_LIST:
804 			req->execute = nvmet_execute_identify_nslist;
805 			return 0;
806 		case NVME_ID_CNS_NS_DESC_LIST:
807 			req->execute = nvmet_execute_identify_desclist;
808 			return 0;
809 		}
810 		break;
811 	case nvme_admin_abort_cmd:
812 		req->execute = nvmet_execute_abort;
813 		req->data_len = 0;
814 		return 0;
815 	case nvme_admin_set_features:
816 		req->execute = nvmet_execute_set_features;
817 		req->data_len = 0;
818 		return 0;
819 	case nvme_admin_get_features:
820 		req->execute = nvmet_execute_get_features;
821 		req->data_len = 0;
822 		return 0;
823 	case nvme_admin_async_event:
824 		req->execute = nvmet_execute_async_event;
825 		req->data_len = 0;
826 		return 0;
827 	case nvme_admin_keep_alive:
828 		req->execute = nvmet_execute_keep_alive;
829 		req->data_len = 0;
830 		return 0;
831 	}
832 
833 	pr_err("unhandled cmd %d on qid %d\n", cmd->common.opcode,
834 	       req->sq->qid);
835 	return NVME_SC_INVALID_OPCODE | NVME_SC_DNR;
836 }
837