blob: c3203ff1c654c546e74a235f87f8e5ff8f1035ee [file] [log] [blame]
Christoph Hellwig9002c4e2019-02-18 09:31:03 +01001/* SPDX-License-Identifier: GPL-2.0 */
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02002/*
3 * NVMe over Fabrics common host code.
4 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
Christoph Hellwig07bfcd02016-06-13 16:45:26 +02005 */
6#ifndef _NVME_FABRICS_H
7#define _NVME_FABRICS_H 1
8
9#include <linux/in.h>
10#include <linux/inet.h>
11
12#define NVMF_MIN_QUEUE_SIZE 16
13#define NVMF_MAX_QUEUE_SIZE 1024
14#define NVMF_DEF_QUEUE_SIZE 128
15#define NVMF_DEF_RECONNECT_DELAY 10
Sagi Grimberg42a45272017-03-18 20:52:36 +020016/* default to 600 seconds of reconnect attempts before giving up */
17#define NVMF_DEF_CTRL_LOSS_TMO 600
Victor Gladkov8c4dfea2020-11-24 18:34:59 +000018/* default is -1: the fail fast mechanism is disabled */
19#define NVMF_DEF_FAIL_FAST_TMO -1
Christoph Hellwig07bfcd02016-06-13 16:45:26 +020020
21/*
Christoph Hellwiged01fee2021-03-03 13:28:22 +010022 * Reserved one command for internal usage. This command is used for sending
23 * the connect command, as well as for the keep alive command on the admin
24 * queue once live.
25 */
26#define NVMF_RESERVED_TAGS 1
27
28/*
Christoph Hellwig07bfcd02016-06-13 16:45:26 +020029 * Define a host as seen by the target. We allocate one at boot, but also
30 * allow the override it when creating controllers. This is both to provide
31 * persistence of the Host NQN over multiple boots, and to allow using
32 * multiple ones, for example in a container scenario. Because we must not
33 * use different Host NQNs with the same Host ID we generate a Host ID and
34 * use this structure to keep track of the relation between the two.
35 */
36struct nvmf_host {
37 struct kref ref;
38 struct list_head list;
39 char nqn[NVMF_NQN_SIZE];
Christoph Hellwig8e412262017-05-17 09:54:27 +020040 uuid_t id;
Christoph Hellwig07bfcd02016-06-13 16:45:26 +020041};
42
43/**
44 * enum nvmf_parsing_opts - used to define the sysfs parsing options used.
45 */
46enum {
47 NVMF_OPT_ERR = 0,
48 NVMF_OPT_TRANSPORT = 1 << 0,
49 NVMF_OPT_NQN = 1 << 1,
50 NVMF_OPT_TRADDR = 1 << 2,
51 NVMF_OPT_TRSVCID = 1 << 3,
52 NVMF_OPT_QUEUE_SIZE = 1 << 4,
53 NVMF_OPT_NR_IO_QUEUES = 1 << 5,
54 NVMF_OPT_TL_RETRY_COUNT = 1 << 6,
Sagi Grimberg038bd4c2016-06-13 16:45:28 +020055 NVMF_OPT_KATO = 1 << 7,
Christoph Hellwig07bfcd02016-06-13 16:45:26 +020056 NVMF_OPT_HOSTNQN = 1 << 8,
57 NVMF_OPT_RECONNECT_DELAY = 1 << 9,
James Smart478bcb92016-08-02 10:42:10 +030058 NVMF_OPT_HOST_TRADDR = 1 << 10,
Sagi Grimberg42a45272017-03-18 20:52:36 +020059 NVMF_OPT_CTRL_LOSS_TMO = 1 << 11,
Johannes Thumshirn6bfe0422017-06-20 14:23:01 +020060 NVMF_OPT_HOST_ID = 1 << 12,
James Smart3b338762017-10-20 16:17:06 -070061 NVMF_OPT_DUP_CONNECT = 1 << 13,
Sagi Grimberg8154ed72018-11-19 14:11:15 -080062 NVMF_OPT_DISABLE_SQFLOW = 1 << 14,
Sagi Grimberg3b49fa82018-12-03 17:52:12 -080063 NVMF_OPT_HDR_DIGEST = 1 << 15,
Sagi Grimberg20d44e82018-12-03 17:52:13 -080064 NVMF_OPT_DATA_DIGEST = 1 << 16,
Sagi Grimberg330f6b82018-12-11 23:38:56 -080065 NVMF_OPT_NR_WRITE_QUEUES = 1 << 17,
Sagi Grimberg89d43802018-12-14 11:06:09 -080066 NVMF_OPT_NR_POLL_QUEUES = 1 << 18,
Israel Rukshin52b44512019-08-18 12:08:51 +030067 NVMF_OPT_TOS = 1 << 19,
Victor Gladkov8c4dfea2020-11-24 18:34:59 +000068 NVMF_OPT_FAIL_FAST_TMO = 1 << 20,
Martin Belanger3ede8f72021-05-20 15:09:34 -040069 NVMF_OPT_HOST_IFACE = 1 << 21,
Hannes Reinecke20e8b682021-09-22 08:35:24 +020070 NVMF_OPT_DISCOVERY = 1 << 22,
Christoph Hellwig07bfcd02016-06-13 16:45:26 +020071};
72
73/**
74 * struct nvmf_ctrl_options - Used to hold the options specified
75 * with the parsing opts enum.
76 * @mask: Used by the fabrics library to parse through sysfs options
77 * on adding a NVMe controller.
78 * @transport: Holds the fabric transport "technology name" (for a lack of
79 * better description) that will be used by an NVMe controller
80 * being added.
81 * @subsysnqn: Hold the fully qualified NQN subystem name (format defined
82 * in the NVMe specification, "NVMe Qualified Names").
James Smart4a9f05c2016-08-02 10:41:20 +030083 * @traddr: The transport-specific TRADDR field for a port on the
84 * subsystem which is adding a controller.
85 * @trsvcid: The transport-specific TRSVCID field for a port on the
86 * subsystem which is adding a controller.
James Smart478bcb92016-08-02 10:42:10 +030087 * @host_traddr: A transport-specific field identifying the NVME host port
Martin Belanger3ede8f72021-05-20 15:09:34 -040088 * to use for the connection to the controller.
89 * @host_iface: A transport-specific field identifying the NVME host
90 * interface to use for the connection to the controller.
Christoph Hellwig07bfcd02016-06-13 16:45:26 +020091 * @queue_size: Number of IO queue elements.
92 * @nr_io_queues: Number of controller IO queues that will be established.
Christoph Hellwig07bfcd02016-06-13 16:45:26 +020093 * @reconnect_delay: Time between two consecutive reconnect attempts.
94 * @discovery_nqn: indicates if the subsysnqn is the well-known discovery NQN.
Sagi Grimberg038bd4c2016-06-13 16:45:28 +020095 * @kato: Keep-alive timeout.
Christoph Hellwig07bfcd02016-06-13 16:45:26 +020096 * @host: Virtual NVMe host, contains the NQN and Host ID.
Sagi Grimberg42a45272017-03-18 20:52:36 +020097 * @max_reconnects: maximum number of allowed reconnect attempts before removing
98 * the controller, (-1) means reconnect forever, zero means remove
99 * immediately;
Sagi Grimbergfa9a1812018-12-11 23:38:55 -0800100 * @disable_sqflow: disable controller sq flow control
101 * @hdr_digest: generate/verify header digest (TCP)
102 * @data_digest: generate/verify data digest (TCP)
Sagi Grimberg330f6b82018-12-11 23:38:56 -0800103 * @nr_write_queues: number of queues for write I/O
Sagi Grimberg89d43802018-12-14 11:06:09 -0800104 * @nr_poll_queues: number of queues for polling I/O
Israel Rukshin52b44512019-08-18 12:08:51 +0300105 * @tos: type of service
Victor Gladkov8c4dfea2020-11-24 18:34:59 +0000106 * @fast_io_fail_tmo: Fast I/O fail timeout in seconds
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200107 */
108struct nvmf_ctrl_options {
109 unsigned mask;
110 char *transport;
111 char *subsysnqn;
112 char *traddr;
113 char *trsvcid;
James Smart478bcb92016-08-02 10:42:10 +0300114 char *host_traddr;
Martin Belanger3ede8f72021-05-20 15:09:34 -0400115 char *host_iface;
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200116 size_t queue_size;
117 unsigned int nr_io_queues;
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200118 unsigned int reconnect_delay;
119 bool discovery_nqn;
James Smart3b338762017-10-20 16:17:06 -0700120 bool duplicate_connect;
Sagi Grimberg038bd4c2016-06-13 16:45:28 +0200121 unsigned int kato;
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200122 struct nvmf_host *host;
Sagi Grimberg42a45272017-03-18 20:52:36 +0200123 int max_reconnects;
Sagi Grimberg8154ed72018-11-19 14:11:15 -0800124 bool disable_sqflow;
Sagi Grimberg3b49fa82018-12-03 17:52:12 -0800125 bool hdr_digest;
Sagi Grimberg20d44e82018-12-03 17:52:13 -0800126 bool data_digest;
Sagi Grimberg330f6b82018-12-11 23:38:56 -0800127 unsigned int nr_write_queues;
Sagi Grimberg89d43802018-12-14 11:06:09 -0800128 unsigned int nr_poll_queues;
Israel Rukshin52b44512019-08-18 12:08:51 +0300129 int tos;
Victor Gladkov8c4dfea2020-11-24 18:34:59 +0000130 int fast_io_fail_tmo;
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200131};
132
133/*
134 * struct nvmf_transport_ops - used to register a specific
135 * fabric implementation of NVMe fabrics.
136 * @entry: Used by the fabrics library to add the new
137 * registration entry to its linked-list internal tree.
Roy Shterman0de5cd32017-12-25 14:18:30 +0200138 * @module: Transport module reference
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200139 * @name: Name of the NVMe fabric driver implementation.
140 * @required_opts: sysfs command-line options that must be specified
141 * when adding a new NVMe controller.
142 * @allowed_opts: sysfs command-line options that can be specified
143 * when adding a new NVMe controller.
144 * @create_ctrl(): function pointer that points to a non-NVMe
145 * implementation-specific fabric technology
146 * that would go into starting up that fabric
147 * for the purpose of conneciton to an NVMe controller
148 * using that fabric technology.
149 *
150 * Notes:
151 * 1. At minimum, 'required_opts' and 'allowed_opts' should
152 * be set to the same enum parsing options defined earlier.
153 * 2. create_ctrl() must be defined (even if it does nothing)
Johannes Thumshirn12a0b662018-06-01 09:11:20 +0200154 * 3. struct nvmf_transport_ops must be statically allocated in the
155 * modules .bss section so that a pure module_get on @module
156 * prevents the memory from beeing freed.
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200157 */
158struct nvmf_transport_ops {
159 struct list_head entry;
Roy Shterman0de5cd32017-12-25 14:18:30 +0200160 struct module *module;
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200161 const char *name;
162 int required_opts;
163 int allowed_opts;
164 struct nvme_ctrl *(*create_ctrl)(struct device *dev,
165 struct nvmf_ctrl_options *opts);
166};
167
James Smart991231d2017-10-20 16:17:07 -0700168static inline bool
169nvmf_ctlr_matches_baseopts(struct nvme_ctrl *ctrl,
170 struct nvmf_ctrl_options *opts)
171{
James Smartab4f47a2018-05-25 14:02:23 -0700172 if (ctrl->state == NVME_CTRL_DELETING ||
173 ctrl->state == NVME_CTRL_DEAD ||
174 strcmp(opts->subsysnqn, ctrl->opts->subsysnqn) ||
James Smart991231d2017-10-20 16:17:07 -0700175 strcmp(opts->host->nqn, ctrl->opts->host->nqn) ||
176 memcmp(&opts->host->id, &ctrl->opts->host->id, sizeof(uuid_t)))
177 return false;
178
179 return true;
180}
181
Hannes Reineckee5ea42f2021-09-22 08:35:25 +0200182static inline char *nvmf_ctrl_subsysnqn(struct nvme_ctrl *ctrl)
183{
184 if (!ctrl->subsys)
185 return ctrl->opts->subsysnqn;
186 return ctrl->subsys->subnqn;
187}
188
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200189int nvmf_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val);
190int nvmf_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val);
191int nvmf_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val);
192int nvmf_connect_admin_queue(struct nvme_ctrl *ctrl);
Keith Buschbe42a332021-06-10 14:44:35 -0700193int nvmf_connect_io_queue(struct nvme_ctrl *ctrl, u16 qid);
Johannes Thumshirne5a39dd2017-01-27 09:03:45 +0100194int nvmf_register_transport(struct nvmf_transport_ops *ops);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200195void nvmf_unregister_transport(struct nvmf_transport_ops *ops);
196void nvmf_free_options(struct nvmf_ctrl_options *opts);
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200197int nvmf_get_address(struct nvme_ctrl *ctrl, char *buf, int size);
Sagi Grimberg42a45272017-03-18 20:52:36 +0200198bool nvmf_should_reconnect(struct nvme_ctrl *ctrl);
Sagi Grimbergb7c7be6f62018-10-18 17:40:40 -0700199bool nvmf_ip_options_match(struct nvme_ctrl *ctrl,
200 struct nvmf_ctrl_options *opts);
Christoph Hellwig3bc32bb2018-06-11 17:34:06 +0200201
Christoph Hellwig07bfcd02016-06-13 16:45:26 +0200202#endif /* _NVME_FABRICS_H */