PageRenderTime 54ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/include/scsi/libiscsi.h

https://gitlab.com/webhaikal/SenseiOneplus3
C Header | 497 lines | 342 code | 55 blank | 100 comment | 1 complexity | 4f6faf9bbd088b130aa59d7144a19785 MD5 | raw file
  1. /*
  2. * iSCSI lib definitions
  3. *
  4. * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
  5. * Copyright (C) 2004 - 2006 Mike Christie
  6. * Copyright (C) 2004 - 2005 Dmitry Yusupov
  7. * Copyright (C) 2004 - 2005 Alex Aizman
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. */
  23. #ifndef LIBISCSI_H
  24. #define LIBISCSI_H
  25. #include <linux/types.h>
  26. #include <linux/wait.h>
  27. #include <linux/mutex.h>
  28. #include <linux/timer.h>
  29. #include <linux/workqueue.h>
  30. #include <linux/kfifo.h>
  31. #include <scsi/iscsi_proto.h>
  32. #include <scsi/iscsi_if.h>
  33. #include <scsi/scsi_transport_iscsi.h>
  34. struct scsi_transport_template;
  35. struct scsi_host_template;
  36. struct scsi_device;
  37. struct Scsi_Host;
  38. struct scsi_target;
  39. struct scsi_cmnd;
  40. struct socket;
  41. struct iscsi_transport;
  42. struct iscsi_cls_session;
  43. struct iscsi_cls_conn;
  44. struct iscsi_session;
  45. struct iscsi_nopin;
  46. struct device;
  47. #define ISCSI_DEF_XMIT_CMDS_MAX 128 /* must be power of 2 */
  48. #define ISCSI_MGMT_CMDS_MAX 15
  49. #define ISCSI_DEF_CMD_PER_LUN 32
  50. /* Task Mgmt states */
  51. enum {
  52. TMF_INITIAL,
  53. TMF_QUEUED,
  54. TMF_SUCCESS,
  55. TMF_FAILED,
  56. TMF_TIMEDOUT,
  57. TMF_NOT_FOUND,
  58. };
  59. #define ISID_SIZE 6
  60. /* Connection suspend "bit" */
  61. #define ISCSI_SUSPEND_BIT 1
  62. #define ISCSI_ITT_MASK 0x1fff
  63. #define ISCSI_TOTAL_CMDS_MAX 4096
  64. /* this must be a power of two greater than ISCSI_MGMT_CMDS_MAX */
  65. #define ISCSI_TOTAL_CMDS_MIN 16
  66. #define ISCSI_AGE_SHIFT 28
  67. #define ISCSI_AGE_MASK 0xf
  68. #define ISCSI_ADDRESS_BUF_LEN 64
  69. enum {
  70. /* this is the maximum possible storage for AHSs */
  71. ISCSI_MAX_AHS_SIZE = sizeof(struct iscsi_ecdb_ahdr) +
  72. sizeof(struct iscsi_rlength_ahdr),
  73. ISCSI_DIGEST_SIZE = sizeof(__u32),
  74. };
  75. enum {
  76. ISCSI_TASK_FREE,
  77. ISCSI_TASK_COMPLETED,
  78. ISCSI_TASK_PENDING,
  79. ISCSI_TASK_RUNNING,
  80. ISCSI_TASK_ABRT_TMF, /* aborted due to TMF */
  81. ISCSI_TASK_ABRT_SESS_RECOV, /* aborted due to session recovery */
  82. ISCSI_TASK_REQUEUE_SCSIQ, /* qcmd requeueing to scsi-ml */
  83. };
  84. struct iscsi_r2t_info {
  85. __be32 ttt; /* copied from R2T */
  86. __be32 exp_statsn; /* copied from R2T */
  87. uint32_t data_length; /* copied from R2T */
  88. uint32_t data_offset; /* copied from R2T */
  89. int data_count; /* DATA-Out payload progress */
  90. int datasn;
  91. /* LLDs should set/update these values */
  92. int sent; /* R2T sequence progress */
  93. };
  94. struct iscsi_task {
  95. /*
  96. * Because LLDs allocate their hdr differently, this is a pointer
  97. * and length to that storage. It must be setup at session
  98. * creation time.
  99. */
  100. struct iscsi_hdr *hdr;
  101. unsigned short hdr_max;
  102. unsigned short hdr_len; /* accumulated size of hdr used */
  103. /* copied values in case we need to send tmfs */
  104. itt_t hdr_itt;
  105. __be32 cmdsn;
  106. struct scsi_lun lun;
  107. int itt; /* this ITT */
  108. unsigned imm_count; /* imm-data (bytes) */
  109. /* offset in unsolicited stream (bytes); */
  110. struct iscsi_r2t_info unsol_r2t;
  111. char *data; /* mgmt payload */
  112. unsigned data_count;
  113. struct scsi_cmnd *sc; /* associated SCSI cmd*/
  114. struct iscsi_conn *conn; /* used connection */
  115. /* data processing tracking */
  116. unsigned long last_xfer;
  117. unsigned long last_timeout;
  118. bool have_checked_conn;
  119. /* T10 protection information */
  120. bool protected;
  121. /* state set/tested under session->lock */
  122. int state;
  123. atomic_t refcount;
  124. struct list_head running; /* running cmd list */
  125. void *dd_data; /* driver/transport data */
  126. };
  127. static inline int iscsi_task_has_unsol_data(struct iscsi_task *task)
  128. {
  129. return task->unsol_r2t.data_length > task->unsol_r2t.sent;
  130. }
  131. static inline void* iscsi_next_hdr(struct iscsi_task *task)
  132. {
  133. return (void*)task->hdr + task->hdr_len;
  134. }
  135. /* Connection's states */
  136. enum {
  137. ISCSI_CONN_INITIAL_STAGE,
  138. ISCSI_CONN_STARTED,
  139. ISCSI_CONN_STOPPED,
  140. ISCSI_CONN_CLEANUP_WAIT,
  141. };
  142. struct iscsi_conn {
  143. struct iscsi_cls_conn *cls_conn; /* ptr to class connection */
  144. void *dd_data; /* iscsi_transport data */
  145. struct iscsi_session *session; /* parent session */
  146. /*
  147. * conn_stop() flag: stop to recover, stop to terminate
  148. */
  149. int stop_stage;
  150. struct timer_list transport_timer;
  151. unsigned long last_recv;
  152. unsigned long last_ping;
  153. int ping_timeout;
  154. int recv_timeout;
  155. struct iscsi_task *ping_task;
  156. /* iSCSI connection-wide sequencing */
  157. uint32_t exp_statsn;
  158. uint32_t statsn;
  159. /* control data */
  160. int id; /* CID */
  161. int c_stage; /* connection state */
  162. /*
  163. * Preallocated buffer for pdus that have data but do not
  164. * originate from scsi-ml. We never have two pdus using the
  165. * buffer at the same time. It is only allocated to
  166. * the default max recv size because the pdus we support
  167. * should always fit in this buffer
  168. */
  169. char *data;
  170. struct iscsi_task *login_task; /* mtask used for login/text */
  171. struct iscsi_task *task; /* xmit task in progress */
  172. /* xmit */
  173. struct list_head mgmtqueue; /* mgmt (control) xmit queue */
  174. struct list_head cmdqueue; /* data-path cmd queue */
  175. struct list_head requeue; /* tasks needing another run */
  176. struct work_struct xmitwork; /* per-conn. xmit workqueue */
  177. unsigned long suspend_tx; /* suspend Tx */
  178. unsigned long suspend_rx; /* suspend Rx */
  179. /* abort */
  180. wait_queue_head_t ehwait; /* used in eh_abort() */
  181. struct iscsi_tm tmhdr;
  182. struct timer_list tmf_timer;
  183. int tmf_state; /* see TMF_INITIAL, etc.*/
  184. /* negotiated params */
  185. unsigned max_recv_dlength; /* initiator_max_recv_dsl*/
  186. unsigned max_xmit_dlength; /* target_max_recv_dsl */
  187. int hdrdgst_en;
  188. int datadgst_en;
  189. int ifmarker_en;
  190. int ofmarker_en;
  191. /* values userspace uses to id a conn */
  192. int persistent_port;
  193. char *persistent_address;
  194. unsigned max_segment_size;
  195. unsigned tcp_xmit_wsf;
  196. unsigned tcp_recv_wsf;
  197. uint16_t keepalive_tmo;
  198. uint16_t local_port;
  199. uint8_t tcp_timestamp_stat;
  200. uint8_t tcp_nagle_disable;
  201. uint8_t tcp_wsf_disable;
  202. uint8_t tcp_timer_scale;
  203. uint8_t tcp_timestamp_en;
  204. uint8_t fragment_disable;
  205. uint8_t ipv4_tos;
  206. uint8_t ipv6_traffic_class;
  207. uint8_t ipv6_flow_label;
  208. uint8_t is_fw_assigned_ipv6;
  209. char *local_ipaddr;
  210. /* MIB-statistics */
  211. uint64_t txdata_octets;
  212. uint64_t rxdata_octets;
  213. uint32_t scsicmd_pdus_cnt;
  214. uint32_t dataout_pdus_cnt;
  215. uint32_t scsirsp_pdus_cnt;
  216. uint32_t datain_pdus_cnt;
  217. uint32_t r2t_pdus_cnt;
  218. uint32_t tmfcmd_pdus_cnt;
  219. int32_t tmfrsp_pdus_cnt;
  220. /* custom statistics */
  221. uint32_t eh_abort_cnt;
  222. uint32_t fmr_unalign_cnt;
  223. };
  224. struct iscsi_pool {
  225. struct kfifo queue; /* FIFO Queue */
  226. void **pool; /* Pool of elements */
  227. int max; /* Max number of elements */
  228. };
  229. /* Session's states */
  230. enum {
  231. ISCSI_STATE_FREE = 1,
  232. ISCSI_STATE_LOGGED_IN,
  233. ISCSI_STATE_FAILED,
  234. ISCSI_STATE_TERMINATE,
  235. ISCSI_STATE_IN_RECOVERY,
  236. ISCSI_STATE_RECOVERY_FAILED,
  237. ISCSI_STATE_LOGGING_OUT,
  238. };
  239. struct iscsi_session {
  240. struct iscsi_cls_session *cls_session;
  241. /*
  242. * Syncs up the scsi eh thread with the iscsi eh thread when sending
  243. * task management functions. This must be taken before the session
  244. * and recv lock.
  245. */
  246. struct mutex eh_mutex;
  247. /* iSCSI session-wide sequencing */
  248. uint32_t cmdsn;
  249. uint32_t exp_cmdsn;
  250. uint32_t max_cmdsn;
  251. /* This tracks the reqs queued into the initiator */
  252. uint32_t queued_cmdsn;
  253. /* configuration */
  254. int abort_timeout;
  255. int lu_reset_timeout;
  256. int tgt_reset_timeout;
  257. int initial_r2t_en;
  258. unsigned short max_r2t;
  259. int imm_data_en;
  260. unsigned first_burst;
  261. unsigned max_burst;
  262. int time2wait;
  263. int time2retain;
  264. int pdu_inorder_en;
  265. int dataseq_inorder_en;
  266. int erl;
  267. int fast_abort;
  268. int tpgt;
  269. char *username;
  270. char *username_in;
  271. char *password;
  272. char *password_in;
  273. char *targetname;
  274. char *targetalias;
  275. char *ifacename;
  276. char *initiatorname;
  277. char *boot_root;
  278. char *boot_nic;
  279. char *boot_target;
  280. char *portal_type;
  281. char *discovery_parent_type;
  282. uint16_t discovery_parent_idx;
  283. uint16_t def_taskmgmt_tmo;
  284. uint16_t tsid;
  285. uint8_t auto_snd_tgt_disable;
  286. uint8_t discovery_sess;
  287. uint8_t chap_auth_en;
  288. uint8_t discovery_logout_en;
  289. uint8_t bidi_chap_en;
  290. uint8_t discovery_auth_optional;
  291. uint8_t isid[ISID_SIZE];
  292. /* control data */
  293. struct iscsi_transport *tt;
  294. struct Scsi_Host *host;
  295. struct iscsi_conn *leadconn; /* leading connection */
  296. /* Between the forward and the backward locks exists a strict locking
  297. * hierarchy. The mutual exclusion zone protected by the forward lock
  298. * can enclose the mutual exclusion zone protected by the backward lock
  299. * but not vice versa.
  300. */
  301. spinlock_t frwd_lock; /* protects session state, *
  302. * cmdsn, queued_cmdsn *
  303. * session resources: *
  304. * - cmdpool kfifo_out , *
  305. * - mgmtpool, */
  306. spinlock_t back_lock; /* protects cmdsn_exp *
  307. * cmdsn_max, *
  308. * cmdpool kfifo_in */
  309. int state; /* session state */
  310. int age; /* counts session re-opens */
  311. int scsi_cmds_max; /* max scsi commands */
  312. int cmds_max; /* size of cmds array */
  313. struct iscsi_task **cmds; /* Original Cmds arr */
  314. struct iscsi_pool cmdpool; /* PDU's pool */
  315. void *dd_data; /* LLD private data */
  316. };
  317. enum {
  318. ISCSI_HOST_SETUP,
  319. ISCSI_HOST_REMOVED,
  320. };
  321. struct iscsi_host {
  322. char *initiatorname;
  323. /* hw address or netdev iscsi connection is bound to */
  324. char *hwaddress;
  325. char *netdev;
  326. wait_queue_head_t session_removal_wq;
  327. /* protects sessions and state */
  328. spinlock_t lock;
  329. int num_sessions;
  330. int state;
  331. struct workqueue_struct *workq;
  332. char workq_name[20];
  333. };
  334. /*
  335. * scsi host template
  336. */
  337. extern int iscsi_change_queue_depth(struct scsi_device *sdev, int depth,
  338. int reason);
  339. extern int iscsi_eh_abort(struct scsi_cmnd *sc);
  340. extern int iscsi_eh_recover_target(struct scsi_cmnd *sc);
  341. extern int iscsi_eh_session_reset(struct scsi_cmnd *sc);
  342. extern int iscsi_eh_device_reset(struct scsi_cmnd *sc);
  343. extern int iscsi_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *sc);
  344. /*
  345. * iSCSI host helpers.
  346. */
  347. #define iscsi_host_priv(_shost) \
  348. (shost_priv(_shost) + sizeof(struct iscsi_host))
  349. extern int iscsi_host_set_param(struct Scsi_Host *shost,
  350. enum iscsi_host_param param, char *buf,
  351. int buflen);
  352. extern int iscsi_host_get_param(struct Scsi_Host *shost,
  353. enum iscsi_host_param param, char *buf);
  354. extern int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev);
  355. extern struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht,
  356. int dd_data_size,
  357. bool xmit_can_sleep);
  358. extern void iscsi_host_remove(struct Scsi_Host *shost);
  359. extern void iscsi_host_free(struct Scsi_Host *shost);
  360. extern int iscsi_target_alloc(struct scsi_target *starget);
  361. /*
  362. * session management
  363. */
  364. extern struct iscsi_cls_session *
  365. iscsi_session_setup(struct iscsi_transport *, struct Scsi_Host *shost,
  366. uint16_t, int, int, uint32_t, unsigned int);
  367. extern void iscsi_session_teardown(struct iscsi_cls_session *);
  368. extern void iscsi_session_recovery_timedout(struct iscsi_cls_session *);
  369. extern int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
  370. enum iscsi_param param, char *buf, int buflen);
  371. extern int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
  372. enum iscsi_param param, char *buf);
  373. #define iscsi_session_printk(prefix, _sess, fmt, a...) \
  374. iscsi_cls_session_printk(prefix, _sess->cls_session, fmt, ##a)
  375. /*
  376. * connection management
  377. */
  378. extern struct iscsi_cls_conn *iscsi_conn_setup(struct iscsi_cls_session *,
  379. int, uint32_t);
  380. extern void iscsi_conn_teardown(struct iscsi_cls_conn *);
  381. extern int iscsi_conn_start(struct iscsi_cls_conn *);
  382. extern void iscsi_conn_stop(struct iscsi_cls_conn *, int);
  383. extern int iscsi_conn_bind(struct iscsi_cls_session *, struct iscsi_cls_conn *,
  384. int);
  385. extern void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err);
  386. extern void iscsi_session_failure(struct iscsi_session *session,
  387. enum iscsi_err err);
  388. extern int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
  389. enum iscsi_param param, char *buf);
  390. extern int iscsi_conn_get_addr_param(struct sockaddr_storage *addr,
  391. enum iscsi_param param, char *buf);
  392. extern void iscsi_suspend_tx(struct iscsi_conn *conn);
  393. extern void iscsi_suspend_queue(struct iscsi_conn *conn);
  394. extern void iscsi_conn_queue_work(struct iscsi_conn *conn);
  395. #define iscsi_conn_printk(prefix, _c, fmt, a...) \
  396. iscsi_cls_conn_printk(prefix, ((struct iscsi_conn *)_c)->cls_conn, \
  397. fmt, ##a)
  398. /*
  399. * pdu and task processing
  400. */
  401. extern void iscsi_update_cmdsn(struct iscsi_session *, struct iscsi_nopin *);
  402. extern void iscsi_prep_data_out_pdu(struct iscsi_task *task,
  403. struct iscsi_r2t_info *r2t,
  404. struct iscsi_data *hdr);
  405. extern int iscsi_conn_send_pdu(struct iscsi_cls_conn *, struct iscsi_hdr *,
  406. char *, uint32_t);
  407. extern int iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *,
  408. char *, int);
  409. extern int __iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *,
  410. char *, int);
  411. extern int iscsi_verify_itt(struct iscsi_conn *, itt_t);
  412. extern struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *, itt_t);
  413. extern struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *, itt_t);
  414. extern void iscsi_requeue_task(struct iscsi_task *task);
  415. extern void iscsi_put_task(struct iscsi_task *task);
  416. extern void __iscsi_put_task(struct iscsi_task *task);
  417. extern void __iscsi_get_task(struct iscsi_task *task);
  418. extern void iscsi_complete_scsi_task(struct iscsi_task *task,
  419. uint32_t exp_cmdsn, uint32_t max_cmdsn);
  420. /*
  421. * generic helpers
  422. */
  423. extern void iscsi_pool_free(struct iscsi_pool *);
  424. extern int iscsi_pool_init(struct iscsi_pool *, int, void ***, int);
  425. extern int iscsi_switch_str_param(char **, char *);
  426. /*
  427. * inline functions to deal with padding.
  428. */
  429. static inline unsigned int
  430. iscsi_padded(unsigned int len)
  431. {
  432. return (len + ISCSI_PAD_LEN - 1) & ~(ISCSI_PAD_LEN - 1);
  433. }
  434. static inline unsigned int
  435. iscsi_padding(unsigned int len)
  436. {
  437. len &= (ISCSI_PAD_LEN - 1);
  438. if (len)
  439. len = ISCSI_PAD_LEN - len;
  440. return len;
  441. }
  442. #endif