fc_libfc.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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 <scsi/libfc.h>
  24. #include <scsi/fc_encode.h>
  25. #include "fc_libfc.h"
  26. MODULE_AUTHOR("Open-FCoE.org");
  27. MODULE_DESCRIPTION("libfc");
  28. MODULE_LICENSE("GPL v2");
  29. unsigned int fc_debug_logging;
  30. module_param_named(debug_logging, fc_debug_logging, int, S_IRUGO|S_IWUSR);
  31. MODULE_PARM_DESC(debug_logging, "a bit mask of logging levels");
  32. DEFINE_MUTEX(fc_prov_mutex);
  33. static LIST_HEAD(fc_local_ports);
  34. struct blocking_notifier_head fc_lport_notifier_head =
  35. BLOCKING_NOTIFIER_INIT(fc_lport_notifier_head);
  36. EXPORT_SYMBOL(fc_lport_notifier_head);
  37. /*
  38. * Providers which primarily send requests and PRLIs.
  39. */
  40. struct fc4_prov *fc_active_prov[FC_FC4_PROV_SIZE] = {
  41. [0] = &fc_rport_t0_prov,
  42. [FC_TYPE_FCP] = &fc_rport_fcp_init,
  43. };
  44. /*
  45. * Providers which receive requests.
  46. */
  47. struct fc4_prov *fc_passive_prov[FC_FC4_PROV_SIZE] = {
  48. [FC_TYPE_ELS] = &fc_lport_els_prov,
  49. };
  50. /**
  51. * libfc_init() - Initialize libfc.ko
  52. */
  53. static int __init libfc_init(void)
  54. {
  55. int rc = 0;
  56. rc = fc_setup_fcp();
  57. if (rc)
  58. return rc;
  59. rc = fc_setup_exch_mgr();
  60. if (rc)
  61. goto destroy_pkt_cache;
  62. rc = fc_setup_rport();
  63. if (rc)
  64. goto destroy_em;
  65. return rc;
  66. destroy_em:
  67. fc_destroy_exch_mgr();
  68. destroy_pkt_cache:
  69. fc_destroy_fcp();
  70. return rc;
  71. }
  72. module_init(libfc_init);
  73. /**
  74. * libfc_exit() - Tear down libfc.ko
  75. */
  76. static void __exit libfc_exit(void)
  77. {
  78. fc_destroy_fcp();
  79. fc_destroy_exch_mgr();
  80. fc_destroy_rport();
  81. }
  82. module_exit(libfc_exit);
  83. /**
  84. * fc_copy_buffer_to_sglist() - This routine copies the data of a buffer
  85. * into a scatter-gather list (SG list).
  86. *
  87. * @buf: pointer to the data buffer.
  88. * @len: the byte-length of the data buffer.
  89. * @sg: pointer to the pointer of the SG list.
  90. * @nents: pointer to the remaining number of entries in the SG list.
  91. * @offset: pointer to the current offset in the SG list.
  92. * @km_type: dedicated page table slot type for kmap_atomic.
  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. enum km_type km_type, 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. km_type);
  128. if (crc)
  129. *crc = crc32(*crc, buf, sg_bytes);
  130. memcpy((char *)page_addr + (off & ~PAGE_MASK), buf, sg_bytes);
  131. kunmap_atomic(page_addr, km_type);
  132. buf += sg_bytes;
  133. *offset += sg_bytes;
  134. remaining -= sg_bytes;
  135. copy_len += sg_bytes;
  136. }
  137. return copy_len;
  138. }
  139. /**
  140. * fc_fill_hdr() - fill FC header fields based on request
  141. * @fp: reply frame containing header to be filled in
  142. * @in_fp: request frame containing header to use in filling in reply
  143. * @r_ctl: R_CTL value for header
  144. * @f_ctl: F_CTL value for header, with 0 pad
  145. * @seq_cnt: sequence count for the header, ignored if frame has a sequence
  146. * @parm_offset: parameter / offset value
  147. */
  148. void fc_fill_hdr(struct fc_frame *fp, const struct fc_frame *in_fp,
  149. enum fc_rctl r_ctl, u32 f_ctl, u16 seq_cnt, u32 parm_offset)
  150. {
  151. struct fc_frame_header *fh;
  152. struct fc_frame_header *in_fh;
  153. struct fc_seq *sp;
  154. u32 fill;
  155. fh = __fc_frame_header_get(fp);
  156. in_fh = __fc_frame_header_get(in_fp);
  157. if (f_ctl & FC_FC_END_SEQ) {
  158. fill = -fr_len(fp) & 3;
  159. if (fill) {
  160. /* TODO, this may be a problem with fragmented skb */
  161. memset(skb_put(fp_skb(fp), fill), 0, fill);
  162. f_ctl |= fill;
  163. }
  164. fr_eof(fp) = FC_EOF_T;
  165. } else {
  166. WARN_ON(fr_len(fp) % 4 != 0); /* no pad to non last frame */
  167. fr_eof(fp) = FC_EOF_N;
  168. }
  169. fh->fh_r_ctl = r_ctl;
  170. memcpy(fh->fh_d_id, in_fh->fh_s_id, sizeof(fh->fh_d_id));
  171. memcpy(fh->fh_s_id, in_fh->fh_d_id, sizeof(fh->fh_s_id));
  172. fh->fh_type = in_fh->fh_type;
  173. hton24(fh->fh_f_ctl, f_ctl);
  174. fh->fh_ox_id = in_fh->fh_ox_id;
  175. fh->fh_rx_id = in_fh->fh_rx_id;
  176. fh->fh_cs_ctl = 0;
  177. fh->fh_df_ctl = 0;
  178. fh->fh_parm_offset = htonl(parm_offset);
  179. sp = fr_seq(in_fp);
  180. if (sp) {
  181. fr_seq(fp) = sp;
  182. fh->fh_seq_id = sp->id;
  183. seq_cnt = sp->cnt;
  184. } else {
  185. fh->fh_seq_id = 0;
  186. }
  187. fh->fh_seq_cnt = ntohs(seq_cnt);
  188. fr_sof(fp) = seq_cnt ? FC_SOF_N3 : FC_SOF_I3;
  189. fr_encaps(fp) = fr_encaps(in_fp);
  190. }
  191. EXPORT_SYMBOL(fc_fill_hdr);
  192. /**
  193. * fc_fill_reply_hdr() - fill FC reply header fields based on request
  194. * @fp: reply frame containing header to be filled in
  195. * @in_fp: request frame containing header to use in filling in reply
  196. * @r_ctl: R_CTL value for reply
  197. * @parm_offset: parameter / offset value
  198. */
  199. void fc_fill_reply_hdr(struct fc_frame *fp, const struct fc_frame *in_fp,
  200. enum fc_rctl r_ctl, u32 parm_offset)
  201. {
  202. struct fc_seq *sp;
  203. sp = fr_seq(in_fp);
  204. if (sp)
  205. fr_seq(fp) = fr_dev(in_fp)->tt.seq_start_next(sp);
  206. fc_fill_hdr(fp, in_fp, r_ctl, FC_FCTL_RESP, 0, parm_offset);
  207. }
  208. EXPORT_SYMBOL(fc_fill_reply_hdr);
  209. /**
  210. * fc_fc4_conf_lport_params() - Modify "service_params" of specified lport
  211. * if there is service provider (target provider) registered with libfc
  212. * for specified "fc_ft_type"
  213. * @lport: Local port which service_params needs to be modified
  214. * @type: FC-4 type, such as FC_TYPE_FCP
  215. */
  216. void fc_fc4_conf_lport_params(struct fc_lport *lport, enum fc_fh_type type)
  217. {
  218. struct fc4_prov *prov_entry;
  219. BUG_ON(type >= FC_FC4_PROV_SIZE);
  220. BUG_ON(!lport);
  221. prov_entry = fc_passive_prov[type];
  222. if (type == FC_TYPE_FCP) {
  223. if (prov_entry && prov_entry->recv)
  224. lport->service_params |= FCP_SPPF_TARG_FCN;
  225. }
  226. }
  227. void fc_lport_iterate(void (*notify)(struct fc_lport *, void *), void *arg)
  228. {
  229. struct fc_lport *lport;
  230. mutex_lock(&fc_prov_mutex);
  231. list_for_each_entry(lport, &fc_local_ports, lport_list)
  232. notify(lport, arg);
  233. mutex_unlock(&fc_prov_mutex);
  234. }
  235. EXPORT_SYMBOL(fc_lport_iterate);
  236. /**
  237. * fc_fc4_register_provider() - register FC-4 upper-level provider.
  238. * @type: FC-4 type, such as FC_TYPE_FCP
  239. * @prov: structure describing provider including ops vector.
  240. *
  241. * Returns 0 on success, negative error otherwise.
  242. */
  243. int fc_fc4_register_provider(enum fc_fh_type type, struct fc4_prov *prov)
  244. {
  245. struct fc4_prov **prov_entry;
  246. int ret = 0;
  247. if (type >= FC_FC4_PROV_SIZE)
  248. return -EINVAL;
  249. mutex_lock(&fc_prov_mutex);
  250. prov_entry = (prov->recv ? fc_passive_prov : fc_active_prov) + type;
  251. if (*prov_entry)
  252. ret = -EBUSY;
  253. else
  254. *prov_entry = prov;
  255. mutex_unlock(&fc_prov_mutex);
  256. return ret;
  257. }
  258. EXPORT_SYMBOL(fc_fc4_register_provider);
  259. /**
  260. * fc_fc4_deregister_provider() - deregister FC-4 upper-level provider.
  261. * @type: FC-4 type, such as FC_TYPE_FCP
  262. * @prov: structure describing provider including ops vector.
  263. */
  264. void fc_fc4_deregister_provider(enum fc_fh_type type, struct fc4_prov *prov)
  265. {
  266. BUG_ON(type >= FC_FC4_PROV_SIZE);
  267. mutex_lock(&fc_prov_mutex);
  268. if (prov->recv)
  269. rcu_assign_pointer(fc_passive_prov[type], NULL);
  270. else
  271. rcu_assign_pointer(fc_active_prov[type], NULL);
  272. mutex_unlock(&fc_prov_mutex);
  273. synchronize_rcu();
  274. }
  275. EXPORT_SYMBOL(fc_fc4_deregister_provider);
  276. /**
  277. * fc_fc4_add_lport() - add new local port to list and run notifiers.
  278. * @lport: The new local port.
  279. */
  280. void fc_fc4_add_lport(struct fc_lport *lport)
  281. {
  282. mutex_lock(&fc_prov_mutex);
  283. list_add_tail(&lport->lport_list, &fc_local_ports);
  284. blocking_notifier_call_chain(&fc_lport_notifier_head,
  285. FC_LPORT_EV_ADD, lport);
  286. mutex_unlock(&fc_prov_mutex);
  287. }
  288. /**
  289. * fc_fc4_del_lport() - remove local port from list and run notifiers.
  290. * @lport: The new local port.
  291. */
  292. void fc_fc4_del_lport(struct fc_lport *lport)
  293. {
  294. mutex_lock(&fc_prov_mutex);
  295. list_del(&lport->lport_list);
  296. blocking_notifier_call_chain(&fc_lport_notifier_head,
  297. FC_LPORT_EV_DEL, lport);
  298. mutex_unlock(&fc_prov_mutex);
  299. }