177141dc6SChristoph Hellwig /* SPDX-License-Identifier: GPL-2.0 */
2a07b4970SChristoph Hellwig /*
3a07b4970SChristoph Hellwig * Copyright (c) 2015-2016 HGST, a Western Digital Company.
4a07b4970SChristoph Hellwig */
5a07b4970SChristoph Hellwig
6a07b4970SChristoph Hellwig #ifndef _NVMET_H
7a07b4970SChristoph Hellwig #define _NVMET_H
8a07b4970SChristoph Hellwig
9a07b4970SChristoph Hellwig #include <linux/dma-mapping.h>
10a07b4970SChristoph Hellwig #include <linux/types.h>
11a07b4970SChristoph Hellwig #include <linux/device.h>
12a07b4970SChristoph Hellwig #include <linux/kref.h>
13a07b4970SChristoph Hellwig #include <linux/percpu-refcount.h>
14a07b4970SChristoph Hellwig #include <linux/list.h>
15a07b4970SChristoph Hellwig #include <linux/mutex.h>
168e412263SChristoph Hellwig #include <linux/uuid.h>
17a07b4970SChristoph Hellwig #include <linux/nvme.h>
18a07b4970SChristoph Hellwig #include <linux/configfs.h>
19a07b4970SChristoph Hellwig #include <linux/rcupdate.h>
20a07b4970SChristoph Hellwig #include <linux/blkdev.h>
21c6925093SLogan Gunthorpe #include <linux/radix-tree.h>
22d2d1c454SIsrael Rukshin #include <linux/t10-pi.h>
23a07b4970SChristoph Hellwig
24ba76af67SLogan Gunthorpe #define NVMET_DEFAULT_VS NVME_VS(1, 3, 0)
25ba76af67SLogan Gunthorpe
26a07b4970SChristoph Hellwig #define NVMET_ASYNC_EVENTS 4
27a07b4970SChristoph Hellwig #define NVMET_ERROR_LOG_SLOTS 128
285698b805SChaitanya Kulkarni #define NVMET_NO_ERROR_LOC ((u16)-1)
29013b7ebeSMark Ruijter #define NVMET_DEFAULT_CTRL_MODEL "Linux"
3048b4c010SNoam Gottlieb #define NVMET_MN_MAX_SIZE 40
31e13b0615SNoam Gottlieb #define NVMET_SN_MAX_SIZE 20
3268c5444cSAleksandr Miloserdov #define NVMET_FR_MAX_SIZE 8
33a07b4970SChristoph Hellwig
34c86b8f7bSChristoph Hellwig /*
35c86b8f7bSChristoph Hellwig * Supported optional AENs:
36c86b8f7bSChristoph Hellwig */
37c86b8f7bSChristoph Hellwig #define NVMET_AEN_CFG_OPTIONAL \
3862ac0d32SChristoph Hellwig (NVME_AEN_CFG_NS_ATTR | NVME_AEN_CFG_ANA_CHANGE)
39f301c2b1SJay Sternberg #define NVMET_DISC_AEN_CFG_OPTIONAL \
40f301c2b1SJay Sternberg (NVME_AEN_CFG_DISC_CHANGE)
41c86b8f7bSChristoph Hellwig
42c86b8f7bSChristoph Hellwig /*
43c86b8f7bSChristoph Hellwig * Plus mandatory SMART AENs (we'll never send them, but allow enabling them):
44c86b8f7bSChristoph Hellwig */
45c86b8f7bSChristoph Hellwig #define NVMET_AEN_CFG_ALL \
46c86b8f7bSChristoph Hellwig (NVME_SMART_CRIT_SPARE | NVME_SMART_CRIT_TEMPERATURE | \
47c86b8f7bSChristoph Hellwig NVME_SMART_CRIT_RELIABILITY | NVME_SMART_CRIT_MEDIA | \
48c86b8f7bSChristoph Hellwig NVME_SMART_CRIT_VOLATILE_MEMORY | NVMET_AEN_CFG_OPTIONAL)
49c86b8f7bSChristoph Hellwig
50a07b4970SChristoph Hellwig /* Helper Macros when NVMe error is NVME_SC_CONNECT_INVALID_PARAM
51a07b4970SChristoph Hellwig * The 16 bit shift is to set IATTR bit to 1, which means offending
52a07b4970SChristoph Hellwig * offset starts in the data section of connect()
53a07b4970SChristoph Hellwig */
54a07b4970SChristoph Hellwig #define IPO_IATTR_CONNECT_DATA(x) \
55a07b4970SChristoph Hellwig (cpu_to_le32((1 << 16) | (offsetof(struct nvmf_connect_data, x))))
56a07b4970SChristoph Hellwig #define IPO_IATTR_CONNECT_SQE(x) \
57a07b4970SChristoph Hellwig (cpu_to_le32(offsetof(struct nvmf_connect_command, x)))
58a07b4970SChristoph Hellwig
59a07b4970SChristoph Hellwig struct nvmet_ns {
60a07b4970SChristoph Hellwig struct percpu_ref ref;
61a07b4970SChristoph Hellwig struct block_device *bdev;
62d5eff33eSChaitanya Kulkarni struct file *file;
63dedf0be5SChaitanya Kulkarni bool readonly;
64a07b4970SChristoph Hellwig u32 nsid;
65a07b4970SChristoph Hellwig u32 blksize_shift;
66a07b4970SChristoph Hellwig loff_t size;
67a07b4970SChristoph Hellwig u8 nguid[16];
68637dc0f3SJohannes Thumshirn uuid_t uuid;
6972efd25dSChristoph Hellwig u32 anagrpid;
70a07b4970SChristoph Hellwig
7155eb942eSChaitanya Kulkarni bool buffered_io;
72e4fcf07cSSolganik Alexander bool enabled;
73a07b4970SChristoph Hellwig struct nvmet_subsys *subsys;
74a07b4970SChristoph Hellwig const char *device_path;
75a07b4970SChristoph Hellwig
76a07b4970SChristoph Hellwig struct config_group device_group;
77a07b4970SChristoph Hellwig struct config_group group;
78a07b4970SChristoph Hellwig
79a07b4970SChristoph Hellwig struct completion disable_done;
80d5eff33eSChaitanya Kulkarni mempool_t *bvec_pool;
81c6925093SLogan Gunthorpe
82c6925093SLogan Gunthorpe struct pci_dev *p2p_dev;
839d16d264SChristophe JAILLET int use_p2pmem;
84d2d1c454SIsrael Rukshin int pi_type;
85d2d1c454SIsrael Rukshin int metadata_size;
86ab5d0b38SChaitanya Kulkarni u8 csi;
87a07b4970SChristoph Hellwig };
88a07b4970SChristoph Hellwig
to_nvmet_ns(struct config_item * item)89a07b4970SChristoph Hellwig static inline struct nvmet_ns *to_nvmet_ns(struct config_item *item)
90a07b4970SChristoph Hellwig {
91a07b4970SChristoph Hellwig return container_of(to_config_group(item), struct nvmet_ns, group);
92a07b4970SChristoph Hellwig }
93a07b4970SChristoph Hellwig
nvmet_ns_dev(struct nvmet_ns * ns)94c6925093SLogan Gunthorpe static inline struct device *nvmet_ns_dev(struct nvmet_ns *ns)
95c6925093SLogan Gunthorpe {
96c6925093SLogan Gunthorpe return ns->bdev ? disk_to_dev(ns->bdev->bd_disk) : NULL;
97c6925093SLogan Gunthorpe }
98c6925093SLogan Gunthorpe
99a07b4970SChristoph Hellwig struct nvmet_cq {
100a07b4970SChristoph Hellwig u16 qid;
101a07b4970SChristoph Hellwig u16 size;
102a07b4970SChristoph Hellwig };
103a07b4970SChristoph Hellwig
104a07b4970SChristoph Hellwig struct nvmet_sq {
105a07b4970SChristoph Hellwig struct nvmet_ctrl *ctrl;
106a07b4970SChristoph Hellwig struct percpu_ref ref;
107a07b4970SChristoph Hellwig u16 qid;
108a07b4970SChristoph Hellwig u16 size;
109f9cf2a64SJames Smart u32 sqhd;
110e6a622fdSSagi Grimberg bool sqhd_disabled;
111db1312ddSHannes Reinecke #ifdef CONFIG_NVME_TARGET_AUTH
112db1312ddSHannes Reinecke bool authenticated;
113c60651e3SChristophe JAILLET struct delayed_work auth_expired_work;
114db1312ddSHannes Reinecke u16 dhchap_tid;
115db1312ddSHannes Reinecke u16 dhchap_status;
116db1312ddSHannes Reinecke int dhchap_step;
117db1312ddSHannes Reinecke u8 *dhchap_c1;
118db1312ddSHannes Reinecke u8 *dhchap_c2;
119db1312ddSHannes Reinecke u32 dhchap_s1;
120db1312ddSHannes Reinecke u32 dhchap_s2;
121db1312ddSHannes Reinecke u8 *dhchap_skey;
122db1312ddSHannes Reinecke int dhchap_skey_len;
123db1312ddSHannes Reinecke #endif
124a07b4970SChristoph Hellwig struct completion free_done;
125427242ceSSagi Grimberg struct completion confirm_done;
126a07b4970SChristoph Hellwig };
127a07b4970SChristoph Hellwig
12862ac0d32SChristoph Hellwig struct nvmet_ana_group {
12962ac0d32SChristoph Hellwig struct config_group group;
13062ac0d32SChristoph Hellwig struct nvmet_port *port;
13162ac0d32SChristoph Hellwig u32 grpid;
13262ac0d32SChristoph Hellwig };
13362ac0d32SChristoph Hellwig
to_ana_group(struct config_item * item)13462ac0d32SChristoph Hellwig static inline struct nvmet_ana_group *to_ana_group(struct config_item *item)
13562ac0d32SChristoph Hellwig {
13662ac0d32SChristoph Hellwig return container_of(to_config_group(item), struct nvmet_ana_group,
13762ac0d32SChristoph Hellwig group);
13862ac0d32SChristoph Hellwig }
13962ac0d32SChristoph Hellwig
140a07b4970SChristoph Hellwig /**
141a07b4970SChristoph Hellwig * struct nvmet_port - Common structure to keep port
142a07b4970SChristoph Hellwig * information for the target.
143fe4a9791SChristoph Hellwig * @entry: Entry into referrals or transport list.
144a07b4970SChristoph Hellwig * @disc_addr: Address information is stored in a format defined
145a07b4970SChristoph Hellwig * for a discovery log page entry.
146a07b4970SChristoph Hellwig * @group: ConfigFS group for this element's folder.
147a07b4970SChristoph Hellwig * @priv: Private data for the transport.
148a07b4970SChristoph Hellwig */
149a07b4970SChristoph Hellwig struct nvmet_port {
150a07b4970SChristoph Hellwig struct list_head entry;
151a07b4970SChristoph Hellwig struct nvmf_disc_rsp_page_entry disc_addr;
152a07b4970SChristoph Hellwig struct config_group group;
153a07b4970SChristoph Hellwig struct config_group subsys_group;
154a07b4970SChristoph Hellwig struct list_head subsystems;
155a07b4970SChristoph Hellwig struct config_group referrals_group;
156a07b4970SChristoph Hellwig struct list_head referrals;
157b662a078SJay Sternberg struct list_head global_entry;
15862ac0d32SChristoph Hellwig struct config_group ana_groups_group;
15962ac0d32SChristoph Hellwig struct nvmet_ana_group ana_default_group;
16072efd25dSChristoph Hellwig enum nvme_ana_state *ana_state;
161a07b4970SChristoph Hellwig void *priv;
162a07b4970SChristoph Hellwig bool enabled;
1630d5ee2b2SSteve Wise int inline_data_size;
1649d09dd8dSJames Smart const struct nvmet_fabrics_ops *tr_ops;
165ea52ac1cSIsrael Rukshin bool pi_enable;
166a07b4970SChristoph Hellwig };
167a07b4970SChristoph Hellwig
to_nvmet_port(struct config_item * item)168a07b4970SChristoph Hellwig static inline struct nvmet_port *to_nvmet_port(struct config_item *item)
169a07b4970SChristoph Hellwig {
170a07b4970SChristoph Hellwig return container_of(to_config_group(item), struct nvmet_port,
171a07b4970SChristoph Hellwig group);
172a07b4970SChristoph Hellwig }
173a07b4970SChristoph Hellwig
ana_groups_to_port(struct config_item * item)17462ac0d32SChristoph Hellwig static inline struct nvmet_port *ana_groups_to_port(
17562ac0d32SChristoph Hellwig struct config_item *item)
17662ac0d32SChristoph Hellwig {
17762ac0d32SChristoph Hellwig return container_of(to_config_group(item), struct nvmet_port,
17862ac0d32SChristoph Hellwig ana_groups_group);
17962ac0d32SChristoph Hellwig }
18062ac0d32SChristoph Hellwig
181a07b4970SChristoph Hellwig struct nvmet_ctrl {
182a07b4970SChristoph Hellwig struct nvmet_subsys *subsys;
183a07b4970SChristoph Hellwig struct nvmet_sq **sqs;
184a07b4970SChristoph Hellwig
185aaeadd70SSagi Grimberg bool reset_tbkas;
186c09305aeSSagi Grimberg
187a07b4970SChristoph Hellwig struct mutex lock;
188a07b4970SChristoph Hellwig u64 cap;
189a07b4970SChristoph Hellwig u32 cc;
190a07b4970SChristoph Hellwig u32 csts;
191a07b4970SChristoph Hellwig
19228dd5cf7SOmri Mann uuid_t hostid;
193a07b4970SChristoph Hellwig u16 cntlid;
194a07b4970SChristoph Hellwig u32 kato;
195a07b4970SChristoph Hellwig
1964ee43280SChristoph Hellwig struct nvmet_port *port;
1974ee43280SChristoph Hellwig
198c86b8f7bSChristoph Hellwig u32 aen_enabled;
19955fdd6b6SChristoph Hellwig unsigned long aen_masked;
200a07b4970SChristoph Hellwig struct nvmet_req *async_event_cmds[NVMET_ASYNC_EVENTS];
201a07b4970SChristoph Hellwig unsigned int nr_async_event_cmds;
202a07b4970SChristoph Hellwig struct list_head async_events;
203a07b4970SChristoph Hellwig struct work_struct async_event_work;
204a07b4970SChristoph Hellwig
205a07b4970SChristoph Hellwig struct list_head subsys_entry;
206a07b4970SChristoph Hellwig struct kref ref;
207a07b4970SChristoph Hellwig struct delayed_work ka_work;
208a07b4970SChristoph Hellwig struct work_struct fatal_err_work;
209a07b4970SChristoph Hellwig
210e929f06dSChristoph Hellwig const struct nvmet_fabrics_ops *ops;
211a07b4970SChristoph Hellwig
212c16734eaSChristoph Hellwig __le32 *changed_ns_list;
213c16734eaSChristoph Hellwig u32 nr_changed_ns;
214c16734eaSChristoph Hellwig
215a07b4970SChristoph Hellwig char subsysnqn[NVMF_NQN_FIELD_LEN];
216a07b4970SChristoph Hellwig char hostnqn[NVMF_NQN_FIELD_LEN];
217c6925093SLogan Gunthorpe
218c6925093SLogan Gunthorpe struct device *p2p_client;
219c6925093SLogan Gunthorpe struct radix_tree_root p2p_ns_map;
220e4a97625SChaitanya Kulkarni
221e4a97625SChaitanya Kulkarni spinlock_t error_lock;
222e4a97625SChaitanya Kulkarni u64 err_counter;
223e4a97625SChaitanya Kulkarni struct nvme_error_slot slots[NVMET_ERROR_LOG_SLOTS];
224ea52ac1cSIsrael Rukshin bool pi_support;
225db1312ddSHannes Reinecke #ifdef CONFIG_NVME_TARGET_AUTH
226db1312ddSHannes Reinecke struct nvme_dhchap_key *host_key;
227db1312ddSHannes Reinecke struct nvme_dhchap_key *ctrl_key;
228db1312ddSHannes Reinecke u8 shash_id;
2297a277c37SHannes Reinecke struct crypto_kpp *dh_tfm;
2307a277c37SHannes Reinecke u8 dh_gid;
2317a277c37SHannes Reinecke u8 *dh_key;
2327a277c37SHannes Reinecke size_t dh_keysize;
233db1312ddSHannes Reinecke #endif
234a07b4970SChristoph Hellwig };
235a07b4970SChristoph Hellwig
236a07b4970SChristoph Hellwig struct nvmet_subsys {
237a07b4970SChristoph Hellwig enum nvme_subsys_type type;
238a07b4970SChristoph Hellwig
239a07b4970SChristoph Hellwig struct mutex lock;
240a07b4970SChristoph Hellwig struct kref ref;
241a07b4970SChristoph Hellwig
2427774e77eSChaitanya Kulkarni struct xarray namespaces;
243793c7cfcSChristoph Hellwig unsigned int nr_namespaces;
24486693c43SChaitanya Kulkarni u32 max_nsid;
24594a39d61SChaitanya Kulkarni u16 cntlid_min;
24694a39d61SChaitanya Kulkarni u16 cntlid_max;
247a07b4970SChristoph Hellwig
248a07b4970SChristoph Hellwig struct list_head ctrls;
249a07b4970SChristoph Hellwig
250a07b4970SChristoph Hellwig struct list_head hosts;
251a07b4970SChristoph Hellwig bool allow_any_host;
252a07b4970SChristoph Hellwig
253a07b4970SChristoph Hellwig u16 max_qid;
254a07b4970SChristoph Hellwig
255a07b4970SChristoph Hellwig u64 ver;
256e13b0615SNoam Gottlieb char serial[NVMET_SN_MAX_SIZE];
2577ae023c5SNoam Gottlieb bool subsys_discovered;
258a07b4970SChristoph Hellwig char *subsysnqn;
259ea52ac1cSIsrael Rukshin bool pi_support;
260a07b4970SChristoph Hellwig
261a07b4970SChristoph Hellwig struct config_group group;
262a07b4970SChristoph Hellwig
263a07b4970SChristoph Hellwig struct config_group namespaces_group;
264a07b4970SChristoph Hellwig struct config_group allowed_hosts_group;
265013b7ebeSMark Ruijter
266d9f273b7SMax Gurtovoy char *model_number;
26723855abdSAleksandr Miloserdov u32 ieee_oui;
26868c5444cSAleksandr Miloserdov char *firmware_rev;
269c1fef73fSLogan Gunthorpe
270c1fef73fSLogan Gunthorpe #ifdef CONFIG_NVME_TARGET_PASSTHRU
271c1fef73fSLogan Gunthorpe struct nvme_ctrl *passthru_ctrl;
272ba76af67SLogan Gunthorpe char *passthru_ctrl_path;
273cae5b01aSLogan Gunthorpe struct config_group passthru_group;
274a2f6a2b8SChaitanya Kulkarni unsigned int admin_timeout;
27547e9730cSChaitanya Kulkarni unsigned int io_timeout;
27634ad6151SAlan Adamson unsigned int clear_ids;
277c1fef73fSLogan Gunthorpe #endif /* CONFIG_NVME_TARGET_PASSTHRU */
278aaf2e048SChaitanya Kulkarni
279aaf2e048SChaitanya Kulkarni #ifdef CONFIG_BLK_DEV_ZONED
280aaf2e048SChaitanya Kulkarni u8 zasl;
281aaf2e048SChaitanya Kulkarni #endif /* CONFIG_BLK_DEV_ZONED */
282a07b4970SChristoph Hellwig };
283a07b4970SChristoph Hellwig
to_subsys(struct config_item * item)284a07b4970SChristoph Hellwig static inline struct nvmet_subsys *to_subsys(struct config_item *item)
285a07b4970SChristoph Hellwig {
286a07b4970SChristoph Hellwig return container_of(to_config_group(item), struct nvmet_subsys, group);
287a07b4970SChristoph Hellwig }
288a07b4970SChristoph Hellwig
namespaces_to_subsys(struct config_item * item)289a07b4970SChristoph Hellwig static inline struct nvmet_subsys *namespaces_to_subsys(
290a07b4970SChristoph Hellwig struct config_item *item)
291a07b4970SChristoph Hellwig {
292a07b4970SChristoph Hellwig return container_of(to_config_group(item), struct nvmet_subsys,
293a07b4970SChristoph Hellwig namespaces_group);
294a07b4970SChristoph Hellwig }
295a07b4970SChristoph Hellwig
296a07b4970SChristoph Hellwig struct nvmet_host {
297a07b4970SChristoph Hellwig struct config_group group;
298db1312ddSHannes Reinecke u8 *dhchap_secret;
299db1312ddSHannes Reinecke u8 *dhchap_ctrl_secret;
300db1312ddSHannes Reinecke u8 dhchap_key_hash;
301db1312ddSHannes Reinecke u8 dhchap_ctrl_key_hash;
302db1312ddSHannes Reinecke u8 dhchap_hash_id;
303db1312ddSHannes Reinecke u8 dhchap_dhgroup_id;
304a07b4970SChristoph Hellwig };
305a07b4970SChristoph Hellwig
to_host(struct config_item * item)306a07b4970SChristoph Hellwig static inline struct nvmet_host *to_host(struct config_item *item)
307a07b4970SChristoph Hellwig {
308a07b4970SChristoph Hellwig return container_of(to_config_group(item), struct nvmet_host, group);
309a07b4970SChristoph Hellwig }
310a07b4970SChristoph Hellwig
nvmet_host_name(struct nvmet_host * host)311a07b4970SChristoph Hellwig static inline char *nvmet_host_name(struct nvmet_host *host)
312a07b4970SChristoph Hellwig {
313a07b4970SChristoph Hellwig return config_item_name(&host->group.cg_item);
314a07b4970SChristoph Hellwig }
315a07b4970SChristoph Hellwig
316a07b4970SChristoph Hellwig struct nvmet_host_link {
317a07b4970SChristoph Hellwig struct list_head entry;
318a07b4970SChristoph Hellwig struct nvmet_host *host;
319a07b4970SChristoph Hellwig };
320a07b4970SChristoph Hellwig
321a07b4970SChristoph Hellwig struct nvmet_subsys_link {
322a07b4970SChristoph Hellwig struct list_head entry;
323a07b4970SChristoph Hellwig struct nvmet_subsys *subsys;
324a07b4970SChristoph Hellwig };
325a07b4970SChristoph Hellwig
326a07b4970SChristoph Hellwig struct nvmet_req;
327a07b4970SChristoph Hellwig struct nvmet_fabrics_ops {
328a07b4970SChristoph Hellwig struct module *owner;
329a07b4970SChristoph Hellwig unsigned int type;
330a07b4970SChristoph Hellwig unsigned int msdbd;
3316fa350f7SMax Gurtovoy unsigned int flags;
3326fa350f7SMax Gurtovoy #define NVMF_KEYED_SGLS (1 << 0)
3336fa350f7SMax Gurtovoy #define NVMF_METADATA_SUPPORTED (1 << 1)
334a07b4970SChristoph Hellwig void (*queue_response)(struct nvmet_req *req);
335a07b4970SChristoph Hellwig int (*add_port)(struct nvmet_port *port);
336a07b4970SChristoph Hellwig void (*remove_port)(struct nvmet_port *port);
337a07b4970SChristoph Hellwig void (*delete_ctrl)(struct nvmet_ctrl *ctrl);
3384c652685SSagi Grimberg void (*disc_traddr)(struct nvmet_req *req,
3394c652685SSagi Grimberg struct nvmet_port *port, char *traddr);
3401672ddb8SSagi Grimberg u16 (*install_queue)(struct nvmet_sq *nvme_sq);
3419d09dd8dSJames Smart void (*discovery_chg)(struct nvmet_port *port);
34202cb00e2SMax Gurtovoy u8 (*get_mdts)(const struct nvmet_ctrl *ctrl);
3436d1555ccSMax Gurtovoy u16 (*get_max_queue_size)(const struct nvmet_ctrl *ctrl);
344a07b4970SChristoph Hellwig };
345a07b4970SChristoph Hellwig
346a07b4970SChristoph Hellwig #define NVMET_MAX_INLINE_BIOVEC 8
34773383adfSSagi Grimberg #define NVMET_MAX_INLINE_DATA_LEN NVMET_MAX_INLINE_BIOVEC * PAGE_SIZE
348a07b4970SChristoph Hellwig
349a07b4970SChristoph Hellwig struct nvmet_req {
350a07b4970SChristoph Hellwig struct nvme_command *cmd;
351fc6c9730SMax Gurtovoy struct nvme_completion *cqe;
352a07b4970SChristoph Hellwig struct nvmet_sq *sq;
353a07b4970SChristoph Hellwig struct nvmet_cq *cq;
354a07b4970SChristoph Hellwig struct nvmet_ns *ns;
355a07b4970SChristoph Hellwig struct scatterlist *sg;
356c6e3f133SIsrael Rukshin struct scatterlist *metadata_sg;
357a07b4970SChristoph Hellwig struct bio_vec inline_bvec[NVMET_MAX_INLINE_BIOVEC];
358d5eff33eSChaitanya Kulkarni union {
359d5eff33eSChaitanya Kulkarni struct {
360d5eff33eSChaitanya Kulkarni struct bio inline_bio;
361d5eff33eSChaitanya Kulkarni } b;
362d5eff33eSChaitanya Kulkarni struct {
363d5eff33eSChaitanya Kulkarni bool mpool_alloc;
364d5eff33eSChaitanya Kulkarni struct kiocb iocb;
365d5eff33eSChaitanya Kulkarni struct bio_vec *bvec;
366d5eff33eSChaitanya Kulkarni struct work_struct work;
367d5eff33eSChaitanya Kulkarni } f;
368c1fef73fSLogan Gunthorpe struct {
369dab3902bSChaitanya Kulkarni struct bio inline_bio;
370c1fef73fSLogan Gunthorpe struct request *rq;
371c1fef73fSLogan Gunthorpe struct work_struct work;
372c1fef73fSLogan Gunthorpe bool use_workqueue;
373c1fef73fSLogan Gunthorpe } p;
374aaf2e048SChaitanya Kulkarni #ifdef CONFIG_BLK_DEV_ZONED
375aaf2e048SChaitanya Kulkarni struct {
376aaf2e048SChaitanya Kulkarni struct bio inline_bio;
377aaf2e048SChaitanya Kulkarni struct work_struct zmgmt_work;
378aaf2e048SChaitanya Kulkarni } z;
379aaf2e048SChaitanya Kulkarni #endif /* CONFIG_BLK_DEV_ZONED */
380d5eff33eSChaitanya Kulkarni };
381a07b4970SChristoph Hellwig int sg_cnt;
382c6e3f133SIsrael Rukshin int metadata_sg_cnt;
3835e62d5c9SChristoph Hellwig /* data length as parsed from the SGL descriptor: */
3845e62d5c9SChristoph Hellwig size_t transfer_len;
385c6e3f133SIsrael Rukshin size_t metadata_len;
386a07b4970SChristoph Hellwig
387a07b4970SChristoph Hellwig struct nvmet_port *port;
388a07b4970SChristoph Hellwig
389a07b4970SChristoph Hellwig void (*execute)(struct nvmet_req *req);
390e929f06dSChristoph Hellwig const struct nvmet_fabrics_ops *ops;
391c6925093SLogan Gunthorpe
392c6925093SLogan Gunthorpe struct pci_dev *p2p_dev;
393c6925093SLogan Gunthorpe struct device *p2p_client;
394e4a97625SChaitanya Kulkarni u16 error_loc;
395e4a97625SChaitanya Kulkarni u64 error_slba;
396a07b4970SChristoph Hellwig };
397a07b4970SChristoph Hellwig
398fa8f9ac4SChristoph Hellwig #define NVMET_MAX_MPOOL_BVEC 16
399fa8f9ac4SChristoph Hellwig extern struct kmem_cache *nvmet_bvec_cache;
40055eb942eSChaitanya Kulkarni extern struct workqueue_struct *buffered_io_wq;
401aaf2e048SChaitanya Kulkarni extern struct workqueue_struct *zbd_wq;
4028832cf92SSagi Grimberg extern struct workqueue_struct *nvmet_wq;
40355eb942eSChaitanya Kulkarni
nvmet_set_result(struct nvmet_req * req,u32 result)404a07b4970SChristoph Hellwig static inline void nvmet_set_result(struct nvmet_req *req, u32 result)
405a07b4970SChristoph Hellwig {
406fc6c9730SMax Gurtovoy req->cqe->result.u32 = cpu_to_le32(result);
407a07b4970SChristoph Hellwig }
408a07b4970SChristoph Hellwig
409a07b4970SChristoph Hellwig /*
410a07b4970SChristoph Hellwig * NVMe command writes actually are DMA reads for us on the target side.
411a07b4970SChristoph Hellwig */
412a07b4970SChristoph Hellwig static inline enum dma_data_direction
nvmet_data_dir(struct nvmet_req * req)413a07b4970SChristoph Hellwig nvmet_data_dir(struct nvmet_req *req)
414a07b4970SChristoph Hellwig {
415a07b4970SChristoph Hellwig return nvme_is_write(req->cmd) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
416a07b4970SChristoph Hellwig }
417a07b4970SChristoph Hellwig
418a07b4970SChristoph Hellwig struct nvmet_async_event {
419a07b4970SChristoph Hellwig struct list_head entry;
420a07b4970SChristoph Hellwig u8 event_type;
421a07b4970SChristoph Hellwig u8 event_info;
422a07b4970SChristoph Hellwig u8 log_page;
423a07b4970SChristoph Hellwig };
424a07b4970SChristoph Hellwig
nvmet_clear_aen_bit(struct nvmet_req * req,u32 bn)4257114ddebSJay Sternberg static inline void nvmet_clear_aen_bit(struct nvmet_req *req, u32 bn)
4266c8312adSJay Sternberg {
427b7c8f366SChaitanya Kulkarni int rae = le32_to_cpu(req->cmd->common.cdw10) & 1 << 15;
4286c8312adSJay Sternberg
4296c8312adSJay Sternberg if (!rae)
4307114ddebSJay Sternberg clear_bit(bn, &req->sq->ctrl->aen_masked);
4316c8312adSJay Sternberg }
4326c8312adSJay Sternberg
nvmet_aen_bit_disabled(struct nvmet_ctrl * ctrl,u32 bn)4337114ddebSJay Sternberg static inline bool nvmet_aen_bit_disabled(struct nvmet_ctrl *ctrl, u32 bn)
4346c8312adSJay Sternberg {
4357114ddebSJay Sternberg if (!(READ_ONCE(ctrl->aen_enabled) & (1 << bn)))
4366c8312adSJay Sternberg return true;
4377114ddebSJay Sternberg return test_and_set_bit(bn, &ctrl->aen_masked);
4386c8312adSJay Sternberg }
4396c8312adSJay Sternberg
44090107455SJay Sternberg void nvmet_get_feat_kato(struct nvmet_req *req);
44190107455SJay Sternberg void nvmet_get_feat_async_event(struct nvmet_req *req);
44290107455SJay Sternberg u16 nvmet_set_feat_kato(struct nvmet_req *req);
44390107455SJay Sternberg u16 nvmet_set_feat_async_event(struct nvmet_req *req, u32 mask);
44490107455SJay Sternberg void nvmet_execute_async_event(struct nvmet_req *req);
4454e683c48SAmit Engel void nvmet_start_keep_alive_timer(struct nvmet_ctrl *ctrl);
4464e683c48SAmit Engel void nvmet_stop_keep_alive_timer(struct nvmet_ctrl *ctrl);
44790107455SJay Sternberg
44864a0ca88SParav Pandit u16 nvmet_parse_connect_cmd(struct nvmet_req *req);
4499d05a96eSBart Van Assche void nvmet_bdev_set_limits(struct block_device *bdev, struct nvme_id_ns *id);
450d5eff33eSChaitanya Kulkarni u16 nvmet_bdev_parse_io_cmd(struct nvmet_req *req);
451d5eff33eSChaitanya Kulkarni u16 nvmet_file_parse_io_cmd(struct nvmet_req *req);
452aaf2e048SChaitanya Kulkarni u16 nvmet_bdev_zns_parse_io_cmd(struct nvmet_req *req);
45364a0ca88SParav Pandit u16 nvmet_parse_admin_cmd(struct nvmet_req *req);
45464a0ca88SParav Pandit u16 nvmet_parse_discovery_cmd(struct nvmet_req *req);
4556490c9edSHannes Reinecke u16 nvmet_parse_fabrics_admin_cmd(struct nvmet_req *req);
4566490c9edSHannes Reinecke u16 nvmet_parse_fabrics_io_cmd(struct nvmet_req *req);
457a07b4970SChristoph Hellwig
458a07b4970SChristoph Hellwig bool nvmet_req_init(struct nvmet_req *req, struct nvmet_cq *cq,
459e929f06dSChristoph Hellwig struct nvmet_sq *sq, const struct nvmet_fabrics_ops *ops);
460549f01aeSVijay Immanuel void nvmet_req_uninit(struct nvmet_req *req);
461136cc1ffSIsrael Rukshin bool nvmet_check_transfer_len(struct nvmet_req *req, size_t len);
462b716e688SSagi Grimberg bool nvmet_check_data_len_lte(struct nvmet_req *req, size_t data_len);
463a07b4970SChristoph Hellwig void nvmet_req_complete(struct nvmet_req *req, u16 status);
464c6e3f133SIsrael Rukshin int nvmet_req_alloc_sgls(struct nvmet_req *req);
465c6e3f133SIsrael Rukshin void nvmet_req_free_sgls(struct nvmet_req *req);
466a07b4970SChristoph Hellwig
467c1fef73fSLogan Gunthorpe void nvmet_execute_set_features(struct nvmet_req *req);
468c1fef73fSLogan Gunthorpe void nvmet_execute_get_features(struct nvmet_req *req);
469f9362ac1SJay Sternberg void nvmet_execute_keep_alive(struct nvmet_req *req);
470f9362ac1SJay Sternberg
471a07b4970SChristoph Hellwig void nvmet_cq_setup(struct nvmet_ctrl *ctrl, struct nvmet_cq *cq, u16 qid,
472a07b4970SChristoph Hellwig u16 size);
473a07b4970SChristoph Hellwig void nvmet_sq_setup(struct nvmet_ctrl *ctrl, struct nvmet_sq *sq, u16 qid,
474a07b4970SChristoph Hellwig u16 size);
475a07b4970SChristoph Hellwig void nvmet_sq_destroy(struct nvmet_sq *sq);
476a07b4970SChristoph Hellwig int nvmet_sq_init(struct nvmet_sq *sq);
477a07b4970SChristoph Hellwig
478a07b4970SChristoph Hellwig void nvmet_ctrl_fatal_error(struct nvmet_ctrl *ctrl);
479a07b4970SChristoph Hellwig
480a07b4970SChristoph Hellwig void nvmet_update_cc(struct nvmet_ctrl *ctrl, u32 new);
481a07b4970SChristoph Hellwig u16 nvmet_alloc_ctrl(const char *subsysnqn, const char *hostnqn,
482a07b4970SChristoph Hellwig struct nvmet_req *req, u32 kato, struct nvmet_ctrl **ctrlp);
483de587804SChaitanya Kulkarni struct nvmet_ctrl *nvmet_ctrl_find_get(const char *subsysnqn,
484de587804SChaitanya Kulkarni const char *hostnqn, u16 cntlid,
485de587804SChaitanya Kulkarni struct nvmet_req *req);
486a07b4970SChristoph Hellwig void nvmet_ctrl_put(struct nvmet_ctrl *ctrl);
4877798df6fSChaitanya Kulkarni u16 nvmet_check_ctrl_status(struct nvmet_req *req);
488a07b4970SChristoph Hellwig
489a07b4970SChristoph Hellwig struct nvmet_subsys *nvmet_subsys_alloc(const char *subsysnqn,
490a07b4970SChristoph Hellwig enum nvme_subsys_type type);
491a07b4970SChristoph Hellwig void nvmet_subsys_put(struct nvmet_subsys *subsys);
492344770b0SSagi Grimberg void nvmet_subsys_del_ctrls(struct nvmet_subsys *subsys);
493a07b4970SChristoph Hellwig
4943a1f7c79SChaitanya Kulkarni u16 nvmet_req_find_ns(struct nvmet_req *req);
495a07b4970SChristoph Hellwig void nvmet_put_namespace(struct nvmet_ns *ns);
496a07b4970SChristoph Hellwig int nvmet_ns_enable(struct nvmet_ns *ns);
497a07b4970SChristoph Hellwig void nvmet_ns_disable(struct nvmet_ns *ns);
498a07b4970SChristoph Hellwig struct nvmet_ns *nvmet_ns_alloc(struct nvmet_subsys *subsys, u32 nsid);
499a07b4970SChristoph Hellwig void nvmet_ns_free(struct nvmet_ns *ns);
500a07b4970SChristoph Hellwig
50162ac0d32SChristoph Hellwig void nvmet_send_ana_event(struct nvmet_subsys *subsys,
50262ac0d32SChristoph Hellwig struct nvmet_port *port);
50362ac0d32SChristoph Hellwig void nvmet_port_send_ana_event(struct nvmet_port *port);
50462ac0d32SChristoph Hellwig
505e929f06dSChristoph Hellwig int nvmet_register_transport(const struct nvmet_fabrics_ops *ops);
506e929f06dSChristoph Hellwig void nvmet_unregister_transport(const struct nvmet_fabrics_ops *ops);
507a07b4970SChristoph Hellwig
5083aed8673SLogan Gunthorpe void nvmet_port_del_ctrls(struct nvmet_port *port,
5093aed8673SLogan Gunthorpe struct nvmet_subsys *subsys);
5103aed8673SLogan Gunthorpe
511a07b4970SChristoph Hellwig int nvmet_enable_port(struct nvmet_port *port);
512a07b4970SChristoph Hellwig void nvmet_disable_port(struct nvmet_port *port);
513a07b4970SChristoph Hellwig
514a07b4970SChristoph Hellwig void nvmet_referral_enable(struct nvmet_port *parent, struct nvmet_port *port);
515b662a078SJay Sternberg void nvmet_referral_disable(struct nvmet_port *parent, struct nvmet_port *port);
516a07b4970SChristoph Hellwig
517a07b4970SChristoph Hellwig u16 nvmet_copy_to_sgl(struct nvmet_req *req, off_t off, const void *buf,
518a07b4970SChristoph Hellwig size_t len);
519a07b4970SChristoph Hellwig u16 nvmet_copy_from_sgl(struct nvmet_req *req, off_t off, void *buf,
520a07b4970SChristoph Hellwig size_t len);
521c7759fffSChristoph Hellwig u16 nvmet_zero_sgl(struct nvmet_req *req, off_t off, size_t len);
522a07b4970SChristoph Hellwig
523a07b4970SChristoph Hellwig u32 nvmet_get_log_page_len(struct nvme_command *cmd);
524d808b7f7SKeith Busch u64 nvmet_get_log_page_offset(struct nvme_command *cmd);
525a07b4970SChristoph Hellwig
526b662a078SJay Sternberg extern struct list_head *nvmet_ports;
527b662a078SJay Sternberg void nvmet_port_disc_changed(struct nvmet_port *port,
528b662a078SJay Sternberg struct nvmet_subsys *subsys);
529b662a078SJay Sternberg void nvmet_subsys_disc_changed(struct nvmet_subsys *subsys,
530b662a078SJay Sternberg struct nvmet_host *host);
531b662a078SJay Sternberg void nvmet_add_async_event(struct nvmet_ctrl *ctrl, u8 event_type,
532b662a078SJay Sternberg u8 event_info, u8 log_page);
533*71de5fc3SSagi Grimberg bool nvmet_subsys_nsid_exists(struct nvmet_subsys *subsys, u32 nsid);
534b662a078SJay Sternberg
535a07b4970SChristoph Hellwig #define NVMET_QUEUE_SIZE 1024
5363375e29cSJames Smart #define NVMET_NR_QUEUES 128
537a07b4970SChristoph Hellwig #define NVMET_MAX_CMD NVMET_QUEUE_SIZE
538793c7cfcSChristoph Hellwig
539793c7cfcSChristoph Hellwig /*
540793c7cfcSChristoph Hellwig * Nice round number that makes a list of nsids fit into a page.
541793c7cfcSChristoph Hellwig * Should become tunable at some point in the future.
542793c7cfcSChristoph Hellwig */
543793c7cfcSChristoph Hellwig #define NVMET_MAX_NAMESPACES 1024
544793c7cfcSChristoph Hellwig
54572efd25dSChristoph Hellwig /*
54672efd25dSChristoph Hellwig * 0 is not a valid ANA group ID, so we start numbering at 1.
54772efd25dSChristoph Hellwig *
54872efd25dSChristoph Hellwig * ANA Group 1 exists without manual intervention, has namespaces assigned to it
54972efd25dSChristoph Hellwig * by default, and is available in an optimized state through all ports.
55072efd25dSChristoph Hellwig */
55162ac0d32SChristoph Hellwig #define NVMET_MAX_ANAGRPS 128
55272efd25dSChristoph Hellwig #define NVMET_DEFAULT_ANA_GRPID 1
55372efd25dSChristoph Hellwig
554a07b4970SChristoph Hellwig #define NVMET_KAS 10
555f9362ac1SJay Sternberg #define NVMET_DISC_KATO_MS 120000
556a07b4970SChristoph Hellwig
557a07b4970SChristoph Hellwig int __init nvmet_init_configfs(void);
558a07b4970SChristoph Hellwig void __exit nvmet_exit_configfs(void);
559a07b4970SChristoph Hellwig
560a07b4970SChristoph Hellwig int __init nvmet_init_discovery(void);
561a07b4970SChristoph Hellwig void nvmet_exit_discovery(void);
562a07b4970SChristoph Hellwig
563a07b4970SChristoph Hellwig extern struct nvmet_subsys *nvmet_disc_subsys;
564a07b4970SChristoph Hellwig extern struct rw_semaphore nvmet_config_sem;
565a07b4970SChristoph Hellwig
56672efd25dSChristoph Hellwig extern u32 nvmet_ana_group_enabled[NVMET_MAX_ANAGRPS + 1];
56772efd25dSChristoph Hellwig extern u64 nvmet_ana_chgcnt;
56872efd25dSChristoph Hellwig extern struct rw_semaphore nvmet_ana_sem;
56972efd25dSChristoph Hellwig
570253928eeSSagi Grimberg bool nvmet_host_allowed(struct nvmet_subsys *subsys, const char *hostnqn);
571a07b4970SChristoph Hellwig
572d5eff33eSChaitanya Kulkarni int nvmet_bdev_ns_enable(struct nvmet_ns *ns);
573d5eff33eSChaitanya Kulkarni int nvmet_file_ns_enable(struct nvmet_ns *ns);
574d5eff33eSChaitanya Kulkarni void nvmet_bdev_ns_disable(struct nvmet_ns *ns);
575d5eff33eSChaitanya Kulkarni void nvmet_file_ns_disable(struct nvmet_ns *ns);
576dedf0be5SChaitanya Kulkarni u16 nvmet_bdev_flush(struct nvmet_req *req);
577dedf0be5SChaitanya Kulkarni u16 nvmet_file_flush(struct nvmet_req *req);
578dedf0be5SChaitanya Kulkarni void nvmet_ns_changed(struct nvmet_subsys *subsys, u32 nsid);
579e8cd1ff1SAnthony Iliopoulos void nvmet_bdev_ns_revalidate(struct nvmet_ns *ns);
5802caecd62SChaitanya Kulkarni void nvmet_file_ns_revalidate(struct nvmet_ns *ns);
581da783733SChristoph Hellwig bool nvmet_ns_revalidate(struct nvmet_ns *ns);
582aaf2e048SChaitanya Kulkarni u16 blk_to_nvme_status(struct nvmet_req *req, blk_status_t blk_sts);
583aaf2e048SChaitanya Kulkarni
584aaf2e048SChaitanya Kulkarni bool nvmet_bdev_zns_enable(struct nvmet_ns *ns);
585a5a6ab09SDamien Le Moal void nvmet_execute_identify_ctrl_zns(struct nvmet_req *req);
58693263535SChristoph Hellwig void nvmet_execute_identify_ns_zns(struct nvmet_req *req);
587aaf2e048SChaitanya Kulkarni void nvmet_bdev_execute_zone_mgmt_recv(struct nvmet_req *req);
588aaf2e048SChaitanya Kulkarni void nvmet_bdev_execute_zone_mgmt_send(struct nvmet_req *req);
589aaf2e048SChaitanya Kulkarni void nvmet_bdev_execute_zone_append(struct nvmet_req *req);
590d5eff33eSChaitanya Kulkarni
nvmet_rw_data_len(struct nvmet_req * req)59126af180cSIsrael Rukshin static inline u32 nvmet_rw_data_len(struct nvmet_req *req)
592d5eff33eSChaitanya Kulkarni {
593d5eff33eSChaitanya Kulkarni return ((u32)le16_to_cpu(req->cmd->rw.length) + 1) <<
594d5eff33eSChaitanya Kulkarni req->ns->blksize_shift;
595d5eff33eSChaitanya Kulkarni }
596c6aa3542SChaitanya Kulkarni
nvmet_rw_metadata_len(struct nvmet_req * req)597ea52ac1cSIsrael Rukshin static inline u32 nvmet_rw_metadata_len(struct nvmet_req *req)
598ea52ac1cSIsrael Rukshin {
599ea52ac1cSIsrael Rukshin if (!IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY))
600ea52ac1cSIsrael Rukshin return 0;
601ea52ac1cSIsrael Rukshin return ((u32)le16_to_cpu(req->cmd->rw.length) + 1) *
602ea52ac1cSIsrael Rukshin req->ns->metadata_size;
603ea52ac1cSIsrael Rukshin }
604ea52ac1cSIsrael Rukshin
nvmet_dsm_len(struct nvmet_req * req)60559ef0eaaSChristoph Hellwig static inline u32 nvmet_dsm_len(struct nvmet_req *req)
60659ef0eaaSChristoph Hellwig {
60759ef0eaaSChristoph Hellwig return (le32_to_cpu(req->cmd->dsm.nr) + 1) *
60859ef0eaaSChristoph Hellwig sizeof(struct nvme_dsm_range);
60959ef0eaaSChristoph Hellwig }
61059ef0eaaSChristoph Hellwig
nvmet_req_subsys(struct nvmet_req * req)61120c2c3bbSChaitanya Kulkarni static inline struct nvmet_subsys *nvmet_req_subsys(struct nvmet_req *req)
61220c2c3bbSChaitanya Kulkarni {
61320c2c3bbSChaitanya Kulkarni return req->sq->ctrl->subsys;
61420c2c3bbSChaitanya Kulkarni }
61520c2c3bbSChaitanya Kulkarni
nvmet_is_disc_subsys(struct nvmet_subsys * subsys)616a294711eSHannes Reinecke static inline bool nvmet_is_disc_subsys(struct nvmet_subsys *subsys)
617a294711eSHannes Reinecke {
618598e7593SHannes Reinecke return subsys->type != NVME_NQN_NVME;
619a294711eSHannes Reinecke }
620a294711eSHannes Reinecke
621c1fef73fSLogan Gunthorpe #ifdef CONFIG_NVME_TARGET_PASSTHRU
622ba76af67SLogan Gunthorpe void nvmet_passthru_subsys_free(struct nvmet_subsys *subsys);
623ba76af67SLogan Gunthorpe int nvmet_passthru_ctrl_enable(struct nvmet_subsys *subsys);
624ba76af67SLogan Gunthorpe void nvmet_passthru_ctrl_disable(struct nvmet_subsys *subsys);
625c1fef73fSLogan Gunthorpe u16 nvmet_parse_passthru_admin_cmd(struct nvmet_req *req);
626c1fef73fSLogan Gunthorpe u16 nvmet_parse_passthru_io_cmd(struct nvmet_req *req);
nvmet_is_passthru_subsys(struct nvmet_subsys * subsys)627ab7a2737SChristoph Hellwig static inline bool nvmet_is_passthru_subsys(struct nvmet_subsys *subsys)
628c1fef73fSLogan Gunthorpe {
629c1fef73fSLogan Gunthorpe return subsys->passthru_ctrl;
630c1fef73fSLogan Gunthorpe }
631c1fef73fSLogan Gunthorpe #else /* CONFIG_NVME_TARGET_PASSTHRU */
nvmet_passthru_subsys_free(struct nvmet_subsys * subsys)632ba76af67SLogan Gunthorpe static inline void nvmet_passthru_subsys_free(struct nvmet_subsys *subsys)
633ba76af67SLogan Gunthorpe {
634ba76af67SLogan Gunthorpe }
nvmet_passthru_ctrl_disable(struct nvmet_subsys * subsys)635ba76af67SLogan Gunthorpe static inline void nvmet_passthru_ctrl_disable(struct nvmet_subsys *subsys)
636ba76af67SLogan Gunthorpe {
637ba76af67SLogan Gunthorpe }
nvmet_parse_passthru_admin_cmd(struct nvmet_req * req)638c1fef73fSLogan Gunthorpe static inline u16 nvmet_parse_passthru_admin_cmd(struct nvmet_req *req)
639c1fef73fSLogan Gunthorpe {
640c1fef73fSLogan Gunthorpe return 0;
641c1fef73fSLogan Gunthorpe }
nvmet_parse_passthru_io_cmd(struct nvmet_req * req)642c1fef73fSLogan Gunthorpe static inline u16 nvmet_parse_passthru_io_cmd(struct nvmet_req *req)
643c1fef73fSLogan Gunthorpe {
644c1fef73fSLogan Gunthorpe return 0;
645c1fef73fSLogan Gunthorpe }
nvmet_is_passthru_subsys(struct nvmet_subsys * subsys)646ab7a2737SChristoph Hellwig static inline bool nvmet_is_passthru_subsys(struct nvmet_subsys *subsys)
647c1fef73fSLogan Gunthorpe {
648c1fef73fSLogan Gunthorpe return NULL;
649c1fef73fSLogan Gunthorpe }
650c1fef73fSLogan Gunthorpe #endif /* CONFIG_NVME_TARGET_PASSTHRU */
651c1fef73fSLogan Gunthorpe
nvmet_is_passthru_req(struct nvmet_req * req)652ab7a2737SChristoph Hellwig static inline bool nvmet_is_passthru_req(struct nvmet_req *req)
653c1fef73fSLogan Gunthorpe {
654ab7a2737SChristoph Hellwig return nvmet_is_passthru_subsys(nvmet_req_subsys(req));
655c1fef73fSLogan Gunthorpe }
656c1fef73fSLogan Gunthorpe
65777d651a6SAdam Manzanares void nvmet_passthrough_override_cap(struct nvmet_ctrl *ctrl);
65877d651a6SAdam Manzanares
659c6aa3542SChaitanya Kulkarni u16 errno_to_nvme_status(struct nvmet_req *req, int errno);
660d81d57cfSChaitanya Kulkarni u16 nvmet_report_invalid_opcode(struct nvmet_req *req);
6619d05a96eSBart Van Assche
6629d05a96eSBart Van Assche /* Convert a 32-bit number to a 16-bit 0's based number */
to0based(u32 a)6639d05a96eSBart Van Assche static inline __le16 to0based(u32 a)
6649d05a96eSBart Van Assche {
6659d05a96eSBart Van Assche return cpu_to_le16(max(1U, min(1U << 16, a)) - 1);
6669d05a96eSBart Van Assche }
6679d05a96eSBart Van Assche
nvmet_ns_has_pi(struct nvmet_ns * ns)668ea52ac1cSIsrael Rukshin static inline bool nvmet_ns_has_pi(struct nvmet_ns *ns)
669ea52ac1cSIsrael Rukshin {
670ea52ac1cSIsrael Rukshin if (!IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY))
671ea52ac1cSIsrael Rukshin return false;
672ea52ac1cSIsrael Rukshin return ns->pi_type && ns->metadata_size == sizeof(struct t10_pi_tuple);
673ea52ac1cSIsrael Rukshin }
674ea52ac1cSIsrael Rukshin
nvmet_sect_to_lba(struct nvmet_ns * ns,sector_t sect)675193fcf37SChaitanya Kulkarni static inline __le64 nvmet_sect_to_lba(struct nvmet_ns *ns, sector_t sect)
676193fcf37SChaitanya Kulkarni {
677193fcf37SChaitanya Kulkarni return cpu_to_le64(sect >> (ns->blksize_shift - SECTOR_SHIFT));
678193fcf37SChaitanya Kulkarni }
679193fcf37SChaitanya Kulkarni
nvmet_lba_to_sect(struct nvmet_ns * ns,__le64 lba)680193fcf37SChaitanya Kulkarni static inline sector_t nvmet_lba_to_sect(struct nvmet_ns *ns, __le64 lba)
681193fcf37SChaitanya Kulkarni {
682193fcf37SChaitanya Kulkarni return le64_to_cpu(lba) << (ns->blksize_shift - SECTOR_SHIFT);
683193fcf37SChaitanya Kulkarni }
684193fcf37SChaitanya Kulkarni
nvmet_use_inline_bvec(struct nvmet_req * req)685608a9690SChaitanya Kulkarni static inline bool nvmet_use_inline_bvec(struct nvmet_req *req)
686608a9690SChaitanya Kulkarni {
687608a9690SChaitanya Kulkarni return req->transfer_len <= NVMET_MAX_INLINE_DATA_LEN &&
688608a9690SChaitanya Kulkarni req->sg_cnt <= NVMET_MAX_INLINE_BIOVEC;
689608a9690SChaitanya Kulkarni }
690608a9690SChaitanya Kulkarni
nvmet_req_bio_put(struct nvmet_req * req,struct bio * bio)6919a01b58cSChaitanya Kulkarni static inline void nvmet_req_bio_put(struct nvmet_req *req, struct bio *bio)
6929a01b58cSChaitanya Kulkarni {
6939a01b58cSChaitanya Kulkarni if (bio != &req->b.inline_bio)
6949a01b58cSChaitanya Kulkarni bio_put(bio);
6959a01b58cSChaitanya Kulkarni }
6969a01b58cSChaitanya Kulkarni
697db1312ddSHannes Reinecke #ifdef CONFIG_NVME_TARGET_AUTH
698db1312ddSHannes Reinecke void nvmet_execute_auth_send(struct nvmet_req *req);
699db1312ddSHannes Reinecke void nvmet_execute_auth_receive(struct nvmet_req *req);
700db1312ddSHannes Reinecke int nvmet_auth_set_key(struct nvmet_host *host, const char *secret,
701db1312ddSHannes Reinecke bool set_ctrl);
702db1312ddSHannes Reinecke int nvmet_auth_set_host_hash(struct nvmet_host *host, const char *hash);
703db1312ddSHannes Reinecke int nvmet_setup_auth(struct nvmet_ctrl *ctrl);
7041befd944SChristoph Hellwig void nvmet_auth_sq_init(struct nvmet_sq *sq);
705db1312ddSHannes Reinecke void nvmet_destroy_auth(struct nvmet_ctrl *ctrl);
706db1312ddSHannes Reinecke void nvmet_auth_sq_free(struct nvmet_sq *sq);
7077a277c37SHannes Reinecke int nvmet_setup_dhgroup(struct nvmet_ctrl *ctrl, u8 dhgroup_id);
708db1312ddSHannes Reinecke bool nvmet_check_auth_status(struct nvmet_req *req);
709db1312ddSHannes Reinecke int nvmet_auth_host_hash(struct nvmet_req *req, u8 *response,
710db1312ddSHannes Reinecke unsigned int hash_len);
711db1312ddSHannes Reinecke int nvmet_auth_ctrl_hash(struct nvmet_req *req, u8 *response,
712db1312ddSHannes Reinecke unsigned int hash_len);
nvmet_has_auth(struct nvmet_ctrl * ctrl)713db1312ddSHannes Reinecke static inline bool nvmet_has_auth(struct nvmet_ctrl *ctrl)
714db1312ddSHannes Reinecke {
715db1312ddSHannes Reinecke return ctrl->host_key != NULL;
716db1312ddSHannes Reinecke }
7177a277c37SHannes Reinecke int nvmet_auth_ctrl_exponential(struct nvmet_req *req,
7187a277c37SHannes Reinecke u8 *buf, int buf_size);
7197a277c37SHannes Reinecke int nvmet_auth_ctrl_sesskey(struct nvmet_req *req,
7207a277c37SHannes Reinecke u8 *buf, int buf_size);
721db1312ddSHannes Reinecke #else
nvmet_setup_auth(struct nvmet_ctrl * ctrl)722db1312ddSHannes Reinecke static inline int nvmet_setup_auth(struct nvmet_ctrl *ctrl)
723db1312ddSHannes Reinecke {
724db1312ddSHannes Reinecke return 0;
725db1312ddSHannes Reinecke }
nvmet_auth_sq_init(struct nvmet_sq * sq)7261befd944SChristoph Hellwig static inline void nvmet_auth_sq_init(struct nvmet_sq *sq)
7271befd944SChristoph Hellwig {
7281befd944SChristoph Hellwig }
nvmet_destroy_auth(struct nvmet_ctrl * ctrl)729db1312ddSHannes Reinecke static inline void nvmet_destroy_auth(struct nvmet_ctrl *ctrl) {};
nvmet_auth_sq_free(struct nvmet_sq * sq)730db1312ddSHannes Reinecke static inline void nvmet_auth_sq_free(struct nvmet_sq *sq) {};
nvmet_check_auth_status(struct nvmet_req * req)731db1312ddSHannes Reinecke static inline bool nvmet_check_auth_status(struct nvmet_req *req)
732db1312ddSHannes Reinecke {
733db1312ddSHannes Reinecke return true;
734db1312ddSHannes Reinecke }
nvmet_has_auth(struct nvmet_ctrl * ctrl)735db1312ddSHannes Reinecke static inline bool nvmet_has_auth(struct nvmet_ctrl *ctrl)
736db1312ddSHannes Reinecke {
737db1312ddSHannes Reinecke return false;
738db1312ddSHannes Reinecke }
nvmet_dhchap_dhgroup_name(u8 dhgid)739db1312ddSHannes Reinecke static inline const char *nvmet_dhchap_dhgroup_name(u8 dhgid) { return NULL; }
740db1312ddSHannes Reinecke #endif
741db1312ddSHannes Reinecke
742a07b4970SChristoph Hellwig #endif /* _NVMET_H */
743