1 // SPDX-License-Identifier: GPL-2.0
3 * NVMe over Fabrics common host code.
4 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
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>
16 static LIST_HEAD(nvmf_transports
);
17 static DECLARE_RWSEM(nvmf_transports_rwsem
);
19 static LIST_HEAD(nvmf_hosts
);
20 static DEFINE_MUTEX(nvmf_hosts_mutex
);
22 static struct nvmf_host
*nvmf_default_host
;
24 static struct nvmf_host
*__nvmf_host_find(const char *hostnqn
)
26 struct nvmf_host
*host
;
28 list_for_each_entry(host
, &nvmf_hosts
, list
) {
29 if (!strcmp(host
->nqn
, hostnqn
))
36 static struct nvmf_host
*nvmf_host_add(const char *hostnqn
)
38 struct nvmf_host
*host
;
40 mutex_lock(&nvmf_hosts_mutex
);
41 host
= __nvmf_host_find(hostnqn
);
47 host
= kmalloc(sizeof(*host
), GFP_KERNEL
);
51 kref_init(&host
->ref
);
52 strlcpy(host
->nqn
, hostnqn
, NVMF_NQN_SIZE
);
54 list_add_tail(&host
->list
, &nvmf_hosts
);
56 mutex_unlock(&nvmf_hosts_mutex
);
60 static struct nvmf_host
*nvmf_host_default(void)
62 struct nvmf_host
*host
;
64 host
= kmalloc(sizeof(*host
), GFP_KERNEL
);
68 kref_init(&host
->ref
);
70 snprintf(host
->nqn
, NVMF_NQN_SIZE
,
71 "nqn.2014-08.org.nvmexpress:uuid:%pUb", &host
->id
);
73 mutex_lock(&nvmf_hosts_mutex
);
74 list_add_tail(&host
->list
, &nvmf_hosts
);
75 mutex_unlock(&nvmf_hosts_mutex
);
80 static void nvmf_host_destroy(struct kref
*ref
)
82 struct nvmf_host
*host
= container_of(ref
, struct nvmf_host
, ref
);
84 mutex_lock(&nvmf_hosts_mutex
);
85 list_del(&host
->list
);
86 mutex_unlock(&nvmf_hosts_mutex
);
91 static void nvmf_host_put(struct nvmf_host
*host
)
94 kref_put(&host
->ref
, nvmf_host_destroy
);
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
103 int nvmf_get_address(struct nvme_ctrl
*ctrl
, char *buf
, int size
)
107 if (ctrl
->opts
->mask
& NVMF_OPT_TRADDR
)
108 len
+= scnprintf(buf
, size
, "traddr=%s", ctrl
->opts
->traddr
);
109 if (ctrl
->opts
->mask
& NVMF_OPT_TRSVCID
)
110 len
+= scnprintf(buf
+ len
, size
- len
, "%strsvcid=%s",
111 (len
) ? "," : "", ctrl
->opts
->trsvcid
);
112 if (ctrl
->opts
->mask
& NVMF_OPT_HOST_TRADDR
)
113 len
+= scnprintf(buf
+ len
, size
- len
, "%shost_traddr=%s",
114 (len
) ? "," : "", ctrl
->opts
->host_traddr
);
115 len
+= scnprintf(buf
+ len
, size
- len
, "\n");
119 EXPORT_SYMBOL_GPL(nvmf_get_address
);
122 * nvmf_reg_read32() - NVMe Fabrics "Property Get" API function.
123 * @ctrl: Host NVMe controller instance maintaining the admin
124 * queue used to submit the property read command to
125 * the allocated NVMe controller resource on the target system.
126 * @off: Starting offset value of the targeted property
127 * register (see the fabrics section of the NVMe standard).
128 * @val: OUTPUT parameter that will contain the value of
129 * the property after a successful read.
131 * Used by the host system to retrieve a 32-bit capsule property value
132 * from an NVMe controller on the target system.
134 * ("Capsule property" is an "PCIe register concept" applied to the
135 * NVMe fabrics space.)
139 * > 0: NVMe error status code
140 * < 0: Linux errno error code
142 int nvmf_reg_read32(struct nvme_ctrl
*ctrl
, u32 off
, u32
*val
)
144 struct nvme_command cmd
;
145 union nvme_result res
;
148 memset(&cmd
, 0, sizeof(cmd
));
149 cmd
.prop_get
.opcode
= nvme_fabrics_command
;
150 cmd
.prop_get
.fctype
= nvme_fabrics_type_property_get
;
151 cmd
.prop_get
.offset
= cpu_to_le32(off
);
153 ret
= __nvme_submit_sync_cmd(ctrl
->fabrics_q
, &cmd
, &res
, NULL
, 0, 0,
154 NVME_QID_ANY
, 0, 0, false);
157 *val
= le64_to_cpu(res
.u64
);
158 if (unlikely(ret
!= 0))
159 dev_err(ctrl
->device
,
160 "Property Get error: %d, offset %#x\n",
161 ret
> 0 ? ret
& ~NVME_SC_DNR
: ret
, off
);
165 EXPORT_SYMBOL_GPL(nvmf_reg_read32
);
168 * nvmf_reg_read64() - NVMe Fabrics "Property Get" API function.
169 * @ctrl: Host NVMe controller instance maintaining the admin
170 * queue used to submit the property read command to
171 * the allocated controller resource on the target system.
172 * @off: Starting offset value of the targeted property
173 * register (see the fabrics section of the NVMe standard).
174 * @val: OUTPUT parameter that will contain the value of
175 * the property after a successful read.
177 * Used by the host system to retrieve a 64-bit capsule property value
178 * from an NVMe controller on the target system.
180 * ("Capsule property" is an "PCIe register concept" applied to the
181 * NVMe fabrics space.)
185 * > 0: NVMe error status code
186 * < 0: Linux errno error code
188 int nvmf_reg_read64(struct nvme_ctrl
*ctrl
, u32 off
, u64
*val
)
190 struct nvme_command cmd
;
191 union nvme_result res
;
194 memset(&cmd
, 0, sizeof(cmd
));
195 cmd
.prop_get
.opcode
= nvme_fabrics_command
;
196 cmd
.prop_get
.fctype
= nvme_fabrics_type_property_get
;
197 cmd
.prop_get
.attrib
= 1;
198 cmd
.prop_get
.offset
= cpu_to_le32(off
);
200 ret
= __nvme_submit_sync_cmd(ctrl
->fabrics_q
, &cmd
, &res
, NULL
, 0, 0,
201 NVME_QID_ANY
, 0, 0, false);
204 *val
= le64_to_cpu(res
.u64
);
205 if (unlikely(ret
!= 0))
206 dev_err(ctrl
->device
,
207 "Property Get error: %d, offset %#x\n",
208 ret
> 0 ? ret
& ~NVME_SC_DNR
: ret
, off
);
211 EXPORT_SYMBOL_GPL(nvmf_reg_read64
);
214 * nvmf_reg_write32() - NVMe Fabrics "Property Write" API function.
215 * @ctrl: Host NVMe controller instance maintaining the admin
216 * queue used to submit the property read command to
217 * the allocated NVMe controller resource on the target system.
218 * @off: Starting offset value of the targeted property
219 * register (see the fabrics section of the NVMe standard).
220 * @val: Input parameter that contains the value to be
221 * written to the property.
223 * Used by the NVMe host system to write a 32-bit capsule property value
224 * to an NVMe controller on the target system.
226 * ("Capsule property" is an "PCIe register concept" applied to the
227 * NVMe fabrics space.)
230 * 0: successful write
231 * > 0: NVMe error status code
232 * < 0: Linux errno error code
234 int nvmf_reg_write32(struct nvme_ctrl
*ctrl
, u32 off
, u32 val
)
236 struct nvme_command cmd
;
239 memset(&cmd
, 0, sizeof(cmd
));
240 cmd
.prop_set
.opcode
= nvme_fabrics_command
;
241 cmd
.prop_set
.fctype
= nvme_fabrics_type_property_set
;
242 cmd
.prop_set
.attrib
= 0;
243 cmd
.prop_set
.offset
= cpu_to_le32(off
);
244 cmd
.prop_set
.value
= cpu_to_le64(val
);
246 ret
= __nvme_submit_sync_cmd(ctrl
->fabrics_q
, &cmd
, NULL
, NULL
, 0, 0,
247 NVME_QID_ANY
, 0, 0, false);
249 dev_err(ctrl
->device
,
250 "Property Set error: %d, offset %#x\n",
251 ret
> 0 ? ret
& ~NVME_SC_DNR
: ret
, off
);
254 EXPORT_SYMBOL_GPL(nvmf_reg_write32
);
257 * nvmf_log_connect_error() - Error-parsing-diagnostic print
258 * out function for connect() errors.
260 * @ctrl: the specific /dev/nvmeX device that had the error.
262 * @errval: Error code to be decoded in a more human-friendly
265 * @offset: For use with the NVMe error code NVME_SC_CONNECT_INVALID_PARAM.
267 * @cmd: This is the SQE portion of a submission capsule.
269 * @data: This is the "Data" portion of a submission capsule.
271 static void nvmf_log_connect_error(struct nvme_ctrl
*ctrl
,
272 int errval
, int offset
, struct nvme_command
*cmd
,
273 struct nvmf_connect_data
*data
)
275 int err_sctype
= errval
& (~NVME_SC_DNR
);
277 switch (err_sctype
) {
279 case (NVME_SC_CONNECT_INVALID_PARAM
):
281 char *inv_data
= "Connect Invalid Data Parameter";
283 switch (offset
& 0xffff) {
284 case (offsetof(struct nvmf_connect_data
, cntlid
)):
285 dev_err(ctrl
->device
,
287 inv_data
, data
->cntlid
);
289 case (offsetof(struct nvmf_connect_data
, hostnqn
)):
290 dev_err(ctrl
->device
,
291 "%s, hostnqn \"%s\"\n",
292 inv_data
, data
->hostnqn
);
294 case (offsetof(struct nvmf_connect_data
, subsysnqn
)):
295 dev_err(ctrl
->device
,
296 "%s, subsysnqn \"%s\"\n",
297 inv_data
, data
->subsysnqn
);
300 dev_err(ctrl
->device
,
301 "%s, starting byte offset: %d\n",
302 inv_data
, offset
& 0xffff);
306 char *inv_sqe
= "Connect Invalid SQE Parameter";
309 case (offsetof(struct nvmf_connect_command
, qid
)):
310 dev_err(ctrl
->device
,
312 inv_sqe
, cmd
->connect
.qid
);
315 dev_err(ctrl
->device
,
316 "%s, starting byte offset: %d\n",
322 case NVME_SC_CONNECT_INVALID_HOST
:
323 dev_err(ctrl
->device
,
324 "Connect for subsystem %s is not allowed, hostnqn: %s\n",
325 data
->subsysnqn
, data
->hostnqn
);
328 case NVME_SC_CONNECT_CTRL_BUSY
:
329 dev_err(ctrl
->device
,
330 "Connect command failed: controller is busy or not available\n");
333 case NVME_SC_CONNECT_FORMAT
:
334 dev_err(ctrl
->device
,
335 "Connect incompatible format: %d",
336 cmd
->connect
.recfmt
);
340 dev_err(ctrl
->device
,
341 "Connect command failed, error wo/DNR bit: %d\n",
344 } /* switch (err_sctype) */
348 * nvmf_connect_admin_queue() - NVMe Fabrics Admin Queue "Connect"
350 * @ctrl: Host nvme controller instance used to request
351 * a new NVMe controller allocation on the target
352 * system and establish an NVMe Admin connection to
355 * This function enables an NVMe host device to request a new allocation of
356 * an NVMe controller resource on a target system as well establish a
357 * fabrics-protocol connection of the NVMe Admin queue between the
358 * host system device and the allocated NVMe controller on the
359 * target system via a NVMe Fabrics "Connect" command.
363 * > 0: NVMe error status code
364 * < 0: Linux errno error code
367 int nvmf_connect_admin_queue(struct nvme_ctrl
*ctrl
)
369 struct nvme_command cmd
;
370 union nvme_result res
;
371 struct nvmf_connect_data
*data
;
374 memset(&cmd
, 0, sizeof(cmd
));
375 cmd
.connect
.opcode
= nvme_fabrics_command
;
376 cmd
.connect
.fctype
= nvme_fabrics_type_connect
;
378 cmd
.connect
.sqsize
= cpu_to_le16(NVME_AQ_DEPTH
- 1);
381 * Set keep-alive timeout in seconds granularity (ms * 1000)
382 * and add a grace period for controller kato enforcement
384 cmd
.connect
.kato
= ctrl
->kato
?
385 cpu_to_le32((ctrl
->kato
+ NVME_KATO_GRACE
) * 1000) : 0;
387 if (ctrl
->opts
->disable_sqflow
)
388 cmd
.connect
.cattr
|= NVME_CONNECT_DISABLE_SQFLOW
;
390 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
394 uuid_copy(&data
->hostid
, &ctrl
->opts
->host
->id
);
395 data
->cntlid
= cpu_to_le16(0xffff);
396 strncpy(data
->subsysnqn
, ctrl
->opts
->subsysnqn
, NVMF_NQN_SIZE
);
397 strncpy(data
->hostnqn
, ctrl
->opts
->host
->nqn
, NVMF_NQN_SIZE
);
399 ret
= __nvme_submit_sync_cmd(ctrl
->fabrics_q
, &cmd
, &res
,
400 data
, sizeof(*data
), 0, NVME_QID_ANY
, 1,
401 BLK_MQ_REQ_RESERVED
| BLK_MQ_REQ_NOWAIT
, false);
403 nvmf_log_connect_error(ctrl
, ret
, le32_to_cpu(res
.u32
),
408 ctrl
->cntlid
= le16_to_cpu(res
.u16
);
414 EXPORT_SYMBOL_GPL(nvmf_connect_admin_queue
);
417 * nvmf_connect_io_queue() - NVMe Fabrics I/O Queue "Connect"
419 * @ctrl: Host nvme controller instance used to establish an
420 * NVMe I/O queue connection to the already allocated NVMe
421 * controller on the target system.
422 * @qid: NVMe I/O queue number for the new I/O connection between
423 * host and target (note qid == 0 is illegal as this is
424 * the Admin queue, per NVMe standard).
425 * @poll: Whether or not to poll for the completion of the connect cmd.
427 * This function issues a fabrics-protocol connection
428 * of a NVMe I/O queue (via NVMe Fabrics "Connect" command)
429 * between the host system device and the allocated NVMe controller
430 * on the target system.
434 * > 0: NVMe error status code
435 * < 0: Linux errno error code
437 int nvmf_connect_io_queue(struct nvme_ctrl
*ctrl
, u16 qid
, bool poll
)
439 struct nvme_command cmd
;
440 struct nvmf_connect_data
*data
;
441 union nvme_result res
;
444 memset(&cmd
, 0, sizeof(cmd
));
445 cmd
.connect
.opcode
= nvme_fabrics_command
;
446 cmd
.connect
.fctype
= nvme_fabrics_type_connect
;
447 cmd
.connect
.qid
= cpu_to_le16(qid
);
448 cmd
.connect
.sqsize
= cpu_to_le16(ctrl
->sqsize
);
450 if (ctrl
->opts
->disable_sqflow
)
451 cmd
.connect
.cattr
|= NVME_CONNECT_DISABLE_SQFLOW
;
453 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
457 uuid_copy(&data
->hostid
, &ctrl
->opts
->host
->id
);
458 data
->cntlid
= cpu_to_le16(ctrl
->cntlid
);
459 strncpy(data
->subsysnqn
, ctrl
->opts
->subsysnqn
, NVMF_NQN_SIZE
);
460 strncpy(data
->hostnqn
, ctrl
->opts
->host
->nqn
, NVMF_NQN_SIZE
);
462 ret
= __nvme_submit_sync_cmd(ctrl
->connect_q
, &cmd
, &res
,
463 data
, sizeof(*data
), 0, qid
, 1,
464 BLK_MQ_REQ_RESERVED
| BLK_MQ_REQ_NOWAIT
, poll
);
466 nvmf_log_connect_error(ctrl
, ret
, le32_to_cpu(res
.u32
),
472 EXPORT_SYMBOL_GPL(nvmf_connect_io_queue
);
474 bool nvmf_should_reconnect(struct nvme_ctrl
*ctrl
)
476 if (ctrl
->opts
->max_reconnects
== -1 ||
477 ctrl
->nr_reconnects
< ctrl
->opts
->max_reconnects
)
482 EXPORT_SYMBOL_GPL(nvmf_should_reconnect
);
485 * nvmf_register_transport() - NVMe Fabrics Library registration function.
486 * @ops: Transport ops instance to be registered to the
487 * common fabrics library.
489 * API function that registers the type of specific transport fabric
490 * being implemented to the common NVMe fabrics library. Part of
491 * the overall init sequence of starting up a fabrics driver.
493 int nvmf_register_transport(struct nvmf_transport_ops
*ops
)
495 if (!ops
->create_ctrl
)
498 down_write(&nvmf_transports_rwsem
);
499 list_add_tail(&ops
->entry
, &nvmf_transports
);
500 up_write(&nvmf_transports_rwsem
);
504 EXPORT_SYMBOL_GPL(nvmf_register_transport
);
507 * nvmf_unregister_transport() - NVMe Fabrics Library unregistration function.
508 * @ops: Transport ops instance to be unregistered from the
509 * common fabrics library.
511 * Fabrics API function that unregisters the type of specific transport
512 * fabric being implemented from the common NVMe fabrics library.
513 * Part of the overall exit sequence of unloading the implemented driver.
515 void nvmf_unregister_transport(struct nvmf_transport_ops
*ops
)
517 down_write(&nvmf_transports_rwsem
);
518 list_del(&ops
->entry
);
519 up_write(&nvmf_transports_rwsem
);
521 EXPORT_SYMBOL_GPL(nvmf_unregister_transport
);
523 static struct nvmf_transport_ops
*nvmf_lookup_transport(
524 struct nvmf_ctrl_options
*opts
)
526 struct nvmf_transport_ops
*ops
;
528 lockdep_assert_held(&nvmf_transports_rwsem
);
530 list_for_each_entry(ops
, &nvmf_transports
, entry
) {
531 if (strcmp(ops
->name
, opts
->transport
) == 0)
539 * For something we're not in a state to send to the device the default action
540 * is to busy it and retry it after the controller state is recovered. However,
541 * if the controller is deleting or if anything is marked for failfast or
542 * nvme multipath it is immediately failed.
544 * Note: commands used to initialize the controller will be marked for failfast.
545 * Note: nvme cli/ioctl commands are marked for failfast.
547 blk_status_t
nvmf_fail_nonready_command(struct nvme_ctrl
*ctrl
,
550 if (ctrl
->state
!= NVME_CTRL_DELETING_NOIO
&&
551 ctrl
->state
!= NVME_CTRL_DEAD
&&
552 !test_bit(NVME_CTRL_FAILFAST_EXPIRED
, &ctrl
->flags
) &&
553 !blk_noretry_request(rq
) && !(rq
->cmd_flags
& REQ_NVME_MPATH
))
554 return BLK_STS_RESOURCE
;
556 nvme_req(rq
)->status
= NVME_SC_HOST_PATH_ERROR
;
557 blk_mq_start_request(rq
);
558 nvme_complete_rq(rq
);
561 EXPORT_SYMBOL_GPL(nvmf_fail_nonready_command
);
563 bool __nvmf_check_ready(struct nvme_ctrl
*ctrl
, struct request
*rq
,
566 struct nvme_request
*req
= nvme_req(rq
);
569 * currently we have a problem sending passthru commands
570 * on the admin_q if the controller is not LIVE because we can't
571 * make sure that they are going out after the admin connect,
572 * controller enable and/or other commands in the initialization
573 * sequence. until the controller will be LIVE, fail with
574 * BLK_STS_RESOURCE so that they will be rescheduled.
576 if (rq
->q
== ctrl
->admin_q
&& (req
->flags
& NVME_REQ_USERCMD
))
580 * Only allow commands on a live queue, except for the connect command,
581 * which is require to set the queue live in the appropinquate states.
583 switch (ctrl
->state
) {
584 case NVME_CTRL_CONNECTING
:
585 if (blk_rq_is_passthrough(rq
) && nvme_is_fabrics(req
->cmd
) &&
586 req
->cmd
->fabrics
.fctype
== nvme_fabrics_type_connect
)
597 EXPORT_SYMBOL_GPL(__nvmf_check_ready
);
599 static const match_table_t opt_tokens
= {
600 { NVMF_OPT_TRANSPORT
, "transport=%s" },
601 { NVMF_OPT_TRADDR
, "traddr=%s" },
602 { NVMF_OPT_TRSVCID
, "trsvcid=%s" },
603 { NVMF_OPT_NQN
, "nqn=%s" },
604 { NVMF_OPT_QUEUE_SIZE
, "queue_size=%d" },
605 { NVMF_OPT_NR_IO_QUEUES
, "nr_io_queues=%d" },
606 { NVMF_OPT_RECONNECT_DELAY
, "reconnect_delay=%d" },
607 { NVMF_OPT_CTRL_LOSS_TMO
, "ctrl_loss_tmo=%d" },
608 { NVMF_OPT_KATO
, "keep_alive_tmo=%d" },
609 { NVMF_OPT_HOSTNQN
, "hostnqn=%s" },
610 { NVMF_OPT_HOST_TRADDR
, "host_traddr=%s" },
611 { NVMF_OPT_HOST_ID
, "hostid=%s" },
612 { NVMF_OPT_DUP_CONNECT
, "duplicate_connect" },
613 { NVMF_OPT_DISABLE_SQFLOW
, "disable_sqflow" },
614 { NVMF_OPT_HDR_DIGEST
, "hdr_digest" },
615 { NVMF_OPT_DATA_DIGEST
, "data_digest" },
616 { NVMF_OPT_NR_WRITE_QUEUES
, "nr_write_queues=%d" },
617 { NVMF_OPT_NR_POLL_QUEUES
, "nr_poll_queues=%d" },
618 { NVMF_OPT_TOS
, "tos=%d" },
619 { NVMF_OPT_FAIL_FAST_TMO
, "fast_io_fail_tmo=%d" },
620 { NVMF_OPT_ERR
, NULL
}
623 static int nvmf_parse_options(struct nvmf_ctrl_options
*opts
,
626 substring_t args
[MAX_OPT_ARGS
];
627 char *options
, *o
, *p
;
630 int ctrl_loss_tmo
= NVMF_DEF_CTRL_LOSS_TMO
;
634 opts
->queue_size
= NVMF_DEF_QUEUE_SIZE
;
635 opts
->nr_io_queues
= num_online_cpus();
636 opts
->reconnect_delay
= NVMF_DEF_RECONNECT_DELAY
;
637 opts
->kato
= NVME_DEFAULT_KATO
;
638 opts
->duplicate_connect
= false;
639 opts
->fast_io_fail_tmo
= NVMF_DEF_FAIL_FAST_TMO
;
640 opts
->hdr_digest
= false;
641 opts
->data_digest
= false;
642 opts
->tos
= -1; /* < 0 == use transport default */
644 options
= o
= kstrdup(buf
, GFP_KERNEL
);
650 while ((p
= strsep(&o
, ",\n")) != NULL
) {
654 token
= match_token(p
, opt_tokens
, args
);
657 case NVMF_OPT_TRANSPORT
:
658 p
= match_strdup(args
);
663 kfree(opts
->transport
);
667 p
= match_strdup(args
);
672 kfree(opts
->subsysnqn
);
674 nqnlen
= strlen(opts
->subsysnqn
);
675 if (nqnlen
>= NVMF_NQN_SIZE
) {
676 pr_err("%s needs to be < %d bytes\n",
677 opts
->subsysnqn
, NVMF_NQN_SIZE
);
681 opts
->discovery_nqn
=
682 !(strcmp(opts
->subsysnqn
,
683 NVME_DISC_SUBSYS_NAME
));
685 case NVMF_OPT_TRADDR
:
686 p
= match_strdup(args
);
694 case NVMF_OPT_TRSVCID
:
695 p
= match_strdup(args
);
700 kfree(opts
->trsvcid
);
703 case NVMF_OPT_QUEUE_SIZE
:
704 if (match_int(args
, &token
)) {
708 if (token
< NVMF_MIN_QUEUE_SIZE
||
709 token
> NVMF_MAX_QUEUE_SIZE
) {
710 pr_err("Invalid queue_size %d\n", token
);
714 opts
->queue_size
= token
;
716 case NVMF_OPT_NR_IO_QUEUES
:
717 if (match_int(args
, &token
)) {
722 pr_err("Invalid number of IOQs %d\n", token
);
726 if (opts
->discovery_nqn
) {
727 pr_debug("Ignoring nr_io_queues value for discovery controller\n");
731 opts
->nr_io_queues
= min_t(unsigned int,
732 num_online_cpus(), token
);
735 if (match_int(args
, &token
)) {
741 pr_err("Invalid keep_alive_tmo %d\n", token
);
744 } else if (token
== 0 && !opts
->discovery_nqn
) {
745 /* Allowed for debug */
746 pr_warn("keep_alive_tmo 0 won't execute keep alives!!!\n");
750 case NVMF_OPT_CTRL_LOSS_TMO
:
751 if (match_int(args
, &token
)) {
757 pr_warn("ctrl_loss_tmo < 0 will reconnect forever\n");
758 ctrl_loss_tmo
= token
;
760 case NVMF_OPT_FAIL_FAST_TMO
:
761 if (match_int(args
, &token
)) {
767 pr_warn("I/O fail on reconnect controller after %d sec\n",
769 opts
->fast_io_fail_tmo
= token
;
771 case NVMF_OPT_HOSTNQN
:
773 pr_err("hostnqn already user-assigned: %s\n",
778 p
= match_strdup(args
);
784 if (nqnlen
>= NVMF_NQN_SIZE
) {
785 pr_err("%s needs to be < %d bytes\n",
791 nvmf_host_put(opts
->host
);
792 opts
->host
= nvmf_host_add(p
);
799 case NVMF_OPT_RECONNECT_DELAY
:
800 if (match_int(args
, &token
)) {
805 pr_err("Invalid reconnect_delay %d\n", token
);
809 opts
->reconnect_delay
= token
;
811 case NVMF_OPT_HOST_TRADDR
:
812 p
= match_strdup(args
);
817 kfree(opts
->host_traddr
);
818 opts
->host_traddr
= p
;
820 case NVMF_OPT_HOST_ID
:
821 p
= match_strdup(args
);
826 ret
= uuid_parse(p
, &hostid
);
828 pr_err("Invalid hostid %s\n", p
);
835 case NVMF_OPT_DUP_CONNECT
:
836 opts
->duplicate_connect
= true;
838 case NVMF_OPT_DISABLE_SQFLOW
:
839 opts
->disable_sqflow
= true;
841 case NVMF_OPT_HDR_DIGEST
:
842 opts
->hdr_digest
= true;
844 case NVMF_OPT_DATA_DIGEST
:
845 opts
->data_digest
= true;
847 case NVMF_OPT_NR_WRITE_QUEUES
:
848 if (match_int(args
, &token
)) {
853 pr_err("Invalid nr_write_queues %d\n", token
);
857 opts
->nr_write_queues
= token
;
859 case NVMF_OPT_NR_POLL_QUEUES
:
860 if (match_int(args
, &token
)) {
865 pr_err("Invalid nr_poll_queues %d\n", token
);
869 opts
->nr_poll_queues
= token
;
872 if (match_int(args
, &token
)) {
877 pr_err("Invalid type of service %d\n", token
);
882 pr_warn("Clamping type of service to 255\n");
888 pr_warn("unknown parameter or missing value '%s' in ctrl creation request\n",
895 if (opts
->discovery_nqn
) {
896 opts
->nr_io_queues
= 0;
897 opts
->nr_write_queues
= 0;
898 opts
->nr_poll_queues
= 0;
899 opts
->duplicate_connect
= true;
901 if (ctrl_loss_tmo
< 0) {
902 opts
->max_reconnects
= -1;
904 opts
->max_reconnects
= DIV_ROUND_UP(ctrl_loss_tmo
,
905 opts
->reconnect_delay
);
906 if (ctrl_loss_tmo
< opts
->fast_io_fail_tmo
)
907 pr_warn("failfast tmo (%d) larger than controller loss tmo (%d)\n",
908 opts
->fast_io_fail_tmo
, ctrl_loss_tmo
);
912 kref_get(&nvmf_default_host
->ref
);
913 opts
->host
= nvmf_default_host
;
916 uuid_copy(&opts
->host
->id
, &hostid
);
923 static int nvmf_check_required_opts(struct nvmf_ctrl_options
*opts
,
924 unsigned int required_opts
)
926 if ((opts
->mask
& required_opts
) != required_opts
) {
929 for (i
= 0; i
< ARRAY_SIZE(opt_tokens
); i
++) {
930 if ((opt_tokens
[i
].token
& required_opts
) &&
931 !(opt_tokens
[i
].token
& opts
->mask
)) {
932 pr_warn("missing parameter '%s'\n",
933 opt_tokens
[i
].pattern
);
943 bool nvmf_ip_options_match(struct nvme_ctrl
*ctrl
,
944 struct nvmf_ctrl_options
*opts
)
946 if (!nvmf_ctlr_matches_baseopts(ctrl
, opts
) ||
947 strcmp(opts
->traddr
, ctrl
->opts
->traddr
) ||
948 strcmp(opts
->trsvcid
, ctrl
->opts
->trsvcid
))
952 * Checking the local address is rough. In most cases, none is specified
953 * and the host port is selected by the stack.
955 * Assume no match if:
956 * - local address is specified and address is not the same
957 * - local address is not specified but remote is, or vice versa
958 * (admin using specific host_traddr when it matters).
960 if ((opts
->mask
& NVMF_OPT_HOST_TRADDR
) &&
961 (ctrl
->opts
->mask
& NVMF_OPT_HOST_TRADDR
)) {
962 if (strcmp(opts
->host_traddr
, ctrl
->opts
->host_traddr
))
964 } else if ((opts
->mask
& NVMF_OPT_HOST_TRADDR
) ||
965 (ctrl
->opts
->mask
& NVMF_OPT_HOST_TRADDR
)) {
971 EXPORT_SYMBOL_GPL(nvmf_ip_options_match
);
973 static int nvmf_check_allowed_opts(struct nvmf_ctrl_options
*opts
,
974 unsigned int allowed_opts
)
976 if (opts
->mask
& ~allowed_opts
) {
979 for (i
= 0; i
< ARRAY_SIZE(opt_tokens
); i
++) {
980 if ((opt_tokens
[i
].token
& opts
->mask
) &&
981 (opt_tokens
[i
].token
& ~allowed_opts
)) {
982 pr_warn("invalid parameter '%s'\n",
983 opt_tokens
[i
].pattern
);
993 void nvmf_free_options(struct nvmf_ctrl_options
*opts
)
995 nvmf_host_put(opts
->host
);
996 kfree(opts
->transport
);
998 kfree(opts
->trsvcid
);
999 kfree(opts
->subsysnqn
);
1000 kfree(opts
->host_traddr
);
1003 EXPORT_SYMBOL_GPL(nvmf_free_options
);
1005 #define NVMF_REQUIRED_OPTS (NVMF_OPT_TRANSPORT | NVMF_OPT_NQN)
1006 #define NVMF_ALLOWED_OPTS (NVMF_OPT_QUEUE_SIZE | NVMF_OPT_NR_IO_QUEUES | \
1007 NVMF_OPT_KATO | NVMF_OPT_HOSTNQN | \
1008 NVMF_OPT_HOST_ID | NVMF_OPT_DUP_CONNECT |\
1009 NVMF_OPT_DISABLE_SQFLOW |\
1010 NVMF_OPT_FAIL_FAST_TMO)
1012 static struct nvme_ctrl
*
1013 nvmf_create_ctrl(struct device
*dev
, const char *buf
)
1015 struct nvmf_ctrl_options
*opts
;
1016 struct nvmf_transport_ops
*ops
;
1017 struct nvme_ctrl
*ctrl
;
1020 opts
= kzalloc(sizeof(*opts
), GFP_KERNEL
);
1022 return ERR_PTR(-ENOMEM
);
1024 ret
= nvmf_parse_options(opts
, buf
);
1029 request_module("nvme-%s", opts
->transport
);
1032 * Check the generic options first as we need a valid transport for
1033 * the lookup below. Then clear the generic flags so that transport
1034 * drivers don't have to care about them.
1036 ret
= nvmf_check_required_opts(opts
, NVMF_REQUIRED_OPTS
);
1039 opts
->mask
&= ~NVMF_REQUIRED_OPTS
;
1041 down_read(&nvmf_transports_rwsem
);
1042 ops
= nvmf_lookup_transport(opts
);
1044 pr_info("no handler found for transport %s.\n",
1050 if (!try_module_get(ops
->module
)) {
1054 up_read(&nvmf_transports_rwsem
);
1056 ret
= nvmf_check_required_opts(opts
, ops
->required_opts
);
1058 goto out_module_put
;
1059 ret
= nvmf_check_allowed_opts(opts
, NVMF_ALLOWED_OPTS
|
1060 ops
->allowed_opts
| ops
->required_opts
);
1062 goto out_module_put
;
1064 ctrl
= ops
->create_ctrl(dev
, opts
);
1066 ret
= PTR_ERR(ctrl
);
1067 goto out_module_put
;
1070 module_put(ops
->module
);
1074 module_put(ops
->module
);
1077 up_read(&nvmf_transports_rwsem
);
1079 nvmf_free_options(opts
);
1080 return ERR_PTR(ret
);
1083 static struct class *nvmf_class
;
1084 static struct device
*nvmf_device
;
1085 static DEFINE_MUTEX(nvmf_dev_mutex
);
1087 static ssize_t
nvmf_dev_write(struct file
*file
, const char __user
*ubuf
,
1088 size_t count
, loff_t
*pos
)
1090 struct seq_file
*seq_file
= file
->private_data
;
1091 struct nvme_ctrl
*ctrl
;
1095 if (count
> PAGE_SIZE
)
1098 buf
= memdup_user_nul(ubuf
, count
);
1100 return PTR_ERR(buf
);
1102 mutex_lock(&nvmf_dev_mutex
);
1103 if (seq_file
->private) {
1108 ctrl
= nvmf_create_ctrl(nvmf_device
, buf
);
1110 ret
= PTR_ERR(ctrl
);
1114 seq_file
->private = ctrl
;
1117 mutex_unlock(&nvmf_dev_mutex
);
1119 return ret
? ret
: count
;
1122 static int nvmf_dev_show(struct seq_file
*seq_file
, void *private)
1124 struct nvme_ctrl
*ctrl
;
1127 mutex_lock(&nvmf_dev_mutex
);
1128 ctrl
= seq_file
->private;
1134 seq_printf(seq_file
, "instance=%d,cntlid=%d\n",
1135 ctrl
->instance
, ctrl
->cntlid
);
1138 mutex_unlock(&nvmf_dev_mutex
);
1142 static int nvmf_dev_open(struct inode
*inode
, struct file
*file
)
1145 * The miscdevice code initializes file->private_data, but doesn't
1146 * make use of it later.
1148 file
->private_data
= NULL
;
1149 return single_open(file
, nvmf_dev_show
, NULL
);
1152 static int nvmf_dev_release(struct inode
*inode
, struct file
*file
)
1154 struct seq_file
*seq_file
= file
->private_data
;
1155 struct nvme_ctrl
*ctrl
= seq_file
->private;
1158 nvme_put_ctrl(ctrl
);
1159 return single_release(inode
, file
);
1162 static const struct file_operations nvmf_dev_fops
= {
1163 .owner
= THIS_MODULE
,
1164 .write
= nvmf_dev_write
,
1166 .open
= nvmf_dev_open
,
1167 .release
= nvmf_dev_release
,
1170 static struct miscdevice nvmf_misc
= {
1171 .minor
= MISC_DYNAMIC_MINOR
,
1172 .name
= "nvme-fabrics",
1173 .fops
= &nvmf_dev_fops
,
1176 static int __init
nvmf_init(void)
1180 nvmf_default_host
= nvmf_host_default();
1181 if (!nvmf_default_host
)
1184 nvmf_class
= class_create(THIS_MODULE
, "nvme-fabrics");
1185 if (IS_ERR(nvmf_class
)) {
1186 pr_err("couldn't register class nvme-fabrics\n");
1187 ret
= PTR_ERR(nvmf_class
);
1192 device_create(nvmf_class
, NULL
, MKDEV(0, 0), NULL
, "ctl");
1193 if (IS_ERR(nvmf_device
)) {
1194 pr_err("couldn't create nvme-fabris device!\n");
1195 ret
= PTR_ERR(nvmf_device
);
1196 goto out_destroy_class
;
1199 ret
= misc_register(&nvmf_misc
);
1201 pr_err("couldn't register misc device: %d\n", ret
);
1202 goto out_destroy_device
;
1208 device_destroy(nvmf_class
, MKDEV(0, 0));
1210 class_destroy(nvmf_class
);
1212 nvmf_host_put(nvmf_default_host
);
1216 static void __exit
nvmf_exit(void)
1218 misc_deregister(&nvmf_misc
);
1219 device_destroy(nvmf_class
, MKDEV(0, 0));
1220 class_destroy(nvmf_class
);
1221 nvmf_host_put(nvmf_default_host
);
1223 BUILD_BUG_ON(sizeof(struct nvmf_common_command
) != 64);
1224 BUILD_BUG_ON(sizeof(struct nvmf_connect_command
) != 64);
1225 BUILD_BUG_ON(sizeof(struct nvmf_property_get_command
) != 64);
1226 BUILD_BUG_ON(sizeof(struct nvmf_property_set_command
) != 64);
1227 BUILD_BUG_ON(sizeof(struct nvmf_connect_data
) != 1024);
1230 MODULE_LICENSE("GPL v2");
1232 module_init(nvmf_init
);
1233 module_exit(nvmf_exit
);