Christoph Hellwig | 9002c4e | 2019-02-18 09:31:03 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 2 | /* |
| 3 | * NVMe over Fabrics common host code. |
| 4 | * Copyright (c) 2015-2016 HGST, a Western Digital Company. |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 5 | */ |
| 6 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 7 | #include <linux/init.h> |
| 8 | #include <linux/miscdevice.h> |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/mutex.h> |
| 11 | #include <linux/parser.h> |
| 12 | #include <linux/seq_file.h> |
| 13 | #include "nvme.h" |
| 14 | #include "fabrics.h" |
| 15 | |
| 16 | static LIST_HEAD(nvmf_transports); |
Roland Dreier | 489beb9 | 2017-08-29 10:33:44 -0700 | [diff] [blame] | 17 | static DECLARE_RWSEM(nvmf_transports_rwsem); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 18 | |
| 19 | static LIST_HEAD(nvmf_hosts); |
| 20 | static DEFINE_MUTEX(nvmf_hosts_mutex); |
| 21 | |
| 22 | static struct nvmf_host *nvmf_default_host; |
| 23 | |
| 24 | static struct nvmf_host *__nvmf_host_find(const char *hostnqn) |
| 25 | { |
| 26 | struct nvmf_host *host; |
| 27 | |
| 28 | list_for_each_entry(host, &nvmf_hosts, list) { |
| 29 | if (!strcmp(host->nqn, hostnqn)) |
| 30 | return host; |
| 31 | } |
| 32 | |
| 33 | return NULL; |
| 34 | } |
| 35 | |
| 36 | static struct nvmf_host *nvmf_host_add(const char *hostnqn) |
| 37 | { |
| 38 | struct nvmf_host *host; |
| 39 | |
| 40 | mutex_lock(&nvmf_hosts_mutex); |
| 41 | host = __nvmf_host_find(hostnqn); |
Christoph Hellwig | 98096d8 | 2016-08-18 11:16:35 -0700 | [diff] [blame] | 42 | if (host) { |
| 43 | kref_get(&host->ref); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 44 | goto out_unlock; |
Christoph Hellwig | 98096d8 | 2016-08-18 11:16:35 -0700 | [diff] [blame] | 45 | } |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 46 | |
| 47 | host = kmalloc(sizeof(*host), GFP_KERNEL); |
| 48 | if (!host) |
| 49 | goto out_unlock; |
| 50 | |
| 51 | kref_init(&host->ref); |
Hannes Reinecke | 1e5f446 | 2018-05-25 11:04:03 +0200 | [diff] [blame] | 52 | strlcpy(host->nqn, hostnqn, NVMF_NQN_SIZE); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 53 | |
| 54 | list_add_tail(&host->list, &nvmf_hosts); |
| 55 | out_unlock: |
| 56 | mutex_unlock(&nvmf_hosts_mutex); |
| 57 | return host; |
| 58 | } |
| 59 | |
| 60 | static struct nvmf_host *nvmf_host_default(void) |
| 61 | { |
| 62 | struct nvmf_host *host; |
| 63 | |
| 64 | host = kmalloc(sizeof(*host), GFP_KERNEL); |
| 65 | if (!host) |
| 66 | return NULL; |
| 67 | |
| 68 | kref_init(&host->ref); |
Ewan D. Milne | 6b01823 | 2018-01-05 12:44:06 -0500 | [diff] [blame] | 69 | uuid_gen(&host->id); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 70 | snprintf(host->nqn, NVMF_NQN_SIZE, |
Daniel Verkamp | 40a5fce | 2017-08-30 15:18:19 -0700 | [diff] [blame] | 71 | "nqn.2014-08.org.nvmexpress:uuid:%pUb", &host->id); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 72 | |
| 73 | mutex_lock(&nvmf_hosts_mutex); |
| 74 | list_add_tail(&host->list, &nvmf_hosts); |
| 75 | mutex_unlock(&nvmf_hosts_mutex); |
| 76 | |
| 77 | return host; |
| 78 | } |
| 79 | |
| 80 | static void nvmf_host_destroy(struct kref *ref) |
| 81 | { |
| 82 | struct nvmf_host *host = container_of(ref, struct nvmf_host, ref); |
| 83 | |
Ming Lin | e76debd | 2016-07-01 12:13:32 -0700 | [diff] [blame] | 84 | mutex_lock(&nvmf_hosts_mutex); |
| 85 | list_del(&host->list); |
| 86 | mutex_unlock(&nvmf_hosts_mutex); |
| 87 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 88 | kfree(host); |
| 89 | } |
| 90 | |
| 91 | static void nvmf_host_put(struct nvmf_host *host) |
| 92 | { |
| 93 | if (host) |
| 94 | kref_put(&host->ref, nvmf_host_destroy); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * nvmf_get_address() - Get address/port |
| 99 | * @ctrl: Host NVMe controller instance which we got the address |
| 100 | * @buf: OUTPUT parameter that will contain the address/port |
| 101 | * @size: buffer size |
| 102 | */ |
| 103 | int nvmf_get_address(struct nvme_ctrl *ctrl, char *buf, int size) |
| 104 | { |
James Smart | 0fe51ff | 2016-08-02 10:40:01 +0300 | [diff] [blame] | 105 | int len = 0; |
| 106 | |
| 107 | if (ctrl->opts->mask & NVMF_OPT_TRADDR) |
Takashi Iwai | 8d8a50e | 2020-03-11 09:50:37 +0100 | [diff] [blame] | 108 | len += scnprintf(buf, size, "traddr=%s", ctrl->opts->traddr); |
James Smart | 0fe51ff | 2016-08-02 10:40:01 +0300 | [diff] [blame] | 109 | if (ctrl->opts->mask & NVMF_OPT_TRSVCID) |
Takashi Iwai | 8d8a50e | 2020-03-11 09:50:37 +0100 | [diff] [blame] | 110 | len += scnprintf(buf + len, size - len, "%strsvcid=%s", |
James Smart | 0fe51ff | 2016-08-02 10:40:01 +0300 | [diff] [blame] | 111 | (len) ? "," : "", ctrl->opts->trsvcid); |
James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 112 | if (ctrl->opts->mask & NVMF_OPT_HOST_TRADDR) |
Takashi Iwai | 8d8a50e | 2020-03-11 09:50:37 +0100 | [diff] [blame] | 113 | len += scnprintf(buf + len, size - len, "%shost_traddr=%s", |
James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 114 | (len) ? "," : "", ctrl->opts->host_traddr); |
Martin Belanger | 3ede8f7 | 2021-05-20 15:09:34 -0400 | [diff] [blame] | 115 | if (ctrl->opts->mask & NVMF_OPT_HOST_IFACE) |
| 116 | len += scnprintf(buf + len, size - len, "%shost_iface=%s", |
| 117 | (len) ? "," : "", ctrl->opts->host_iface); |
Takashi Iwai | 8d8a50e | 2020-03-11 09:50:37 +0100 | [diff] [blame] | 118 | len += scnprintf(buf + len, size - len, "\n"); |
James Smart | 0fe51ff | 2016-08-02 10:40:01 +0300 | [diff] [blame] | 119 | |
| 120 | return len; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 121 | } |
| 122 | EXPORT_SYMBOL_GPL(nvmf_get_address); |
| 123 | |
| 124 | /** |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 125 | * nvmf_reg_read32() - NVMe Fabrics "Property Get" API function. |
| 126 | * @ctrl: Host NVMe controller instance maintaining the admin |
| 127 | * queue used to submit the property read command to |
| 128 | * the allocated NVMe controller resource on the target system. |
| 129 | * @off: Starting offset value of the targeted property |
| 130 | * register (see the fabrics section of the NVMe standard). |
| 131 | * @val: OUTPUT parameter that will contain the value of |
| 132 | * the property after a successful read. |
| 133 | * |
| 134 | * Used by the host system to retrieve a 32-bit capsule property value |
| 135 | * from an NVMe controller on the target system. |
| 136 | * |
| 137 | * ("Capsule property" is an "PCIe register concept" applied to the |
| 138 | * NVMe fabrics space.) |
| 139 | * |
| 140 | * Return: |
| 141 | * 0: successful read |
| 142 | * > 0: NVMe error status code |
| 143 | * < 0: Linux errno error code |
| 144 | */ |
| 145 | int nvmf_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val) |
| 146 | { |
| 147 | struct nvme_command cmd; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 148 | union nvme_result res; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 149 | int ret; |
| 150 | |
| 151 | memset(&cmd, 0, sizeof(cmd)); |
| 152 | cmd.prop_get.opcode = nvme_fabrics_command; |
| 153 | cmd.prop_get.fctype = nvme_fabrics_type_property_get; |
| 154 | cmd.prop_get.offset = cpu_to_le32(off); |
| 155 | |
Sagi Grimberg | e7832cb | 2019-08-02 19:33:59 -0700 | [diff] [blame] | 156 | ret = __nvme_submit_sync_cmd(ctrl->fabrics_q, &cmd, &res, NULL, 0, 0, |
Keith Busch | be42a33 | 2021-06-10 14:44:35 -0700 | [diff] [blame] | 157 | NVME_QID_ANY, 0, 0); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 158 | |
| 159 | if (ret >= 0) |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 160 | *val = le64_to_cpu(res.u64); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 161 | if (unlikely(ret != 0)) |
| 162 | dev_err(ctrl->device, |
| 163 | "Property Get error: %d, offset %#x\n", |
| 164 | ret > 0 ? ret & ~NVME_SC_DNR : ret, off); |
| 165 | |
| 166 | return ret; |
| 167 | } |
| 168 | EXPORT_SYMBOL_GPL(nvmf_reg_read32); |
| 169 | |
| 170 | /** |
| 171 | * nvmf_reg_read64() - NVMe Fabrics "Property Get" API function. |
| 172 | * @ctrl: Host NVMe controller instance maintaining the admin |
| 173 | * queue used to submit the property read command to |
| 174 | * the allocated controller resource on the target system. |
| 175 | * @off: Starting offset value of the targeted property |
| 176 | * register (see the fabrics section of the NVMe standard). |
| 177 | * @val: OUTPUT parameter that will contain the value of |
| 178 | * the property after a successful read. |
| 179 | * |
| 180 | * Used by the host system to retrieve a 64-bit capsule property value |
| 181 | * from an NVMe controller on the target system. |
| 182 | * |
| 183 | * ("Capsule property" is an "PCIe register concept" applied to the |
| 184 | * NVMe fabrics space.) |
| 185 | * |
| 186 | * Return: |
| 187 | * 0: successful read |
| 188 | * > 0: NVMe error status code |
| 189 | * < 0: Linux errno error code |
| 190 | */ |
| 191 | int nvmf_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val) |
| 192 | { |
Chaitanya Kulkarni | 2796a8e | 2021-06-14 19:45:51 -0700 | [diff] [blame] | 193 | struct nvme_command cmd = { }; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 194 | union nvme_result res; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 195 | int ret; |
| 196 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 197 | cmd.prop_get.opcode = nvme_fabrics_command; |
| 198 | cmd.prop_get.fctype = nvme_fabrics_type_property_get; |
| 199 | cmd.prop_get.attrib = 1; |
| 200 | cmd.prop_get.offset = cpu_to_le32(off); |
| 201 | |
Sagi Grimberg | e7832cb | 2019-08-02 19:33:59 -0700 | [diff] [blame] | 202 | ret = __nvme_submit_sync_cmd(ctrl->fabrics_q, &cmd, &res, NULL, 0, 0, |
Keith Busch | be42a33 | 2021-06-10 14:44:35 -0700 | [diff] [blame] | 203 | NVME_QID_ANY, 0, 0); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 204 | |
| 205 | if (ret >= 0) |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 206 | *val = le64_to_cpu(res.u64); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 207 | if (unlikely(ret != 0)) |
| 208 | dev_err(ctrl->device, |
| 209 | "Property Get error: %d, offset %#x\n", |
| 210 | ret > 0 ? ret & ~NVME_SC_DNR : ret, off); |
| 211 | return ret; |
| 212 | } |
| 213 | EXPORT_SYMBOL_GPL(nvmf_reg_read64); |
| 214 | |
| 215 | /** |
| 216 | * nvmf_reg_write32() - NVMe Fabrics "Property Write" API function. |
| 217 | * @ctrl: Host NVMe controller instance maintaining the admin |
| 218 | * queue used to submit the property read command to |
| 219 | * the allocated NVMe controller resource on the target system. |
| 220 | * @off: Starting offset value of the targeted property |
| 221 | * register (see the fabrics section of the NVMe standard). |
| 222 | * @val: Input parameter that contains the value to be |
| 223 | * written to the property. |
| 224 | * |
| 225 | * Used by the NVMe host system to write a 32-bit capsule property value |
| 226 | * to an NVMe controller on the target system. |
| 227 | * |
| 228 | * ("Capsule property" is an "PCIe register concept" applied to the |
| 229 | * NVMe fabrics space.) |
| 230 | * |
| 231 | * Return: |
| 232 | * 0: successful write |
| 233 | * > 0: NVMe error status code |
| 234 | * < 0: Linux errno error code |
| 235 | */ |
| 236 | int nvmf_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val) |
| 237 | { |
Chaitanya Kulkarni | c22c272 | 2021-06-14 19:45:52 -0700 | [diff] [blame] | 238 | struct nvme_command cmd = { }; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 239 | int ret; |
| 240 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 241 | cmd.prop_set.opcode = nvme_fabrics_command; |
| 242 | cmd.prop_set.fctype = nvme_fabrics_type_property_set; |
| 243 | cmd.prop_set.attrib = 0; |
| 244 | cmd.prop_set.offset = cpu_to_le32(off); |
| 245 | cmd.prop_set.value = cpu_to_le64(val); |
| 246 | |
Sagi Grimberg | e7832cb | 2019-08-02 19:33:59 -0700 | [diff] [blame] | 247 | ret = __nvme_submit_sync_cmd(ctrl->fabrics_q, &cmd, NULL, NULL, 0, 0, |
Keith Busch | be42a33 | 2021-06-10 14:44:35 -0700 | [diff] [blame] | 248 | NVME_QID_ANY, 0, 0); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 249 | if (unlikely(ret)) |
| 250 | dev_err(ctrl->device, |
| 251 | "Property Set error: %d, offset %#x\n", |
| 252 | ret > 0 ? ret & ~NVME_SC_DNR : ret, off); |
| 253 | return ret; |
| 254 | } |
| 255 | EXPORT_SYMBOL_GPL(nvmf_reg_write32); |
| 256 | |
| 257 | /** |
Chaitanya Kulkarni | 25e1de8 | 2021-05-21 15:41:57 -0700 | [diff] [blame] | 258 | * nvmf_log_connect_error() - Error-parsing-diagnostic print out function for |
| 259 | * connect() errors. |
| 260 | * @ctrl: The specific /dev/nvmeX device that had the error. |
| 261 | * @errval: Error code to be decoded in a more human-friendly |
| 262 | * printout. |
| 263 | * @offset: For use with the NVMe error code |
| 264 | * NVME_SC_CONNECT_INVALID_PARAM. |
| 265 | * @cmd: This is the SQE portion of a submission capsule. |
| 266 | * @data: This is the "Data" portion of a submission capsule. |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 267 | */ |
| 268 | static void nvmf_log_connect_error(struct nvme_ctrl *ctrl, |
| 269 | int errval, int offset, struct nvme_command *cmd, |
| 270 | struct nvmf_connect_data *data) |
| 271 | { |
Chaitanya Kulkarni | 97ba693 | 2021-05-21 15:42:00 -0700 | [diff] [blame] | 272 | int err_sctype = errval & ~NVME_SC_DNR; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 273 | |
| 274 | switch (err_sctype) { |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 275 | case (NVME_SC_CONNECT_INVALID_PARAM): |
| 276 | if (offset >> 16) { |
| 277 | char *inv_data = "Connect Invalid Data Parameter"; |
| 278 | |
| 279 | switch (offset & 0xffff) { |
| 280 | case (offsetof(struct nvmf_connect_data, cntlid)): |
| 281 | dev_err(ctrl->device, |
| 282 | "%s, cntlid: %d\n", |
| 283 | inv_data, data->cntlid); |
| 284 | break; |
| 285 | case (offsetof(struct nvmf_connect_data, hostnqn)): |
| 286 | dev_err(ctrl->device, |
| 287 | "%s, hostnqn \"%s\"\n", |
| 288 | inv_data, data->hostnqn); |
| 289 | break; |
| 290 | case (offsetof(struct nvmf_connect_data, subsysnqn)): |
| 291 | dev_err(ctrl->device, |
| 292 | "%s, subsysnqn \"%s\"\n", |
| 293 | inv_data, data->subsysnqn); |
| 294 | break; |
| 295 | default: |
| 296 | dev_err(ctrl->device, |
| 297 | "%s, starting byte offset: %d\n", |
| 298 | inv_data, offset & 0xffff); |
| 299 | break; |
| 300 | } |
| 301 | } else { |
| 302 | char *inv_sqe = "Connect Invalid SQE Parameter"; |
| 303 | |
| 304 | switch (offset) { |
| 305 | case (offsetof(struct nvmf_connect_command, qid)): |
| 306 | dev_err(ctrl->device, |
| 307 | "%s, qid %d\n", |
| 308 | inv_sqe, cmd->connect.qid); |
| 309 | break; |
| 310 | default: |
| 311 | dev_err(ctrl->device, |
| 312 | "%s, starting byte offset: %d\n", |
| 313 | inv_sqe, offset); |
| 314 | } |
| 315 | } |
| 316 | break; |
Guan Junxiong | 97ddc36e | 2017-06-13 10:51:24 +0800 | [diff] [blame] | 317 | case NVME_SC_CONNECT_INVALID_HOST: |
| 318 | dev_err(ctrl->device, |
| 319 | "Connect for subsystem %s is not allowed, hostnqn: %s\n", |
| 320 | data->subsysnqn, data->hostnqn); |
| 321 | break; |
Guan Junxiong | 97ddc36e | 2017-06-13 10:51:24 +0800 | [diff] [blame] | 322 | case NVME_SC_CONNECT_CTRL_BUSY: |
| 323 | dev_err(ctrl->device, |
| 324 | "Connect command failed: controller is busy or not available\n"); |
| 325 | break; |
Guan Junxiong | 97ddc36e | 2017-06-13 10:51:24 +0800 | [diff] [blame] | 326 | case NVME_SC_CONNECT_FORMAT: |
| 327 | dev_err(ctrl->device, |
| 328 | "Connect incompatible format: %d", |
| 329 | cmd->connect.recfmt); |
| 330 | break; |
Chaitanya Kulkarni | 63d20f5 | 2021-06-03 10:28:03 +0300 | [diff] [blame] | 331 | case NVME_SC_HOST_PATH_ERROR: |
| 332 | dev_err(ctrl->device, |
| 333 | "Connect command failed: host path error\n"); |
| 334 | break; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 335 | default: |
| 336 | dev_err(ctrl->device, |
| 337 | "Connect command failed, error wo/DNR bit: %d\n", |
| 338 | err_sctype); |
| 339 | break; |
Chaitanya Kulkarni | 6f860c9 | 2021-05-21 15:41:59 -0700 | [diff] [blame] | 340 | } |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /** |
| 344 | * nvmf_connect_admin_queue() - NVMe Fabrics Admin Queue "Connect" |
| 345 | * API function. |
| 346 | * @ctrl: Host nvme controller instance used to request |
| 347 | * a new NVMe controller allocation on the target |
| 348 | * system and establish an NVMe Admin connection to |
| 349 | * that controller. |
| 350 | * |
| 351 | * This function enables an NVMe host device to request a new allocation of |
| 352 | * an NVMe controller resource on a target system as well establish a |
| 353 | * fabrics-protocol connection of the NVMe Admin queue between the |
| 354 | * host system device and the allocated NVMe controller on the |
| 355 | * target system via a NVMe Fabrics "Connect" command. |
| 356 | * |
| 357 | * Return: |
| 358 | * 0: success |
| 359 | * > 0: NVMe error status code |
| 360 | * < 0: Linux errno error code |
| 361 | * |
| 362 | */ |
| 363 | int nvmf_connect_admin_queue(struct nvme_ctrl *ctrl) |
| 364 | { |
Chaitanya Kulkarni | bfa9d12 | 2021-06-14 19:45:53 -0700 | [diff] [blame] | 365 | struct nvme_command cmd = { }; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 366 | union nvme_result res; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 367 | struct nvmf_connect_data *data; |
| 368 | int ret; |
| 369 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 370 | cmd.connect.opcode = nvme_fabrics_command; |
| 371 | cmd.connect.fctype = nvme_fabrics_type_connect; |
| 372 | cmd.connect.qid = 0; |
Sagi Grimberg | 7aa1f42 | 2017-06-18 16:15:59 +0300 | [diff] [blame] | 373 | cmd.connect.sqsize = cpu_to_le16(NVME_AQ_DEPTH - 1); |
Jay Freyensee | f994d9d | 2016-08-17 15:00:26 -0700 | [diff] [blame] | 374 | |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 375 | /* |
| 376 | * Set keep-alive timeout in seconds granularity (ms * 1000) |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 377 | */ |
Hannes Reinecke | a70b81b | 2021-04-16 13:46:20 +0200 | [diff] [blame] | 378 | cmd.connect.kato = cpu_to_le32(ctrl->kato * 1000); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 379 | |
Sagi Grimberg | 8154ed7 | 2018-11-19 14:11:15 -0800 | [diff] [blame] | 380 | if (ctrl->opts->disable_sqflow) |
| 381 | cmd.connect.cattr |= NVME_CONNECT_DISABLE_SQFLOW; |
| 382 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 383 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 384 | if (!data) |
| 385 | return -ENOMEM; |
| 386 | |
Christoph Hellwig | 8e41226 | 2017-05-17 09:54:27 +0200 | [diff] [blame] | 387 | uuid_copy(&data->hostid, &ctrl->opts->host->id); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 388 | data->cntlid = cpu_to_le16(0xffff); |
| 389 | strncpy(data->subsysnqn, ctrl->opts->subsysnqn, NVMF_NQN_SIZE); |
| 390 | strncpy(data->hostnqn, ctrl->opts->host->nqn, NVMF_NQN_SIZE); |
| 391 | |
Sagi Grimberg | e7832cb | 2019-08-02 19:33:59 -0700 | [diff] [blame] | 392 | ret = __nvme_submit_sync_cmd(ctrl->fabrics_q, &cmd, &res, |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 393 | data, sizeof(*data), 0, NVME_QID_ANY, 1, |
Keith Busch | be42a33 | 2021-06-10 14:44:35 -0700 | [diff] [blame] | 394 | BLK_MQ_REQ_RESERVED | BLK_MQ_REQ_NOWAIT); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 395 | if (ret) { |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 396 | nvmf_log_connect_error(ctrl, ret, le32_to_cpu(res.u32), |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 397 | &cmd, data); |
| 398 | goto out_free_data; |
| 399 | } |
| 400 | |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 401 | ctrl->cntlid = le16_to_cpu(res.u16); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 402 | |
| 403 | out_free_data: |
| 404 | kfree(data); |
| 405 | return ret; |
| 406 | } |
| 407 | EXPORT_SYMBOL_GPL(nvmf_connect_admin_queue); |
| 408 | |
| 409 | /** |
| 410 | * nvmf_connect_io_queue() - NVMe Fabrics I/O Queue "Connect" |
| 411 | * API function. |
| 412 | * @ctrl: Host nvme controller instance used to establish an |
| 413 | * NVMe I/O queue connection to the already allocated NVMe |
| 414 | * controller on the target system. |
| 415 | * @qid: NVMe I/O queue number for the new I/O connection between |
| 416 | * host and target (note qid == 0 is illegal as this is |
| 417 | * the Admin queue, per NVMe standard). |
| 418 | * |
| 419 | * This function issues a fabrics-protocol connection |
| 420 | * of a NVMe I/O queue (via NVMe Fabrics "Connect" command) |
| 421 | * between the host system device and the allocated NVMe controller |
| 422 | * on the target system. |
| 423 | * |
| 424 | * Return: |
| 425 | * 0: success |
| 426 | * > 0: NVMe error status code |
| 427 | * < 0: Linux errno error code |
| 428 | */ |
Keith Busch | be42a33 | 2021-06-10 14:44:35 -0700 | [diff] [blame] | 429 | int nvmf_connect_io_queue(struct nvme_ctrl *ctrl, u16 qid) |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 430 | { |
Chaitanya Kulkarni | eff4423 | 2021-06-14 19:45:54 -0700 | [diff] [blame] | 431 | struct nvme_command cmd = { }; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 432 | struct nvmf_connect_data *data; |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 433 | union nvme_result res; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 434 | int ret; |
| 435 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 436 | cmd.connect.opcode = nvme_fabrics_command; |
| 437 | cmd.connect.fctype = nvme_fabrics_type_connect; |
| 438 | cmd.connect.qid = cpu_to_le16(qid); |
| 439 | cmd.connect.sqsize = cpu_to_le16(ctrl->sqsize); |
| 440 | |
Sagi Grimberg | 8154ed7 | 2018-11-19 14:11:15 -0800 | [diff] [blame] | 441 | if (ctrl->opts->disable_sqflow) |
| 442 | cmd.connect.cattr |= NVME_CONNECT_DISABLE_SQFLOW; |
| 443 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 444 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 445 | if (!data) |
| 446 | return -ENOMEM; |
| 447 | |
Christoph Hellwig | 8e41226 | 2017-05-17 09:54:27 +0200 | [diff] [blame] | 448 | uuid_copy(&data->hostid, &ctrl->opts->host->id); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 449 | data->cntlid = cpu_to_le16(ctrl->cntlid); |
| 450 | strncpy(data->subsysnqn, ctrl->opts->subsysnqn, NVMF_NQN_SIZE); |
| 451 | strncpy(data->hostnqn, ctrl->opts->host->nqn, NVMF_NQN_SIZE); |
| 452 | |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 453 | ret = __nvme_submit_sync_cmd(ctrl->connect_q, &cmd, &res, |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 454 | data, sizeof(*data), 0, qid, 1, |
Keith Busch | be42a33 | 2021-06-10 14:44:35 -0700 | [diff] [blame] | 455 | BLK_MQ_REQ_RESERVED | BLK_MQ_REQ_NOWAIT); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 456 | if (ret) { |
Christoph Hellwig | d49187e | 2016-11-10 07:32:33 -0800 | [diff] [blame] | 457 | nvmf_log_connect_error(ctrl, ret, le32_to_cpu(res.u32), |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 458 | &cmd, data); |
| 459 | } |
| 460 | kfree(data); |
| 461 | return ret; |
| 462 | } |
| 463 | EXPORT_SYMBOL_GPL(nvmf_connect_io_queue); |
| 464 | |
Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 465 | bool nvmf_should_reconnect(struct nvme_ctrl *ctrl) |
| 466 | { |
Tal Shorer | 66414e8 | 2018-08-07 23:42:39 +0300 | [diff] [blame] | 467 | if (ctrl->opts->max_reconnects == -1 || |
Sagi Grimberg | fdf9dfa | 2017-05-04 13:33:15 +0300 | [diff] [blame] | 468 | ctrl->nr_reconnects < ctrl->opts->max_reconnects) |
Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 469 | return true; |
| 470 | |
| 471 | return false; |
| 472 | } |
| 473 | EXPORT_SYMBOL_GPL(nvmf_should_reconnect); |
| 474 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 475 | /** |
| 476 | * nvmf_register_transport() - NVMe Fabrics Library registration function. |
| 477 | * @ops: Transport ops instance to be registered to the |
| 478 | * common fabrics library. |
| 479 | * |
| 480 | * API function that registers the type of specific transport fabric |
| 481 | * being implemented to the common NVMe fabrics library. Part of |
| 482 | * the overall init sequence of starting up a fabrics driver. |
| 483 | */ |
Johannes Thumshirn | e5a39dd | 2017-01-27 09:03:45 +0100 | [diff] [blame] | 484 | int nvmf_register_transport(struct nvmf_transport_ops *ops) |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 485 | { |
Christoph Hellwig | 5a1e595 | 2018-02-22 07:24:08 -0800 | [diff] [blame] | 486 | if (!ops->create_ctrl) |
Johannes Thumshirn | e5a39dd | 2017-01-27 09:03:45 +0100 | [diff] [blame] | 487 | return -EINVAL; |
| 488 | |
Roland Dreier | 489beb9 | 2017-08-29 10:33:44 -0700 | [diff] [blame] | 489 | down_write(&nvmf_transports_rwsem); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 490 | list_add_tail(&ops->entry, &nvmf_transports); |
Roland Dreier | 489beb9 | 2017-08-29 10:33:44 -0700 | [diff] [blame] | 491 | up_write(&nvmf_transports_rwsem); |
Johannes Thumshirn | e5a39dd | 2017-01-27 09:03:45 +0100 | [diff] [blame] | 492 | |
| 493 | return 0; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 494 | } |
| 495 | EXPORT_SYMBOL_GPL(nvmf_register_transport); |
| 496 | |
| 497 | /** |
| 498 | * nvmf_unregister_transport() - NVMe Fabrics Library unregistration function. |
| 499 | * @ops: Transport ops instance to be unregistered from the |
| 500 | * common fabrics library. |
| 501 | * |
| 502 | * Fabrics API function that unregisters the type of specific transport |
| 503 | * fabric being implemented from the common NVMe fabrics library. |
| 504 | * Part of the overall exit sequence of unloading the implemented driver. |
| 505 | */ |
| 506 | void nvmf_unregister_transport(struct nvmf_transport_ops *ops) |
| 507 | { |
Roland Dreier | 489beb9 | 2017-08-29 10:33:44 -0700 | [diff] [blame] | 508 | down_write(&nvmf_transports_rwsem); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 509 | list_del(&ops->entry); |
Roland Dreier | 489beb9 | 2017-08-29 10:33:44 -0700 | [diff] [blame] | 510 | up_write(&nvmf_transports_rwsem); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 511 | } |
| 512 | EXPORT_SYMBOL_GPL(nvmf_unregister_transport); |
| 513 | |
| 514 | static struct nvmf_transport_ops *nvmf_lookup_transport( |
| 515 | struct nvmf_ctrl_options *opts) |
| 516 | { |
| 517 | struct nvmf_transport_ops *ops; |
| 518 | |
Roland Dreier | 489beb9 | 2017-08-29 10:33:44 -0700 | [diff] [blame] | 519 | lockdep_assert_held(&nvmf_transports_rwsem); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 520 | |
| 521 | list_for_each_entry(ops, &nvmf_transports, entry) { |
| 522 | if (strcmp(ops->name, opts->transport) == 0) |
| 523 | return ops; |
| 524 | } |
| 525 | |
| 526 | return NULL; |
| 527 | } |
| 528 | |
| 529 | static const match_table_t opt_tokens = { |
| 530 | { NVMF_OPT_TRANSPORT, "transport=%s" }, |
| 531 | { NVMF_OPT_TRADDR, "traddr=%s" }, |
| 532 | { NVMF_OPT_TRSVCID, "trsvcid=%s" }, |
| 533 | { NVMF_OPT_NQN, "nqn=%s" }, |
| 534 | { NVMF_OPT_QUEUE_SIZE, "queue_size=%d" }, |
| 535 | { NVMF_OPT_NR_IO_QUEUES, "nr_io_queues=%d" }, |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 536 | { NVMF_OPT_RECONNECT_DELAY, "reconnect_delay=%d" }, |
Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 537 | { NVMF_OPT_CTRL_LOSS_TMO, "ctrl_loss_tmo=%d" }, |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 538 | { NVMF_OPT_KATO, "keep_alive_tmo=%d" }, |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 539 | { NVMF_OPT_HOSTNQN, "hostnqn=%s" }, |
James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 540 | { NVMF_OPT_HOST_TRADDR, "host_traddr=%s" }, |
Martin Belanger | 3ede8f7 | 2021-05-20 15:09:34 -0400 | [diff] [blame] | 541 | { NVMF_OPT_HOST_IFACE, "host_iface=%s" }, |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 542 | { NVMF_OPT_HOST_ID, "hostid=%s" }, |
James Smart | 3b33876 | 2017-10-20 16:17:06 -0700 | [diff] [blame] | 543 | { NVMF_OPT_DUP_CONNECT, "duplicate_connect" }, |
Sagi Grimberg | 8154ed7 | 2018-11-19 14:11:15 -0800 | [diff] [blame] | 544 | { NVMF_OPT_DISABLE_SQFLOW, "disable_sqflow" }, |
Sagi Grimberg | 3b49fa8 | 2018-12-03 17:52:12 -0800 | [diff] [blame] | 545 | { NVMF_OPT_HDR_DIGEST, "hdr_digest" }, |
Sagi Grimberg | 20d44e8 | 2018-12-03 17:52:13 -0800 | [diff] [blame] | 546 | { NVMF_OPT_DATA_DIGEST, "data_digest" }, |
Sagi Grimberg | 330f6b8 | 2018-12-11 23:38:56 -0800 | [diff] [blame] | 547 | { NVMF_OPT_NR_WRITE_QUEUES, "nr_write_queues=%d" }, |
Sagi Grimberg | 89d4380 | 2018-12-14 11:06:09 -0800 | [diff] [blame] | 548 | { NVMF_OPT_NR_POLL_QUEUES, "nr_poll_queues=%d" }, |
Israel Rukshin | 52b4451 | 2019-08-18 12:08:51 +0300 | [diff] [blame] | 549 | { NVMF_OPT_TOS, "tos=%d" }, |
Victor Gladkov | 8c4dfea | 2020-11-24 18:34:59 +0000 | [diff] [blame] | 550 | { NVMF_OPT_FAIL_FAST_TMO, "fast_io_fail_tmo=%d" }, |
Hannes Reinecke | 20e8b68 | 2021-09-22 08:35:24 +0200 | [diff] [blame] | 551 | { NVMF_OPT_DISCOVERY, "discovery" }, |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 552 | { NVMF_OPT_ERR, NULL } |
| 553 | }; |
| 554 | |
| 555 | static int nvmf_parse_options(struct nvmf_ctrl_options *opts, |
| 556 | const char *buf) |
| 557 | { |
| 558 | substring_t args[MAX_OPT_ARGS]; |
| 559 | char *options, *o, *p; |
| 560 | int token, ret = 0; |
| 561 | size_t nqnlen = 0; |
Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 562 | int ctrl_loss_tmo = NVMF_DEF_CTRL_LOSS_TMO; |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 563 | uuid_t hostid; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 564 | |
| 565 | /* Set defaults */ |
| 566 | opts->queue_size = NVMF_DEF_QUEUE_SIZE; |
| 567 | opts->nr_io_queues = num_online_cpus(); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 568 | opts->reconnect_delay = NVMF_DEF_RECONNECT_DELAY; |
Martin George | 32feb6d | 2021-02-11 23:28:26 +0530 | [diff] [blame] | 569 | opts->kato = 0; |
James Smart | 3b33876 | 2017-10-20 16:17:06 -0700 | [diff] [blame] | 570 | opts->duplicate_connect = false; |
Victor Gladkov | 8c4dfea | 2020-11-24 18:34:59 +0000 | [diff] [blame] | 571 | opts->fast_io_fail_tmo = NVMF_DEF_FAIL_FAST_TMO; |
Sagi Grimberg | 3b49fa8 | 2018-12-03 17:52:12 -0800 | [diff] [blame] | 572 | opts->hdr_digest = false; |
Sagi Grimberg | 20d44e8 | 2018-12-03 17:52:13 -0800 | [diff] [blame] | 573 | opts->data_digest = false; |
Israel Rukshin | 52b4451 | 2019-08-18 12:08:51 +0300 | [diff] [blame] | 574 | opts->tos = -1; /* < 0 == use transport default */ |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 575 | |
| 576 | options = o = kstrdup(buf, GFP_KERNEL); |
| 577 | if (!options) |
| 578 | return -ENOMEM; |
| 579 | |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 580 | uuid_gen(&hostid); |
| 581 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 582 | while ((p = strsep(&o, ",\n")) != NULL) { |
| 583 | if (!*p) |
| 584 | continue; |
| 585 | |
| 586 | token = match_token(p, opt_tokens, args); |
| 587 | opts->mask |= token; |
| 588 | switch (token) { |
| 589 | case NVMF_OPT_TRANSPORT: |
| 590 | p = match_strdup(args); |
| 591 | if (!p) { |
| 592 | ret = -ENOMEM; |
| 593 | goto out; |
| 594 | } |
Chengguang Xu | 59a2f3f | 2018-04-14 20:06:19 +0800 | [diff] [blame] | 595 | kfree(opts->transport); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 596 | opts->transport = p; |
| 597 | break; |
| 598 | case NVMF_OPT_NQN: |
| 599 | p = match_strdup(args); |
| 600 | if (!p) { |
| 601 | ret = -ENOMEM; |
| 602 | goto out; |
| 603 | } |
Chengguang Xu | 59a2f3f | 2018-04-14 20:06:19 +0800 | [diff] [blame] | 604 | kfree(opts->subsysnqn); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 605 | opts->subsysnqn = p; |
| 606 | nqnlen = strlen(opts->subsysnqn); |
| 607 | if (nqnlen >= NVMF_NQN_SIZE) { |
| 608 | pr_err("%s needs to be < %d bytes\n", |
Bart Van Assche | 6eb7283 | 2016-10-18 13:10:24 -0700 | [diff] [blame] | 609 | opts->subsysnqn, NVMF_NQN_SIZE); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 610 | ret = -EINVAL; |
| 611 | goto out; |
| 612 | } |
| 613 | opts->discovery_nqn = |
| 614 | !(strcmp(opts->subsysnqn, |
| 615 | NVME_DISC_SUBSYS_NAME)); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 616 | break; |
| 617 | case NVMF_OPT_TRADDR: |
| 618 | p = match_strdup(args); |
| 619 | if (!p) { |
| 620 | ret = -ENOMEM; |
| 621 | goto out; |
| 622 | } |
Chengguang Xu | 59a2f3f | 2018-04-14 20:06:19 +0800 | [diff] [blame] | 623 | kfree(opts->traddr); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 624 | opts->traddr = p; |
| 625 | break; |
| 626 | case NVMF_OPT_TRSVCID: |
| 627 | p = match_strdup(args); |
| 628 | if (!p) { |
| 629 | ret = -ENOMEM; |
| 630 | goto out; |
| 631 | } |
Chengguang Xu | 59a2f3f | 2018-04-14 20:06:19 +0800 | [diff] [blame] | 632 | kfree(opts->trsvcid); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 633 | opts->trsvcid = p; |
| 634 | break; |
| 635 | case NVMF_OPT_QUEUE_SIZE: |
| 636 | if (match_int(args, &token)) { |
| 637 | ret = -EINVAL; |
| 638 | goto out; |
| 639 | } |
| 640 | if (token < NVMF_MIN_QUEUE_SIZE || |
| 641 | token > NVMF_MAX_QUEUE_SIZE) { |
| 642 | pr_err("Invalid queue_size %d\n", token); |
| 643 | ret = -EINVAL; |
| 644 | goto out; |
| 645 | } |
| 646 | opts->queue_size = token; |
| 647 | break; |
| 648 | case NVMF_OPT_NR_IO_QUEUES: |
| 649 | if (match_int(args, &token)) { |
| 650 | ret = -EINVAL; |
| 651 | goto out; |
| 652 | } |
| 653 | if (token <= 0) { |
| 654 | pr_err("Invalid number of IOQs %d\n", token); |
| 655 | ret = -EINVAL; |
| 656 | goto out; |
| 657 | } |
Roland Dreier | 0475821 | 2018-03-05 11:59:53 -0800 | [diff] [blame] | 658 | if (opts->discovery_nqn) { |
| 659 | pr_debug("Ignoring nr_io_queues value for discovery controller\n"); |
| 660 | break; |
| 661 | } |
| 662 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 663 | opts->nr_io_queues = min_t(unsigned int, |
| 664 | num_online_cpus(), token); |
| 665 | break; |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 666 | case NVMF_OPT_KATO: |
| 667 | if (match_int(args, &token)) { |
| 668 | ret = -EINVAL; |
| 669 | goto out; |
| 670 | } |
| 671 | |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 672 | if (token < 0) { |
| 673 | pr_err("Invalid keep_alive_tmo %d\n", token); |
| 674 | ret = -EINVAL; |
| 675 | goto out; |
Guilherme G. Piccoli | 8edd11c | 2017-09-14 13:59:28 -0300 | [diff] [blame] | 676 | } else if (token == 0 && !opts->discovery_nqn) { |
Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 677 | /* Allowed for debug */ |
| 678 | pr_warn("keep_alive_tmo 0 won't execute keep alives!!!\n"); |
| 679 | } |
| 680 | opts->kato = token; |
| 681 | break; |
Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 682 | case NVMF_OPT_CTRL_LOSS_TMO: |
| 683 | if (match_int(args, &token)) { |
| 684 | ret = -EINVAL; |
| 685 | goto out; |
| 686 | } |
| 687 | |
| 688 | if (token < 0) |
| 689 | pr_warn("ctrl_loss_tmo < 0 will reconnect forever\n"); |
| 690 | ctrl_loss_tmo = token; |
| 691 | break; |
Victor Gladkov | 8c4dfea | 2020-11-24 18:34:59 +0000 | [diff] [blame] | 692 | case NVMF_OPT_FAIL_FAST_TMO: |
| 693 | if (match_int(args, &token)) { |
| 694 | ret = -EINVAL; |
| 695 | goto out; |
| 696 | } |
| 697 | |
| 698 | if (token >= 0) |
| 699 | pr_warn("I/O fail on reconnect controller after %d sec\n", |
| 700 | token); |
Maurizio Lombardi | 8e8aaf5 | 2021-11-12 15:16:12 +0100 | [diff] [blame] | 701 | else |
| 702 | token = -1; |
| 703 | |
Victor Gladkov | 8c4dfea | 2020-11-24 18:34:59 +0000 | [diff] [blame] | 704 | opts->fast_io_fail_tmo = token; |
| 705 | break; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 706 | case NVMF_OPT_HOSTNQN: |
| 707 | if (opts->host) { |
| 708 | pr_err("hostnqn already user-assigned: %s\n", |
| 709 | opts->host->nqn); |
| 710 | ret = -EADDRINUSE; |
| 711 | goto out; |
| 712 | } |
| 713 | p = match_strdup(args); |
| 714 | if (!p) { |
| 715 | ret = -ENOMEM; |
| 716 | goto out; |
| 717 | } |
| 718 | nqnlen = strlen(p); |
| 719 | if (nqnlen >= NVMF_NQN_SIZE) { |
| 720 | pr_err("%s needs to be < %d bytes\n", |
| 721 | p, NVMF_NQN_SIZE); |
Bart Van Assche | 8eadfcb | 2016-10-18 13:10:46 -0700 | [diff] [blame] | 722 | kfree(p); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 723 | ret = -EINVAL; |
| 724 | goto out; |
| 725 | } |
| 726 | opts->host = nvmf_host_add(p); |
Bart Van Assche | 8eadfcb | 2016-10-18 13:10:46 -0700 | [diff] [blame] | 727 | kfree(p); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 728 | if (!opts->host) { |
| 729 | ret = -ENOMEM; |
| 730 | goto out; |
| 731 | } |
| 732 | break; |
| 733 | case NVMF_OPT_RECONNECT_DELAY: |
| 734 | if (match_int(args, &token)) { |
| 735 | ret = -EINVAL; |
| 736 | goto out; |
| 737 | } |
| 738 | if (token <= 0) { |
| 739 | pr_err("Invalid reconnect_delay %d\n", token); |
| 740 | ret = -EINVAL; |
| 741 | goto out; |
| 742 | } |
| 743 | opts->reconnect_delay = token; |
| 744 | break; |
James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 745 | case NVMF_OPT_HOST_TRADDR: |
| 746 | p = match_strdup(args); |
| 747 | if (!p) { |
| 748 | ret = -ENOMEM; |
| 749 | goto out; |
| 750 | } |
Chengguang Xu | 59a2f3f | 2018-04-14 20:06:19 +0800 | [diff] [blame] | 751 | kfree(opts->host_traddr); |
James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 752 | opts->host_traddr = p; |
| 753 | break; |
Martin Belanger | 3ede8f7 | 2021-05-20 15:09:34 -0400 | [diff] [blame] | 754 | case NVMF_OPT_HOST_IFACE: |
| 755 | p = match_strdup(args); |
| 756 | if (!p) { |
| 757 | ret = -ENOMEM; |
| 758 | goto out; |
| 759 | } |
| 760 | kfree(opts->host_iface); |
| 761 | opts->host_iface = p; |
| 762 | break; |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 763 | case NVMF_OPT_HOST_ID: |
| 764 | p = match_strdup(args); |
| 765 | if (!p) { |
| 766 | ret = -ENOMEM; |
| 767 | goto out; |
| 768 | } |
Roland Dreier | df351ef | 2018-01-11 13:38:00 -0800 | [diff] [blame] | 769 | ret = uuid_parse(p, &hostid); |
Roland Dreier | df351ef | 2018-01-11 13:38:00 -0800 | [diff] [blame] | 770 | if (ret) { |
Guan Junxiong | 9b483da | 2017-08-03 21:40:26 +0800 | [diff] [blame] | 771 | pr_err("Invalid hostid %s\n", p); |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 772 | ret = -EINVAL; |
Johannes Thumshirn | 6e49412 | 2018-01-25 09:09:25 +0100 | [diff] [blame] | 773 | kfree(p); |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 774 | goto out; |
| 775 | } |
Johannes Thumshirn | 6e49412 | 2018-01-25 09:09:25 +0100 | [diff] [blame] | 776 | kfree(p); |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 777 | break; |
James Smart | 3b33876 | 2017-10-20 16:17:06 -0700 | [diff] [blame] | 778 | case NVMF_OPT_DUP_CONNECT: |
| 779 | opts->duplicate_connect = true; |
| 780 | break; |
Sagi Grimberg | 8154ed7 | 2018-11-19 14:11:15 -0800 | [diff] [blame] | 781 | case NVMF_OPT_DISABLE_SQFLOW: |
| 782 | opts->disable_sqflow = true; |
| 783 | break; |
Sagi Grimberg | 3b49fa8 | 2018-12-03 17:52:12 -0800 | [diff] [blame] | 784 | case NVMF_OPT_HDR_DIGEST: |
| 785 | opts->hdr_digest = true; |
| 786 | break; |
Sagi Grimberg | 20d44e8 | 2018-12-03 17:52:13 -0800 | [diff] [blame] | 787 | case NVMF_OPT_DATA_DIGEST: |
| 788 | opts->data_digest = true; |
| 789 | break; |
Sagi Grimberg | 330f6b8 | 2018-12-11 23:38:56 -0800 | [diff] [blame] | 790 | case NVMF_OPT_NR_WRITE_QUEUES: |
| 791 | if (match_int(args, &token)) { |
| 792 | ret = -EINVAL; |
| 793 | goto out; |
| 794 | } |
| 795 | if (token <= 0) { |
| 796 | pr_err("Invalid nr_write_queues %d\n", token); |
| 797 | ret = -EINVAL; |
| 798 | goto out; |
| 799 | } |
| 800 | opts->nr_write_queues = token; |
| 801 | break; |
Sagi Grimberg | 89d4380 | 2018-12-14 11:06:09 -0800 | [diff] [blame] | 802 | case NVMF_OPT_NR_POLL_QUEUES: |
| 803 | if (match_int(args, &token)) { |
| 804 | ret = -EINVAL; |
| 805 | goto out; |
| 806 | } |
| 807 | if (token <= 0) { |
| 808 | pr_err("Invalid nr_poll_queues %d\n", token); |
| 809 | ret = -EINVAL; |
| 810 | goto out; |
| 811 | } |
| 812 | opts->nr_poll_queues = token; |
| 813 | break; |
Israel Rukshin | 52b4451 | 2019-08-18 12:08:51 +0300 | [diff] [blame] | 814 | case NVMF_OPT_TOS: |
| 815 | if (match_int(args, &token)) { |
| 816 | ret = -EINVAL; |
| 817 | goto out; |
| 818 | } |
| 819 | if (token < 0) { |
| 820 | pr_err("Invalid type of service %d\n", token); |
| 821 | ret = -EINVAL; |
| 822 | goto out; |
| 823 | } |
| 824 | if (token > 255) { |
| 825 | pr_warn("Clamping type of service to 255\n"); |
| 826 | token = 255; |
| 827 | } |
| 828 | opts->tos = token; |
| 829 | break; |
Hannes Reinecke | 20e8b68 | 2021-09-22 08:35:24 +0200 | [diff] [blame] | 830 | case NVMF_OPT_DISCOVERY: |
| 831 | opts->discovery_nqn = true; |
| 832 | break; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 833 | default: |
| 834 | pr_warn("unknown parameter or missing value '%s' in ctrl creation request\n", |
| 835 | p); |
| 836 | ret = -EINVAL; |
| 837 | goto out; |
| 838 | } |
| 839 | } |
| 840 | |
Hannes Reinecke | 461fbc8 | 2018-05-24 16:18:15 +0200 | [diff] [blame] | 841 | if (opts->discovery_nqn) { |
Hannes Reinecke | 461fbc8 | 2018-05-24 16:18:15 +0200 | [diff] [blame] | 842 | opts->nr_io_queues = 0; |
Sagi Grimberg | 9846ac0 | 2019-01-07 23:54:23 -0800 | [diff] [blame] | 843 | opts->nr_write_queues = 0; |
| 844 | opts->nr_poll_queues = 0; |
Hannes Reinecke | 181303d | 2018-05-24 16:18:17 +0200 | [diff] [blame] | 845 | opts->duplicate_connect = true; |
Martin George | 32feb6d | 2021-02-11 23:28:26 +0530 | [diff] [blame] | 846 | } else { |
| 847 | if (!opts->kato) |
| 848 | opts->kato = NVME_DEFAULT_KATO; |
Hannes Reinecke | 461fbc8 | 2018-05-24 16:18:15 +0200 | [diff] [blame] | 849 | } |
Victor Gladkov | 8c4dfea | 2020-11-24 18:34:59 +0000 | [diff] [blame] | 850 | if (ctrl_loss_tmo < 0) { |
Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 851 | opts->max_reconnects = -1; |
Victor Gladkov | 8c4dfea | 2020-11-24 18:34:59 +0000 | [diff] [blame] | 852 | } else { |
Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 853 | opts->max_reconnects = DIV_ROUND_UP(ctrl_loss_tmo, |
| 854 | opts->reconnect_delay); |
Victor Gladkov | 8c4dfea | 2020-11-24 18:34:59 +0000 | [diff] [blame] | 855 | if (ctrl_loss_tmo < opts->fast_io_fail_tmo) |
| 856 | pr_warn("failfast tmo (%d) larger than controller loss tmo (%d)\n", |
| 857 | opts->fast_io_fail_tmo, ctrl_loss_tmo); |
| 858 | } |
Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 859 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 860 | if (!opts->host) { |
| 861 | kref_get(&nvmf_default_host->ref); |
| 862 | opts->host = nvmf_default_host; |
| 863 | } |
| 864 | |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 865 | uuid_copy(&opts->host->id, &hostid); |
| 866 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 867 | out: |
| 868 | kfree(options); |
| 869 | return ret; |
| 870 | } |
| 871 | |
| 872 | static int nvmf_check_required_opts(struct nvmf_ctrl_options *opts, |
| 873 | unsigned int required_opts) |
| 874 | { |
| 875 | if ((opts->mask & required_opts) != required_opts) { |
| 876 | int i; |
| 877 | |
| 878 | for (i = 0; i < ARRAY_SIZE(opt_tokens); i++) { |
| 879 | if ((opt_tokens[i].token & required_opts) && |
| 880 | !(opt_tokens[i].token & opts->mask)) { |
| 881 | pr_warn("missing parameter '%s'\n", |
| 882 | opt_tokens[i].pattern); |
| 883 | } |
| 884 | } |
| 885 | |
| 886 | return -EINVAL; |
| 887 | } |
| 888 | |
| 889 | return 0; |
| 890 | } |
| 891 | |
Sagi Grimberg | b7c7be6f6 | 2018-10-18 17:40:40 -0700 | [diff] [blame] | 892 | bool nvmf_ip_options_match(struct nvme_ctrl *ctrl, |
| 893 | struct nvmf_ctrl_options *opts) |
| 894 | { |
| 895 | if (!nvmf_ctlr_matches_baseopts(ctrl, opts) || |
| 896 | strcmp(opts->traddr, ctrl->opts->traddr) || |
| 897 | strcmp(opts->trsvcid, ctrl->opts->trsvcid)) |
| 898 | return false; |
| 899 | |
| 900 | /* |
| 901 | * Checking the local address is rough. In most cases, none is specified |
| 902 | * and the host port is selected by the stack. |
| 903 | * |
| 904 | * Assume no match if: |
| 905 | * - local address is specified and address is not the same |
| 906 | * - local address is not specified but remote is, or vice versa |
| 907 | * (admin using specific host_traddr when it matters). |
| 908 | */ |
| 909 | if ((opts->mask & NVMF_OPT_HOST_TRADDR) && |
| 910 | (ctrl->opts->mask & NVMF_OPT_HOST_TRADDR)) { |
| 911 | if (strcmp(opts->host_traddr, ctrl->opts->host_traddr)) |
| 912 | return false; |
| 913 | } else if ((opts->mask & NVMF_OPT_HOST_TRADDR) || |
| 914 | (ctrl->opts->mask & NVMF_OPT_HOST_TRADDR)) { |
| 915 | return false; |
| 916 | } |
| 917 | |
| 918 | return true; |
| 919 | } |
| 920 | EXPORT_SYMBOL_GPL(nvmf_ip_options_match); |
| 921 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 922 | static int nvmf_check_allowed_opts(struct nvmf_ctrl_options *opts, |
| 923 | unsigned int allowed_opts) |
| 924 | { |
| 925 | if (opts->mask & ~allowed_opts) { |
| 926 | int i; |
| 927 | |
| 928 | for (i = 0; i < ARRAY_SIZE(opt_tokens); i++) { |
Christoph Hellwig | 81a0b8d | 2017-08-17 13:57:49 +0200 | [diff] [blame] | 929 | if ((opt_tokens[i].token & opts->mask) && |
| 930 | (opt_tokens[i].token & ~allowed_opts)) { |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 931 | pr_warn("invalid parameter '%s'\n", |
| 932 | opt_tokens[i].pattern); |
| 933 | } |
| 934 | } |
| 935 | |
| 936 | return -EINVAL; |
| 937 | } |
| 938 | |
| 939 | return 0; |
| 940 | } |
| 941 | |
| 942 | void nvmf_free_options(struct nvmf_ctrl_options *opts) |
| 943 | { |
| 944 | nvmf_host_put(opts->host); |
| 945 | kfree(opts->transport); |
| 946 | kfree(opts->traddr); |
| 947 | kfree(opts->trsvcid); |
| 948 | kfree(opts->subsysnqn); |
James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 949 | kfree(opts->host_traddr); |
Martin Belanger | 3ede8f7 | 2021-05-20 15:09:34 -0400 | [diff] [blame] | 950 | kfree(opts->host_iface); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 951 | kfree(opts); |
| 952 | } |
| 953 | EXPORT_SYMBOL_GPL(nvmf_free_options); |
| 954 | |
| 955 | #define NVMF_REQUIRED_OPTS (NVMF_OPT_TRANSPORT | NVMF_OPT_NQN) |
| 956 | #define NVMF_ALLOWED_OPTS (NVMF_OPT_QUEUE_SIZE | NVMF_OPT_NR_IO_QUEUES | \ |
Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 957 | NVMF_OPT_KATO | NVMF_OPT_HOSTNQN | \ |
Sagi Grimberg | 8154ed7 | 2018-11-19 14:11:15 -0800 | [diff] [blame] | 958 | NVMF_OPT_HOST_ID | NVMF_OPT_DUP_CONNECT |\ |
Hannes Reinecke | 20e8b68 | 2021-09-22 08:35:24 +0200 | [diff] [blame] | 959 | NVMF_OPT_DISABLE_SQFLOW | NVMF_OPT_DISCOVERY |\ |
Victor Gladkov | 8c4dfea | 2020-11-24 18:34:59 +0000 | [diff] [blame] | 960 | NVMF_OPT_FAIL_FAST_TMO) |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 961 | |
| 962 | static struct nvme_ctrl * |
Minwoo Im | 94e970b | 2019-05-11 22:42:55 +0900 | [diff] [blame] | 963 | nvmf_create_ctrl(struct device *dev, const char *buf) |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 964 | { |
| 965 | struct nvmf_ctrl_options *opts; |
| 966 | struct nvmf_transport_ops *ops; |
| 967 | struct nvme_ctrl *ctrl; |
| 968 | int ret; |
| 969 | |
| 970 | opts = kzalloc(sizeof(*opts), GFP_KERNEL); |
| 971 | if (!opts) |
| 972 | return ERR_PTR(-ENOMEM); |
| 973 | |
| 974 | ret = nvmf_parse_options(opts, buf); |
| 975 | if (ret) |
| 976 | goto out_free_opts; |
| 977 | |
Sagi Grimberg | d1f1071 | 2017-09-24 16:15:55 +0300 | [diff] [blame] | 978 | |
| 979 | request_module("nvme-%s", opts->transport); |
| 980 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 981 | /* |
| 982 | * Check the generic options first as we need a valid transport for |
| 983 | * the lookup below. Then clear the generic flags so that transport |
| 984 | * drivers don't have to care about them. |
| 985 | */ |
| 986 | ret = nvmf_check_required_opts(opts, NVMF_REQUIRED_OPTS); |
| 987 | if (ret) |
| 988 | goto out_free_opts; |
| 989 | opts->mask &= ~NVMF_REQUIRED_OPTS; |
| 990 | |
Roland Dreier | 489beb9 | 2017-08-29 10:33:44 -0700 | [diff] [blame] | 991 | down_read(&nvmf_transports_rwsem); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 992 | ops = nvmf_lookup_transport(opts); |
| 993 | if (!ops) { |
| 994 | pr_info("no handler found for transport %s.\n", |
| 995 | opts->transport); |
| 996 | ret = -EINVAL; |
| 997 | goto out_unlock; |
| 998 | } |
| 999 | |
Roy Shterman | 0de5cd3 | 2017-12-25 14:18:30 +0200 | [diff] [blame] | 1000 | if (!try_module_get(ops->module)) { |
| 1001 | ret = -EBUSY; |
| 1002 | goto out_unlock; |
| 1003 | } |
Johannes Thumshirn | 12a0b66 | 2018-06-01 09:11:20 +0200 | [diff] [blame] | 1004 | up_read(&nvmf_transports_rwsem); |
Roy Shterman | 0de5cd3 | 2017-12-25 14:18:30 +0200 | [diff] [blame] | 1005 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1006 | ret = nvmf_check_required_opts(opts, ops->required_opts); |
| 1007 | if (ret) |
Roy Shterman | 0de5cd3 | 2017-12-25 14:18:30 +0200 | [diff] [blame] | 1008 | goto out_module_put; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1009 | ret = nvmf_check_allowed_opts(opts, NVMF_ALLOWED_OPTS | |
| 1010 | ops->allowed_opts | ops->required_opts); |
| 1011 | if (ret) |
Roy Shterman | 0de5cd3 | 2017-12-25 14:18:30 +0200 | [diff] [blame] | 1012 | goto out_module_put; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1013 | |
| 1014 | ctrl = ops->create_ctrl(dev, opts); |
| 1015 | if (IS_ERR(ctrl)) { |
| 1016 | ret = PTR_ERR(ctrl); |
Roy Shterman | 0de5cd3 | 2017-12-25 14:18:30 +0200 | [diff] [blame] | 1017 | goto out_module_put; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1018 | } |
| 1019 | |
Roy Shterman | 0de5cd3 | 2017-12-25 14:18:30 +0200 | [diff] [blame] | 1020 | module_put(ops->module); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1021 | return ctrl; |
| 1022 | |
Roy Shterman | 0de5cd3 | 2017-12-25 14:18:30 +0200 | [diff] [blame] | 1023 | out_module_put: |
| 1024 | module_put(ops->module); |
Johannes Thumshirn | 12a0b66 | 2018-06-01 09:11:20 +0200 | [diff] [blame] | 1025 | goto out_free_opts; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1026 | out_unlock: |
Roland Dreier | 489beb9 | 2017-08-29 10:33:44 -0700 | [diff] [blame] | 1027 | up_read(&nvmf_transports_rwsem); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1028 | out_free_opts: |
Bart Van Assche | f3116d8 | 2016-10-18 13:11:03 -0700 | [diff] [blame] | 1029 | nvmf_free_options(opts); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1030 | return ERR_PTR(ret); |
| 1031 | } |
| 1032 | |
| 1033 | static struct class *nvmf_class; |
| 1034 | static struct device *nvmf_device; |
| 1035 | static DEFINE_MUTEX(nvmf_dev_mutex); |
| 1036 | |
| 1037 | static ssize_t nvmf_dev_write(struct file *file, const char __user *ubuf, |
| 1038 | size_t count, loff_t *pos) |
| 1039 | { |
| 1040 | struct seq_file *seq_file = file->private_data; |
| 1041 | struct nvme_ctrl *ctrl; |
| 1042 | const char *buf; |
| 1043 | int ret = 0; |
| 1044 | |
| 1045 | if (count > PAGE_SIZE) |
| 1046 | return -ENOMEM; |
| 1047 | |
| 1048 | buf = memdup_user_nul(ubuf, count); |
| 1049 | if (IS_ERR(buf)) |
| 1050 | return PTR_ERR(buf); |
| 1051 | |
| 1052 | mutex_lock(&nvmf_dev_mutex); |
| 1053 | if (seq_file->private) { |
| 1054 | ret = -EINVAL; |
| 1055 | goto out_unlock; |
| 1056 | } |
| 1057 | |
Minwoo Im | 94e970b | 2019-05-11 22:42:55 +0900 | [diff] [blame] | 1058 | ctrl = nvmf_create_ctrl(nvmf_device, buf); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1059 | if (IS_ERR(ctrl)) { |
| 1060 | ret = PTR_ERR(ctrl); |
| 1061 | goto out_unlock; |
| 1062 | } |
| 1063 | |
| 1064 | seq_file->private = ctrl; |
| 1065 | |
| 1066 | out_unlock: |
| 1067 | mutex_unlock(&nvmf_dev_mutex); |
| 1068 | kfree(buf); |
| 1069 | return ret ? ret : count; |
| 1070 | } |
| 1071 | |
Hannes Reinecke | f18ee3d | 2021-12-07 14:55:49 +0100 | [diff] [blame] | 1072 | static void __nvmf_concat_opt_tokens(struct seq_file *seq_file) |
| 1073 | { |
| 1074 | const struct match_token *tok; |
| 1075 | int idx; |
| 1076 | |
| 1077 | /* |
| 1078 | * Add dummy entries for instance and cntlid to |
| 1079 | * signal an invalid/non-existing controller |
| 1080 | */ |
| 1081 | seq_puts(seq_file, "instance=-1,cntlid=-1"); |
| 1082 | for (idx = 0; idx < ARRAY_SIZE(opt_tokens); idx++) { |
| 1083 | tok = &opt_tokens[idx]; |
| 1084 | if (tok->token == NVMF_OPT_ERR) |
| 1085 | continue; |
| 1086 | seq_puts(seq_file, ","); |
| 1087 | seq_puts(seq_file, tok->pattern); |
| 1088 | } |
| 1089 | seq_puts(seq_file, "\n"); |
| 1090 | } |
| 1091 | |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1092 | static int nvmf_dev_show(struct seq_file *seq_file, void *private) |
| 1093 | { |
| 1094 | struct nvme_ctrl *ctrl; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1095 | |
| 1096 | mutex_lock(&nvmf_dev_mutex); |
| 1097 | ctrl = seq_file->private; |
| 1098 | if (!ctrl) { |
Hannes Reinecke | f18ee3d | 2021-12-07 14:55:49 +0100 | [diff] [blame] | 1099 | __nvmf_concat_opt_tokens(seq_file); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1100 | goto out_unlock; |
| 1101 | } |
| 1102 | |
| 1103 | seq_printf(seq_file, "instance=%d,cntlid=%d\n", |
| 1104 | ctrl->instance, ctrl->cntlid); |
| 1105 | |
| 1106 | out_unlock: |
| 1107 | mutex_unlock(&nvmf_dev_mutex); |
Changcheng Deng | a5f3851 | 2022-01-07 02:23:06 +0000 | [diff] [blame] | 1108 | return 0; |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1109 | } |
| 1110 | |
| 1111 | static int nvmf_dev_open(struct inode *inode, struct file *file) |
| 1112 | { |
| 1113 | /* |
| 1114 | * The miscdevice code initializes file->private_data, but doesn't |
| 1115 | * make use of it later. |
| 1116 | */ |
| 1117 | file->private_data = NULL; |
| 1118 | return single_open(file, nvmf_dev_show, NULL); |
| 1119 | } |
| 1120 | |
| 1121 | static int nvmf_dev_release(struct inode *inode, struct file *file) |
| 1122 | { |
| 1123 | struct seq_file *seq_file = file->private_data; |
| 1124 | struct nvme_ctrl *ctrl = seq_file->private; |
| 1125 | |
| 1126 | if (ctrl) |
| 1127 | nvme_put_ctrl(ctrl); |
| 1128 | return single_release(inode, file); |
| 1129 | } |
| 1130 | |
| 1131 | static const struct file_operations nvmf_dev_fops = { |
| 1132 | .owner = THIS_MODULE, |
| 1133 | .write = nvmf_dev_write, |
| 1134 | .read = seq_read, |
| 1135 | .open = nvmf_dev_open, |
| 1136 | .release = nvmf_dev_release, |
| 1137 | }; |
| 1138 | |
| 1139 | static struct miscdevice nvmf_misc = { |
| 1140 | .minor = MISC_DYNAMIC_MINOR, |
| 1141 | .name = "nvme-fabrics", |
| 1142 | .fops = &nvmf_dev_fops, |
| 1143 | }; |
| 1144 | |
| 1145 | static int __init nvmf_init(void) |
| 1146 | { |
| 1147 | int ret; |
| 1148 | |
| 1149 | nvmf_default_host = nvmf_host_default(); |
| 1150 | if (!nvmf_default_host) |
| 1151 | return -ENOMEM; |
| 1152 | |
| 1153 | nvmf_class = class_create(THIS_MODULE, "nvme-fabrics"); |
| 1154 | if (IS_ERR(nvmf_class)) { |
| 1155 | pr_err("couldn't register class nvme-fabrics\n"); |
| 1156 | ret = PTR_ERR(nvmf_class); |
| 1157 | goto out_free_host; |
| 1158 | } |
| 1159 | |
| 1160 | nvmf_device = |
| 1161 | device_create(nvmf_class, NULL, MKDEV(0, 0), NULL, "ctl"); |
| 1162 | if (IS_ERR(nvmf_device)) { |
| 1163 | pr_err("couldn't create nvme-fabris device!\n"); |
| 1164 | ret = PTR_ERR(nvmf_device); |
| 1165 | goto out_destroy_class; |
| 1166 | } |
| 1167 | |
| 1168 | ret = misc_register(&nvmf_misc); |
| 1169 | if (ret) { |
| 1170 | pr_err("couldn't register misc device: %d\n", ret); |
| 1171 | goto out_destroy_device; |
| 1172 | } |
| 1173 | |
| 1174 | return 0; |
| 1175 | |
| 1176 | out_destroy_device: |
| 1177 | device_destroy(nvmf_class, MKDEV(0, 0)); |
| 1178 | out_destroy_class: |
| 1179 | class_destroy(nvmf_class); |
| 1180 | out_free_host: |
| 1181 | nvmf_host_put(nvmf_default_host); |
| 1182 | return ret; |
| 1183 | } |
| 1184 | |
| 1185 | static void __exit nvmf_exit(void) |
| 1186 | { |
| 1187 | misc_deregister(&nvmf_misc); |
| 1188 | device_destroy(nvmf_class, MKDEV(0, 0)); |
| 1189 | class_destroy(nvmf_class); |
| 1190 | nvmf_host_put(nvmf_default_host); |
| 1191 | |
Minwoo Im | a2faf94 | 2019-04-12 00:18:31 +0900 | [diff] [blame] | 1192 | BUILD_BUG_ON(sizeof(struct nvmf_common_command) != 64); |
Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1193 | BUILD_BUG_ON(sizeof(struct nvmf_connect_command) != 64); |
| 1194 | BUILD_BUG_ON(sizeof(struct nvmf_property_get_command) != 64); |
| 1195 | BUILD_BUG_ON(sizeof(struct nvmf_property_set_command) != 64); |
| 1196 | BUILD_BUG_ON(sizeof(struct nvmf_connect_data) != 1024); |
| 1197 | } |
| 1198 | |
| 1199 | MODULE_LICENSE("GPL v2"); |
| 1200 | |
| 1201 | module_init(nvmf_init); |
| 1202 | module_exit(nvmf_exit); |