1 // SPDX-License-Identifier: GPL-2.0
3 * NVMe Fabrics command implementation.
4 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7 #include <linux/blkdev.h>
10 static void nvmet_execute_prop_set(struct nvmet_req
*req
)
12 u64 val
= le64_to_cpu(req
->cmd
->prop_set
.value
);
15 if (!nvmet_check_data_len(req
, 0))
18 if (req
->cmd
->prop_set
.attrib
& 1) {
20 offsetof(struct nvmf_property_set_command
, attrib
);
21 status
= NVME_SC_INVALID_FIELD
| NVME_SC_DNR
;
25 switch (le32_to_cpu(req
->cmd
->prop_set
.offset
)) {
27 nvmet_update_cc(req
->sq
->ctrl
, val
);
31 offsetof(struct nvmf_property_set_command
, offset
);
32 status
= NVME_SC_INVALID_FIELD
| NVME_SC_DNR
;
35 nvmet_req_complete(req
, status
);
38 static void nvmet_execute_prop_get(struct nvmet_req
*req
)
40 struct nvmet_ctrl
*ctrl
= req
->sq
->ctrl
;
44 if (!nvmet_check_data_len(req
, 0))
47 if (req
->cmd
->prop_get
.attrib
& 1) {
48 switch (le32_to_cpu(req
->cmd
->prop_get
.offset
)) {
53 status
= NVME_SC_INVALID_FIELD
| NVME_SC_DNR
;
57 switch (le32_to_cpu(req
->cmd
->prop_get
.offset
)) {
59 val
= ctrl
->subsys
->ver
;
68 status
= NVME_SC_INVALID_FIELD
| NVME_SC_DNR
;
73 if (status
&& req
->cmd
->prop_get
.attrib
& 1) {
75 offsetof(struct nvmf_property_get_command
, offset
);
78 offsetof(struct nvmf_property_get_command
, attrib
);
81 req
->cqe
->result
.u64
= cpu_to_le64(val
);
82 nvmet_req_complete(req
, status
);
85 u16
nvmet_parse_fabrics_cmd(struct nvmet_req
*req
)
87 struct nvme_command
*cmd
= req
->cmd
;
89 switch (cmd
->fabrics
.fctype
) {
90 case nvme_fabrics_type_property_set
:
91 req
->execute
= nvmet_execute_prop_set
;
93 case nvme_fabrics_type_property_get
:
94 req
->execute
= nvmet_execute_prop_get
;
97 pr_err("received unknown capsule type 0x%x\n",
99 req
->error_loc
= offsetof(struct nvmf_common_command
, fctype
);
100 return NVME_SC_INVALID_OPCODE
| NVME_SC_DNR
;
106 static u16
nvmet_install_queue(struct nvmet_ctrl
*ctrl
, struct nvmet_req
*req
)
108 struct nvmf_connect_command
*c
= &req
->cmd
->connect
;
109 u16 qid
= le16_to_cpu(c
->qid
);
110 u16 sqsize
= le16_to_cpu(c
->sqsize
);
111 struct nvmet_ctrl
*old
;
113 old
= cmpxchg(&req
->sq
->ctrl
, NULL
, ctrl
);
115 pr_warn("queue already connected!\n");
116 req
->error_loc
= offsetof(struct nvmf_connect_command
, opcode
);
117 return NVME_SC_CONNECT_CTRL_BUSY
| NVME_SC_DNR
;
120 pr_warn("queue size zero!\n");
121 req
->error_loc
= offsetof(struct nvmf_connect_command
, sqsize
);
122 return NVME_SC_CONNECT_INVALID_PARAM
| NVME_SC_DNR
;
125 /* note: convert queue size from 0's-based value to 1's-based value */
126 nvmet_cq_setup(ctrl
, req
->cq
, qid
, sqsize
+ 1);
127 nvmet_sq_setup(ctrl
, req
->sq
, qid
, sqsize
+ 1);
129 if (c
->cattr
& NVME_CONNECT_DISABLE_SQFLOW
) {
130 req
->sq
->sqhd_disabled
= true;
131 req
->cqe
->sq_head
= cpu_to_le16(0xffff);
134 if (ctrl
->ops
->install_queue
) {
135 u16 ret
= ctrl
->ops
->install_queue(req
->sq
);
138 pr_err("failed to install queue %d cntlid %d ret %x\n",
139 qid
, ret
, ctrl
->cntlid
);
147 static void nvmet_execute_admin_connect(struct nvmet_req
*req
)
149 struct nvmf_connect_command
*c
= &req
->cmd
->connect
;
150 struct nvmf_connect_data
*d
;
151 struct nvmet_ctrl
*ctrl
= NULL
;
154 if (!nvmet_check_data_len(req
, sizeof(struct nvmf_connect_data
)))
157 d
= kmalloc(sizeof(*d
), GFP_KERNEL
);
159 status
= NVME_SC_INTERNAL
;
163 status
= nvmet_copy_from_sgl(req
, 0, d
, sizeof(*d
));
167 /* zero out initial completion result, assign values as needed */
168 req
->cqe
->result
.u32
= 0;
170 if (c
->recfmt
!= 0) {
171 pr_warn("invalid connect version (%d).\n",
172 le16_to_cpu(c
->recfmt
));
173 req
->error_loc
= offsetof(struct nvmf_connect_command
, recfmt
);
174 status
= NVME_SC_CONNECT_FORMAT
| NVME_SC_DNR
;
178 if (unlikely(d
->cntlid
!= cpu_to_le16(0xffff))) {
179 pr_warn("connect attempt for invalid controller ID %#x\n",
181 status
= NVME_SC_CONNECT_INVALID_PARAM
| NVME_SC_DNR
;
182 req
->cqe
->result
.u32
= IPO_IATTR_CONNECT_DATA(cntlid
);
186 status
= nvmet_alloc_ctrl(d
->subsysnqn
, d
->hostnqn
, req
,
187 le32_to_cpu(c
->kato
), &ctrl
);
189 if (status
== (NVME_SC_INVALID_FIELD
| NVME_SC_DNR
))
191 offsetof(struct nvme_common_command
, opcode
);
195 uuid_copy(&ctrl
->hostid
, &d
->hostid
);
197 status
= nvmet_install_queue(ctrl
, req
);
199 nvmet_ctrl_put(ctrl
);
203 pr_info("creating controller %d for subsystem %s for NQN %s.\n",
204 ctrl
->cntlid
, ctrl
->subsys
->subsysnqn
, ctrl
->hostnqn
);
205 req
->cqe
->result
.u16
= cpu_to_le16(ctrl
->cntlid
);
210 nvmet_req_complete(req
, status
);
213 static void nvmet_execute_io_connect(struct nvmet_req
*req
)
215 struct nvmf_connect_command
*c
= &req
->cmd
->connect
;
216 struct nvmf_connect_data
*d
;
217 struct nvmet_ctrl
*ctrl
= NULL
;
218 u16 qid
= le16_to_cpu(c
->qid
);
221 if (!nvmet_check_data_len(req
, sizeof(struct nvmf_connect_data
)))
224 d
= kmalloc(sizeof(*d
), GFP_KERNEL
);
226 status
= NVME_SC_INTERNAL
;
230 status
= nvmet_copy_from_sgl(req
, 0, d
, sizeof(*d
));
234 /* zero out initial completion result, assign values as needed */
235 req
->cqe
->result
.u32
= 0;
237 if (c
->recfmt
!= 0) {
238 pr_warn("invalid connect version (%d).\n",
239 le16_to_cpu(c
->recfmt
));
240 status
= NVME_SC_CONNECT_FORMAT
| NVME_SC_DNR
;
244 status
= nvmet_ctrl_find_get(d
->subsysnqn
, d
->hostnqn
,
245 le16_to_cpu(d
->cntlid
),
250 if (unlikely(qid
> ctrl
->subsys
->max_qid
)) {
251 pr_warn("invalid queue id (%d)\n", qid
);
252 status
= NVME_SC_CONNECT_INVALID_PARAM
| NVME_SC_DNR
;
253 req
->cqe
->result
.u32
= IPO_IATTR_CONNECT_SQE(qid
);
257 status
= nvmet_install_queue(ctrl
, req
);
259 /* pass back cntlid that had the issue of installing queue */
260 req
->cqe
->result
.u16
= cpu_to_le16(ctrl
->cntlid
);
264 pr_debug("adding queue %d to ctrl %d.\n", qid
, ctrl
->cntlid
);
269 nvmet_req_complete(req
, status
);
273 nvmet_ctrl_put(ctrl
);
277 u16
nvmet_parse_connect_cmd(struct nvmet_req
*req
)
279 struct nvme_command
*cmd
= req
->cmd
;
281 if (!nvme_is_fabrics(cmd
)) {
282 pr_err("invalid command 0x%x on unconnected queue.\n",
283 cmd
->fabrics
.opcode
);
284 req
->error_loc
= offsetof(struct nvme_common_command
, opcode
);
285 return NVME_SC_INVALID_OPCODE
| NVME_SC_DNR
;
287 if (cmd
->fabrics
.fctype
!= nvme_fabrics_type_connect
) {
288 pr_err("invalid capsule type 0x%x on unconnected queue.\n",
289 cmd
->fabrics
.fctype
);
290 req
->error_loc
= offsetof(struct nvmf_common_command
, fctype
);
291 return NVME_SC_INVALID_OPCODE
| NVME_SC_DNR
;
294 if (cmd
->connect
.qid
== 0)
295 req
->execute
= nvmet_execute_admin_connect
;
297 req
->execute
= nvmet_execute_io_connect
;