fc_libfc.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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. void fc_lport_iterate(void (*notify)(struct fc_lport *, void *), void *arg)
  210. {
  211. struct fc_lport *lport;
  212. mutex_lock(&fc_prov_mutex);
  213. list_for_each_entry(lport, &fc_local_ports, lport_list)
  214. notify(lport, arg);
  215. mutex_unlock(&fc_prov_mutex);
  216. }
  217. EXPORT_SYMBOL(fc_lport_iterate);
  218. /**
  219. * fc_fc4_register_provider() - register FC-4 upper-level provider.
  220. * @type: FC-4 type, such as FC_TYPE_FCP
  221. * @prov: structure describing provider including ops vector.
  222. *
  223. * Returns 0 on success, negative error otherwise.
  224. */
  225. int fc_fc4_register_provider(enum fc_fh_type type, struct fc4_prov *prov)
  226. {
  227. struct fc4_prov **prov_entry;
  228. int ret = 0;
  229. if (type >= FC_FC4_PROV_SIZE)
  230. return -EINVAL;
  231. mutex_lock(&fc_prov_mutex);
  232. prov_entry = (prov->recv ? fc_passive_prov : fc_active_prov) + type;
  233. if (*prov_entry)
  234. ret = -EBUSY;
  235. else
  236. *prov_entry = prov;
  237. mutex_unlock(&fc_prov_mutex);
  238. return ret;
  239. }
  240. EXPORT_SYMBOL(fc_fc4_register_provider);
  241. /**
  242. * fc_fc4_deregister_provider() - deregister FC-4 upper-level provider.
  243. * @type: FC-4 type, such as FC_TYPE_FCP
  244. * @prov: structure describing provider including ops vector.
  245. */
  246. void fc_fc4_deregister_provider(enum fc_fh_type type, struct fc4_prov *prov)
  247. {
  248. BUG_ON(type >= FC_FC4_PROV_SIZE);
  249. mutex_lock(&fc_prov_mutex);
  250. if (prov->recv)
  251. rcu_assign_pointer(fc_passive_prov[type], NULL);
  252. else
  253. rcu_assign_pointer(fc_active_prov[type], NULL);
  254. mutex_unlock(&fc_prov_mutex);
  255. synchronize_rcu();
  256. }
  257. EXPORT_SYMBOL(fc_fc4_deregister_provider);
  258. /**
  259. * fc_fc4_add_lport() - add new local port to list and run notifiers.
  260. * @lport: The new local port.
  261. */
  262. void fc_fc4_add_lport(struct fc_lport *lport)
  263. {
  264. mutex_lock(&fc_prov_mutex);
  265. list_add_tail(&lport->lport_list, &fc_local_ports);
  266. blocking_notifier_call_chain(&fc_lport_notifier_head,
  267. FC_LPORT_EV_ADD, lport);
  268. mutex_unlock(&fc_prov_mutex);
  269. }
  270. /**
  271. * fc_fc4_del_lport() - remove local port from list and run notifiers.
  272. * @lport: The new local port.
  273. */
  274. void fc_fc4_del_lport(struct fc_lport *lport)
  275. {
  276. mutex_lock(&fc_prov_mutex);
  277. list_del(&lport->lport_list);
  278. blocking_notifier_call_chain(&fc_lport_notifier_head,
  279. FC_LPORT_EV_DEL, lport);
  280. mutex_unlock(&fc_prov_mutex);
  281. }