| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 | * NVMe over Fabrics common host code. | 
|  | 3 | * Copyright (c) 2015-2016 HGST, a Western Digital Company. | 
|  | 4 | * | 
|  | 5 | * This program is free software; you can redistribute it and/or modify it | 
|  | 6 | * under the terms and conditions of the GNU General Public License, | 
|  | 7 | * version 2, as published by the Free Software Foundation. | 
|  | 8 | * | 
|  | 9 | * This program is distributed in the hope it will be useful, but WITHOUT | 
|  | 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
|  | 11 | * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
|  | 12 | * more details. | 
|  | 13 | */ | 
|  | 14 | #ifndef _NVME_FABRICS_H | 
|  | 15 | #define _NVME_FABRICS_H 1 | 
|  | 16 |  | 
|  | 17 | #include <linux/in.h> | 
|  | 18 | #include <linux/inet.h> | 
|  | 19 |  | 
|  | 20 | #define NVMF_MIN_QUEUE_SIZE	16 | 
|  | 21 | #define NVMF_MAX_QUEUE_SIZE	1024 | 
|  | 22 | #define NVMF_DEF_QUEUE_SIZE	128 | 
|  | 23 | #define NVMF_DEF_RECONNECT_DELAY	10 | 
| Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 24 | /* default to 600 seconds of reconnect attempts before giving up */ | 
|  | 25 | #define NVMF_DEF_CTRL_LOSS_TMO		600 | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 26 |  | 
|  | 27 | /* | 
|  | 28 | * Define a host as seen by the target.  We allocate one at boot, but also | 
|  | 29 | * allow the override it when creating controllers.  This is both to provide | 
|  | 30 | * persistence of the Host NQN over multiple boots, and to allow using | 
|  | 31 | * multiple ones, for example in a container scenario.  Because we must not | 
|  | 32 | * use different Host NQNs with the same Host ID we generate a Host ID and | 
|  | 33 | * use this structure to keep track of the relation between the two. | 
|  | 34 | */ | 
|  | 35 | struct nvmf_host { | 
|  | 36 | struct kref		ref; | 
|  | 37 | struct list_head	list; | 
|  | 38 | char			nqn[NVMF_NQN_SIZE]; | 
| Christoph Hellwig | 8e41226 | 2017-05-17 09:54:27 +0200 | [diff] [blame] | 39 | uuid_t			id; | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 40 | }; | 
|  | 41 |  | 
|  | 42 | /** | 
|  | 43 | * enum nvmf_parsing_opts - used to define the sysfs parsing options used. | 
|  | 44 | */ | 
|  | 45 | enum { | 
|  | 46 | NVMF_OPT_ERR		= 0, | 
|  | 47 | NVMF_OPT_TRANSPORT	= 1 << 0, | 
|  | 48 | NVMF_OPT_NQN		= 1 << 1, | 
|  | 49 | NVMF_OPT_TRADDR		= 1 << 2, | 
|  | 50 | NVMF_OPT_TRSVCID	= 1 << 3, | 
|  | 51 | NVMF_OPT_QUEUE_SIZE	= 1 << 4, | 
|  | 52 | NVMF_OPT_NR_IO_QUEUES	= 1 << 5, | 
|  | 53 | NVMF_OPT_TL_RETRY_COUNT	= 1 << 6, | 
| Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 54 | NVMF_OPT_KATO		= 1 << 7, | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 55 | NVMF_OPT_HOSTNQN	= 1 << 8, | 
|  | 56 | NVMF_OPT_RECONNECT_DELAY = 1 << 9, | 
| James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 57 | NVMF_OPT_HOST_TRADDR	= 1 << 10, | 
| Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 58 | NVMF_OPT_CTRL_LOSS_TMO	= 1 << 11, | 
| Johannes Thumshirn | 6bfe042 | 2017-06-20 14:23:01 +0200 | [diff] [blame] | 59 | NVMF_OPT_HOST_ID	= 1 << 12, | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 60 | }; | 
|  | 61 |  | 
|  | 62 | /** | 
|  | 63 | * struct nvmf_ctrl_options - Used to hold the options specified | 
|  | 64 | *			      with the parsing opts enum. | 
|  | 65 | * @mask:	Used by the fabrics library to parse through sysfs options | 
|  | 66 | *		on adding a NVMe controller. | 
|  | 67 | * @transport:	Holds the fabric transport "technology name" (for a lack of | 
|  | 68 | *		better description) that will be used by an NVMe controller | 
|  | 69 | *		being added. | 
|  | 70 | * @subsysnqn:	Hold the fully qualified NQN subystem name (format defined | 
|  | 71 | *		in the NVMe specification, "NVMe Qualified Names"). | 
| James Smart | 4a9f05c | 2016-08-02 10:41:20 +0300 | [diff] [blame] | 72 | * @traddr:	The transport-specific TRADDR field for a port on the | 
|  | 73 | *              subsystem which is adding a controller. | 
|  | 74 | * @trsvcid:	The transport-specific TRSVCID field for a port on the | 
|  | 75 | *              subsystem which is adding a controller. | 
| James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 76 | * @host_traddr: A transport-specific field identifying the NVME host port | 
|  | 77 | *              to use for the connection to the controller. | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 78 | * @queue_size: Number of IO queue elements. | 
|  | 79 | * @nr_io_queues: Number of controller IO queues that will be established. | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 80 | * @reconnect_delay: Time between two consecutive reconnect attempts. | 
|  | 81 | * @discovery_nqn: indicates if the subsysnqn is the well-known discovery NQN. | 
| Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 82 | * @kato:	Keep-alive timeout. | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 83 | * @host:	Virtual NVMe host, contains the NQN and Host ID. | 
| Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 84 | * @max_reconnects: maximum number of allowed reconnect attempts before removing | 
|  | 85 | *              the controller, (-1) means reconnect forever, zero means remove | 
|  | 86 | *              immediately; | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 87 | */ | 
|  | 88 | struct nvmf_ctrl_options { | 
|  | 89 | unsigned		mask; | 
|  | 90 | char			*transport; | 
|  | 91 | char			*subsysnqn; | 
|  | 92 | char			*traddr; | 
|  | 93 | char			*trsvcid; | 
| James Smart | 478bcb9 | 2016-08-02 10:42:10 +0300 | [diff] [blame] | 94 | char			*host_traddr; | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 95 | size_t			queue_size; | 
|  | 96 | unsigned int		nr_io_queues; | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 97 | unsigned int		reconnect_delay; | 
|  | 98 | bool			discovery_nqn; | 
| Sagi Grimberg | 038bd4c | 2016-06-13 16:45:28 +0200 | [diff] [blame] | 99 | unsigned int		kato; | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 100 | struct nvmf_host	*host; | 
| Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 101 | int			max_reconnects; | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 102 | }; | 
|  | 103 |  | 
|  | 104 | /* | 
|  | 105 | * struct nvmf_transport_ops - used to register a specific | 
|  | 106 | *			       fabric implementation of NVMe fabrics. | 
|  | 107 | * @entry:		Used by the fabrics library to add the new | 
|  | 108 | *			registration entry to its linked-list internal tree. | 
|  | 109 | * @name:		Name of the NVMe fabric driver implementation. | 
|  | 110 | * @required_opts:	sysfs command-line options that must be specified | 
|  | 111 | *			when adding a new NVMe controller. | 
|  | 112 | * @allowed_opts:	sysfs command-line options that can be specified | 
|  | 113 | *			when adding a new NVMe controller. | 
|  | 114 | * @create_ctrl():	function pointer that points to a non-NVMe | 
|  | 115 | *			implementation-specific fabric technology | 
|  | 116 | *			that would go into starting up that fabric | 
|  | 117 | *			for the purpose of conneciton to an NVMe controller | 
|  | 118 | *			using that fabric technology. | 
|  | 119 | * | 
|  | 120 | * Notes: | 
|  | 121 | *	1. At minimum, 'required_opts' and 'allowed_opts' should | 
|  | 122 | *	   be set to the same enum parsing options defined earlier. | 
|  | 123 | *	2. create_ctrl() must be defined (even if it does nothing) | 
|  | 124 | */ | 
|  | 125 | struct nvmf_transport_ops { | 
|  | 126 | struct list_head	entry; | 
|  | 127 | const char		*name; | 
|  | 128 | int			required_opts; | 
|  | 129 | int			allowed_opts; | 
|  | 130 | struct nvme_ctrl	*(*create_ctrl)(struct device *dev, | 
|  | 131 | struct nvmf_ctrl_options *opts); | 
|  | 132 | }; | 
|  | 133 |  | 
|  | 134 | int nvmf_reg_read32(struct nvme_ctrl *ctrl, u32 off, u32 *val); | 
|  | 135 | int nvmf_reg_read64(struct nvme_ctrl *ctrl, u32 off, u64 *val); | 
|  | 136 | int nvmf_reg_write32(struct nvme_ctrl *ctrl, u32 off, u32 val); | 
|  | 137 | int nvmf_connect_admin_queue(struct nvme_ctrl *ctrl); | 
|  | 138 | int nvmf_connect_io_queue(struct nvme_ctrl *ctrl, u16 qid); | 
| Johannes Thumshirn | e5a39dd | 2017-01-27 09:03:45 +0100 | [diff] [blame] | 139 | int nvmf_register_transport(struct nvmf_transport_ops *ops); | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 140 | void nvmf_unregister_transport(struct nvmf_transport_ops *ops); | 
|  | 141 | void nvmf_free_options(struct nvmf_ctrl_options *opts); | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 142 | int nvmf_get_address(struct nvme_ctrl *ctrl, char *buf, int size); | 
| Sagi Grimberg | 42a4527 | 2017-03-18 20:52:36 +0200 | [diff] [blame] | 143 | bool nvmf_should_reconnect(struct nvme_ctrl *ctrl); | 
| Christoph Hellwig | 07bfcd0 | 2016-06-13 16:45:26 +0200 | [diff] [blame] | 144 |  | 
|  | 145 | #endif /* _NVME_FABRICS_H */ |