fc_libfc.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /*
  2. * Copyright(c) 2009 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  16. *
  17. * Maintained at www.Open-FCoE.org
  18. */
  19. #include <linux/kernel.h>
  20. #include <linux/types.h>
  21. #include <linux/scatterlist.h>
  22. #include <linux/crc32.h>
  23. #include <linux/module.h>
  24. #include <scsi/libfc.h>
  25. #include <scsi/fc_encode.h>
  26. #include "fc_libfc.h"
  27. MODULE_AUTHOR("Open-FCoE.org");
  28. MODULE_DESCRIPTION("libfc");
  29. MODULE_LICENSE("GPL v2");
  30. unsigned int fc_debug_logging;
  31. module_param_named(debug_logging, fc_debug_logging, int, S_IRUGO|S_IWUSR);
  32. MODULE_PARM_DESC(debug_logging, "a bit mask of logging levels");
  33. DEFINE_MUTEX(fc_prov_mutex);
  34. static LIST_HEAD(fc_local_ports);
  35. struct blocking_notifier_head fc_lport_notifier_head =
  36. BLOCKING_NOTIFIER_INIT(fc_lport_notifier_head);
  37. EXPORT_SYMBOL(fc_lport_notifier_head);
  38. /*
  39. * Providers which primarily send requests and PRLIs.
  40. */
  41. struct fc4_prov *fc_active_prov[FC_FC4_PROV_SIZE] = {
  42. [0] = &fc_rport_t0_prov,
  43. [FC_TYPE_FCP] = &fc_rport_fcp_init,
  44. };
  45. /*
  46. * Providers which receive requests.
  47. */
  48. struct fc4_prov *fc_passive_prov[FC_FC4_PROV_SIZE] = {
  49. [FC_TYPE_ELS] = &fc_lport_els_prov,
  50. };
  51. /**
  52. * libfc_init() - Initialize libfc.ko
  53. */
  54. static int __init libfc_init(void)
  55. {
  56. int rc = 0;
  57. rc = fc_setup_fcp();
  58. if (rc)
  59. return rc;
  60. rc = fc_setup_exch_mgr();
  61. if (rc)
  62. goto destroy_pkt_cache;
  63. rc = fc_setup_rport();
  64. if (rc)
  65. goto destroy_em;
  66. return rc;
  67. destroy_em:
  68. fc_destroy_exch_mgr();
  69. destroy_pkt_cache:
  70. fc_destroy_fcp();
  71. return rc;
  72. }
  73. module_init(libfc_init);
  74. /**
  75. * libfc_exit() - Tear down libfc.ko
  76. */
  77. static void __exit libfc_exit(void)
  78. {
  79. fc_destroy_fcp();
  80. fc_destroy_exch_mgr();
  81. fc_destroy_rport();
  82. }
  83. module_exit(libfc_exit);
  84. /**
  85. * fc_copy_buffer_to_sglist() - This routine copies the data of a buffer
  86. * into a scatter-gather list (SG list).
  87. *
  88. * @buf: pointer to the data buffer.
  89. * @len: the byte-length of the data buffer.
  90. * @sg: pointer to the pointer of the SG list.
  91. * @nents: pointer to the remaining number of entries in the SG list.
  92. * @offset: pointer to the current offset in the SG list.
  93. * @crc: pointer to the 32-bit crc value.
  94. * If crc is NULL, CRC is not calculated.
  95. */
  96. u32 fc_copy_buffer_to_sglist(void *buf, size_t len,
  97. struct scatterlist *sg,
  98. u32 *nents, size_t *offset,
  99. u32 *crc)
  100. {
  101. size_t remaining = len;
  102. u32 copy_len = 0;
  103. while (remaining > 0 && sg) {
  104. size_t off, sg_bytes;
  105. void *page_addr;
  106. if (*offset >= sg->length) {
  107. /*
  108. * Check for end and drop resources
  109. * from the last iteration.
  110. */
  111. if (!(*nents))
  112. break;
  113. --(*nents);
  114. *offset -= sg->length;
  115. sg = sg_next(sg);
  116. continue;
  117. }
  118. sg_bytes = min(remaining, sg->length - *offset);
  119. /*
  120. * The scatterlist item may be bigger than PAGE_SIZE,
  121. * but we are limited to mapping PAGE_SIZE at a time.
  122. */
  123. off = *offset + sg->offset;
  124. sg_bytes = min(sg_bytes,
  125. (size_t)(PAGE_SIZE - (off & ~PAGE_MASK)));
  126. page_addr = kmap_atomic(sg_page(sg) + (off >> PAGE_SHIFT));
  127. if (crc)
  128. *crc = crc32(*crc, buf, sg_bytes);
  129. memcpy((char *)page_addr + (off & ~PAGE_MASK), buf, sg_bytes);
  130. kunmap_atomic(page_addr);
  131. buf += sg_bytes;
  132. *offset += sg_bytes;
  133. remaining -= sg_bytes;
  134. copy_len += sg_bytes;
  135. }
  136. return copy_len;
  137. }
  138. /**
  139. * fc_fill_hdr() - fill FC header fields based on request
  140. * @fp: reply frame containing header to be filled in
  141. * @in_fp: request frame containing header to use in filling in reply
  142. * @r_ctl: R_CTL value for header
  143. * @f_ctl: F_CTL value for header, with 0 pad
  144. * @seq_cnt: sequence count for the header, ignored if frame has a sequence
  145. * @parm_offset: parameter / offset value
  146. */
  147. void fc_fill_hdr(struct fc_frame *fp, const struct fc_frame *in_fp,
  148. enum fc_rctl r_ctl, u32 f_ctl, u16 seq_cnt, u32 parm_offset)
  149. {
  150. struct fc_frame_header *fh;
  151. struct fc_frame_header *in_fh;
  152. struct fc_seq *sp;
  153. u32 fill;
  154. fh = __fc_frame_header_get(fp);
  155. in_fh = __fc_frame_header_get(in_fp);
  156. if (f_ctl & FC_FC_END_SEQ) {
  157. fill = -fr_len(fp) & 3;
  158. if (fill) {
  159. /* TODO, this may be a problem with fragmented skb */
  160. memset(skb_put(fp_skb(fp), fill), 0, fill);
  161. f_ctl |= fill;
  162. }
  163. fr_eof(fp) = FC_EOF_T;
  164. } else {
  165. WARN_ON(fr_len(fp) % 4 != 0); /* no pad to non last frame */
  166. fr_eof(fp) = FC_EOF_N;
  167. }
  168. fh->fh_r_ctl = r_ctl;
  169. memcpy(fh->fh_d_id, in_fh->fh_s_id, sizeof(fh->fh_d_id));
  170. memcpy(fh->fh_s_id, in_fh->fh_d_id, sizeof(fh->fh_s_id));
  171. fh->fh_type = in_fh->fh_type;
  172. hton24(fh->fh_f_ctl, f_ctl);
  173. fh->fh_ox_id = in_fh->fh_ox_id;
  174. fh->fh_rx_id = in_fh->fh_rx_id;
  175. fh->fh_cs_ctl = 0;
  176. fh->fh_df_ctl = 0;
  177. fh->fh_parm_offset = htonl(parm_offset);
  178. sp = fr_seq(in_fp);
  179. if (sp) {
  180. fr_seq(fp) = sp;
  181. fh->fh_seq_id = sp->id;
  182. seq_cnt = sp->cnt;
  183. } else {
  184. fh->fh_seq_id = 0;
  185. }
  186. fh->fh_seq_cnt = ntohs(seq_cnt);
  187. fr_sof(fp) = seq_cnt ? FC_SOF_N3 : FC_SOF_I3;
  188. fr_encaps(fp) = fr_encaps(in_fp);
  189. }
  190. EXPORT_SYMBOL(fc_fill_hdr);
  191. /**
  192. * fc_fill_reply_hdr() - fill FC reply header fields based on request
  193. * @fp: reply frame containing header to be filled in
  194. * @in_fp: request frame containing header to use in filling in reply
  195. * @r_ctl: R_CTL value for reply
  196. * @parm_offset: parameter / offset value
  197. */
  198. void fc_fill_reply_hdr(struct fc_frame *fp, const struct fc_frame *in_fp,
  199. enum fc_rctl r_ctl, u32 parm_offset)
  200. {
  201. struct fc_seq *sp;
  202. sp = fr_seq(in_fp);
  203. if (sp)
  204. fr_seq(fp) = fr_dev(in_fp)->tt.seq_start_next(sp);
  205. fc_fill_hdr(fp, in_fp, r_ctl, FC_FCTL_RESP, 0, parm_offset);
  206. }
  207. EXPORT_SYMBOL(fc_fill_reply_hdr);
  208. /**
  209. * fc_fc4_conf_lport_params() - Modify "service_params" of specified lport
  210. * if there is service provider (target provider) registered with libfc
  211. * for specified "fc_ft_type"
  212. * @lport: Local port which service_params needs to be modified
  213. * @type: FC-4 type, such as FC_TYPE_FCP
  214. */
  215. void fc_fc4_conf_lport_params(struct fc_lport *lport, enum fc_fh_type type)
  216. {
  217. struct fc4_prov *prov_entry;
  218. BUG_ON(type >= FC_FC4_PROV_SIZE);
  219. BUG_ON(!lport);
  220. prov_entry = fc_passive_prov[type];
  221. if (type == FC_TYPE_FCP) {
  222. if (prov_entry && prov_entry->recv)
  223. lport->service_params |= FCP_SPPF_TARG_FCN;
  224. }
  225. }
  226. void fc_lport_iterate(void (*notify)(struct fc_lport *, void *), void *arg)
  227. {
  228. struct fc_lport *lport;
  229. mutex_lock(&fc_prov_mutex);
  230. list_for_each_entry(lport, &fc_local_ports, lport_list)
  231. notify(lport, arg);
  232. mutex_unlock(&fc_prov_mutex);
  233. }
  234. EXPORT_SYMBOL(fc_lport_iterate);
  235. /**
  236. * fc_fc4_register_provider() - register FC-4 upper-level provider.
  237. * @type: FC-4 type, such as FC_TYPE_FCP
  238. * @prov: structure describing provider including ops vector.
  239. *
  240. * Returns 0 on success, negative error otherwise.
  241. */
  242. int fc_fc4_register_provider(enum fc_fh_type type, struct fc4_prov *prov)
  243. {
  244. struct fc4_prov **prov_entry;
  245. int ret = 0;
  246. if (type >= FC_FC4_PROV_SIZE)
  247. return -EINVAL;
  248. mutex_lock(&fc_prov_mutex);
  249. prov_entry = (prov->recv ? fc_passive_prov : fc_active_prov) + type;
  250. if (*prov_entry)
  251. ret = -EBUSY;
  252. else
  253. *prov_entry = prov;
  254. mutex_unlock(&fc_prov_mutex);
  255. return ret;
  256. }
  257. EXPORT_SYMBOL(fc_fc4_register_provider);
  258. /**
  259. * fc_fc4_deregister_provider() - deregister FC-4 upper-level provider.
  260. * @type: FC-4 type, such as FC_TYPE_FCP
  261. * @prov: structure describing provider including ops vector.
  262. */
  263. void fc_fc4_deregister_provider(enum fc_fh_type type, struct fc4_prov *prov)
  264. {
  265. BUG_ON(type >= FC_FC4_PROV_SIZE);
  266. mutex_lock(&fc_prov_mutex);
  267. if (prov->recv)
  268. RCU_INIT_POINTER(fc_passive_prov[type], NULL);
  269. else
  270. RCU_INIT_POINTER(fc_active_prov[type], NULL);
  271. mutex_unlock(&fc_prov_mutex);
  272. synchronize_rcu();
  273. }
  274. EXPORT_SYMBOL(fc_fc4_deregister_provider);
  275. /**
  276. * fc_fc4_add_lport() - add new local port to list and run notifiers.
  277. * @lport: The new local port.
  278. */
  279. void fc_fc4_add_lport(struct fc_lport *lport)
  280. {
  281. mutex_lock(&fc_prov_mutex);
  282. list_add_tail(&lport->lport_list, &fc_local_ports);
  283. blocking_notifier_call_chain(&fc_lport_notifier_head,
  284. FC_LPORT_EV_ADD, lport);
  285. mutex_unlock(&fc_prov_mutex);
  286. }
  287. /**
  288. * fc_fc4_del_lport() - remove local port from list and run notifiers.
  289. * @lport: The new local port.
  290. */
  291. void fc_fc4_del_lport(struct fc_lport *lport)
  292. {
  293. mutex_lock(&fc_prov_mutex);
  294. list_del(&lport->lport_list);
  295. blocking_notifier_call_chain(&fc_lport_notifier_head,
  296. FC_LPORT_EV_DEL, lport);
  297. mutex_unlock(&fc_prov_mutex);
  298. }