2 * NVMe Fabrics command implementation.
3 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
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.
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
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/blkdev.h>
18 static void nvmet_execute_prop_set(struct nvmet_req
*req
)
22 if (!(req
->cmd
->prop_set
.attrib
& 1)) {
23 u64 val
= le64_to_cpu(req
->cmd
->prop_set
.value
);
25 switch (le32_to_cpu(req
->cmd
->prop_set
.offset
)) {
27 nvmet_update_cc(req
->sq
->ctrl
, val
);
30 status
= NVME_SC_INVALID_FIELD
| NVME_SC_DNR
;
34 status
= NVME_SC_INVALID_FIELD
| NVME_SC_DNR
;
37 nvmet_req_complete(req
, status
);
40 static void nvmet_execute_prop_get(struct nvmet_req
*req
)
42 struct nvmet_ctrl
*ctrl
= req
->sq
->ctrl
;
46 if (req
->cmd
->prop_get
.attrib
& 1) {
47 switch (le32_to_cpu(req
->cmd
->prop_get
.offset
)) {
52 status
= NVME_SC_INVALID_FIELD
| NVME_SC_DNR
;
56 switch (le32_to_cpu(req
->cmd
->prop_get
.offset
)) {
58 val
= ctrl
->subsys
->ver
;
67 status
= NVME_SC_INVALID_FIELD
| NVME_SC_DNR
;
72 req
->rsp
->result
.u64
= cpu_to_le64(val
);
73 nvmet_req_complete(req
, status
);
76 u16
nvmet_parse_fabrics_cmd(struct nvmet_req
*req
)
78 struct nvme_command
*cmd
= req
->cmd
;
82 switch (cmd
->fabrics
.fctype
) {
83 case nvme_fabrics_type_property_set
:
85 req
->execute
= nvmet_execute_prop_set
;
87 case nvme_fabrics_type_property_get
:
89 req
->execute
= nvmet_execute_prop_get
;
92 pr_err("received unknown capsule type 0x%x\n",
94 return NVME_SC_INVALID_OPCODE
| NVME_SC_DNR
;
100 static u16
nvmet_install_queue(struct nvmet_ctrl
*ctrl
, struct nvmet_req
*req
)
102 struct nvmf_connect_command
*c
= &req
->cmd
->connect
;
103 u16 qid
= le16_to_cpu(c
->qid
);
104 u16 sqsize
= le16_to_cpu(c
->sqsize
);
105 struct nvmet_ctrl
*old
;
107 old
= cmpxchg(&req
->sq
->ctrl
, NULL
, ctrl
);
109 pr_warn("queue already connected!\n");
110 return NVME_SC_CONNECT_CTRL_BUSY
| NVME_SC_DNR
;
113 pr_warn("queue size zero!\n");
114 return NVME_SC_CONNECT_INVALID_PARAM
| NVME_SC_DNR
;
117 /* note: convert queue size from 0's-based value to 1's-based value */
118 nvmet_cq_setup(ctrl
, req
->cq
, qid
, sqsize
+ 1);
119 nvmet_sq_setup(ctrl
, req
->sq
, qid
, sqsize
+ 1);
123 static void nvmet_execute_admin_connect(struct nvmet_req
*req
)
125 struct nvmf_connect_command
*c
= &req
->cmd
->connect
;
126 struct nvmf_connect_data
*d
;
127 struct nvmet_ctrl
*ctrl
= NULL
;
130 d
= kmalloc(sizeof(*d
), GFP_KERNEL
);
132 status
= NVME_SC_INTERNAL
;
136 status
= nvmet_copy_from_sgl(req
, 0, d
, sizeof(*d
));
140 /* zero out initial completion result, assign values as needed */
141 req
->rsp
->result
.u32
= 0;
143 if (c
->recfmt
!= 0) {
144 pr_warn("invalid connect version (%d).\n",
145 le16_to_cpu(c
->recfmt
));
146 status
= NVME_SC_CONNECT_FORMAT
| NVME_SC_DNR
;
150 if (unlikely(d
->cntlid
!= cpu_to_le16(0xffff))) {
151 pr_warn("connect attempt for invalid controller ID %#x\n",
153 status
= NVME_SC_CONNECT_INVALID_PARAM
| NVME_SC_DNR
;
154 req
->rsp
->result
.u32
= IPO_IATTR_CONNECT_DATA(cntlid
);
158 status
= nvmet_alloc_ctrl(d
->subsysnqn
, d
->hostnqn
, req
,
159 le32_to_cpu(c
->kato
), &ctrl
);
162 uuid_copy(&ctrl
->hostid
, &d
->hostid
);
164 status
= nvmet_install_queue(ctrl
, req
);
166 nvmet_ctrl_put(ctrl
);
170 pr_info("creating controller %d for subsystem %s for NQN %s.\n",
171 ctrl
->cntlid
, ctrl
->subsys
->subsysnqn
, ctrl
->hostnqn
);
172 req
->rsp
->result
.u16
= cpu_to_le16(ctrl
->cntlid
);
177 nvmet_req_complete(req
, status
);
180 static void nvmet_execute_io_connect(struct nvmet_req
*req
)
182 struct nvmf_connect_command
*c
= &req
->cmd
->connect
;
183 struct nvmf_connect_data
*d
;
184 struct nvmet_ctrl
*ctrl
= NULL
;
185 u16 qid
= le16_to_cpu(c
->qid
);
188 d
= kmalloc(sizeof(*d
), GFP_KERNEL
);
190 status
= NVME_SC_INTERNAL
;
194 status
= nvmet_copy_from_sgl(req
, 0, d
, sizeof(*d
));
198 /* zero out initial completion result, assign values as needed */
199 req
->rsp
->result
.u32
= 0;
201 if (c
->recfmt
!= 0) {
202 pr_warn("invalid connect version (%d).\n",
203 le16_to_cpu(c
->recfmt
));
204 status
= NVME_SC_CONNECT_FORMAT
| NVME_SC_DNR
;
208 status
= nvmet_ctrl_find_get(d
->subsysnqn
, d
->hostnqn
,
209 le16_to_cpu(d
->cntlid
),
214 if (unlikely(qid
> ctrl
->subsys
->max_qid
)) {
215 pr_warn("invalid queue id (%d)\n", qid
);
216 status
= NVME_SC_CONNECT_INVALID_PARAM
| NVME_SC_DNR
;
217 req
->rsp
->result
.u32
= IPO_IATTR_CONNECT_SQE(qid
);
221 status
= nvmet_install_queue(ctrl
, req
);
223 /* pass back cntlid that had the issue of installing queue */
224 req
->rsp
->result
.u16
= cpu_to_le16(ctrl
->cntlid
);
228 pr_debug("adding queue %d to ctrl %d.\n", qid
, ctrl
->cntlid
);
233 nvmet_req_complete(req
, status
);
237 nvmet_ctrl_put(ctrl
);
241 u16
nvmet_parse_connect_cmd(struct nvmet_req
*req
)
243 struct nvme_command
*cmd
= req
->cmd
;
247 if (cmd
->common
.opcode
!= nvme_fabrics_command
) {
248 pr_err("invalid command 0x%x on unconnected queue.\n",
249 cmd
->fabrics
.opcode
);
250 return NVME_SC_INVALID_OPCODE
| NVME_SC_DNR
;
252 if (cmd
->fabrics
.fctype
!= nvme_fabrics_type_connect
) {
253 pr_err("invalid capsule type 0x%x on unconnected queue.\n",
254 cmd
->fabrics
.fctype
);
255 return NVME_SC_INVALID_OPCODE
| NVME_SC_DNR
;
258 req
->data_len
= sizeof(struct nvmf_connect_data
);
259 if (cmd
->connect
.qid
== 0)
260 req
->execute
= nvmet_execute_admin_connect
;
262 req
->execute
= nvmet_execute_io_connect
;