agent.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /*
  2. * Copyright (c) 2004, 2005 Mellanox Technologies Ltd. All rights reserved.
  3. * Copyright (c) 2004, 2005 Infinicon Corporation. All rights reserved.
  4. * Copyright (c) 2004, 2005 Intel Corporation. All rights reserved.
  5. * Copyright (c) 2004, 2005 Topspin Corporation. All rights reserved.
  6. * Copyright (c) 2004-2007 Voltaire Corporation. All rights reserved.
  7. * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
  8. *
  9. * This software is available to you under a choice of one of two
  10. * licenses. You may choose to be licensed under the terms of the GNU
  11. * General Public License (GPL) Version 2, available from the file
  12. * COPYING in the main directory of this source tree, or the
  13. * OpenIB.org BSD license below:
  14. *
  15. * Redistribution and use in source and binary forms, with or
  16. * without modification, are permitted provided that the following
  17. * conditions are met:
  18. *
  19. * - Redistributions of source code must retain the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer.
  22. *
  23. * - Redistributions in binary form must reproduce the above
  24. * copyright notice, this list of conditions and the following
  25. * disclaimer in the documentation and/or other materials
  26. * provided with the distribution.
  27. *
  28. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  29. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  30. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  31. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  32. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  33. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  34. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  35. * SOFTWARE.
  36. *
  37. */
  38. #include <linux/slab.h>
  39. #include <linux/string.h>
  40. #include "agent.h"
  41. #include "smi.h"
  42. #include "mad_priv.h"
  43. #define SPFX "ib_agent: "
  44. struct ib_agent_port_private {
  45. struct list_head port_list;
  46. struct ib_mad_agent *agent[2];
  47. };
  48. static DEFINE_SPINLOCK(ib_agent_port_list_lock);
  49. static LIST_HEAD(ib_agent_port_list);
  50. static struct ib_agent_port_private *
  51. __ib_get_agent_port(struct ib_device *device, int port_num)
  52. {
  53. struct ib_agent_port_private *entry;
  54. list_for_each_entry(entry, &ib_agent_port_list, port_list) {
  55. if (entry->agent[1]->device == device &&
  56. entry->agent[1]->port_num == port_num)
  57. return entry;
  58. }
  59. return NULL;
  60. }
  61. static struct ib_agent_port_private *
  62. ib_get_agent_port(struct ib_device *device, int port_num)
  63. {
  64. struct ib_agent_port_private *entry;
  65. unsigned long flags;
  66. spin_lock_irqsave(&ib_agent_port_list_lock, flags);
  67. entry = __ib_get_agent_port(device, port_num);
  68. spin_unlock_irqrestore(&ib_agent_port_list_lock, flags);
  69. return entry;
  70. }
  71. void agent_send_response(struct ib_mad *mad, struct ib_grh *grh,
  72. struct ib_wc *wc, struct ib_device *device,
  73. int port_num, int qpn)
  74. {
  75. struct ib_agent_port_private *port_priv;
  76. struct ib_mad_agent *agent;
  77. struct ib_mad_send_buf *send_buf;
  78. struct ib_ah *ah;
  79. struct ib_mad_send_wr_private *mad_send_wr;
  80. if (device->node_type == RDMA_NODE_IB_SWITCH)
  81. port_priv = ib_get_agent_port(device, 0);
  82. else
  83. port_priv = ib_get_agent_port(device, port_num);
  84. if (!port_priv) {
  85. printk(KERN_ERR SPFX "Unable to find port agent\n");
  86. return;
  87. }
  88. agent = port_priv->agent[qpn];
  89. ah = ib_create_ah_from_wc(agent->qp->pd, wc, grh, port_num);
  90. if (IS_ERR(ah)) {
  91. printk(KERN_ERR SPFX "ib_create_ah_from_wc error %ld\n",
  92. PTR_ERR(ah));
  93. return;
  94. }
  95. send_buf = ib_create_send_mad(agent, wc->src_qp, wc->pkey_index, 0,
  96. IB_MGMT_MAD_HDR, IB_MGMT_MAD_DATA,
  97. GFP_KERNEL);
  98. if (IS_ERR(send_buf)) {
  99. printk(KERN_ERR SPFX "ib_create_send_mad error\n");
  100. goto err1;
  101. }
  102. memcpy(send_buf->mad, mad, sizeof *mad);
  103. send_buf->ah = ah;
  104. if (device->node_type == RDMA_NODE_IB_SWITCH) {
  105. mad_send_wr = container_of(send_buf,
  106. struct ib_mad_send_wr_private,
  107. send_buf);
  108. mad_send_wr->send_wr.wr.ud.port_num = port_num;
  109. }
  110. if (ib_post_send_mad(send_buf, NULL)) {
  111. printk(KERN_ERR SPFX "ib_post_send_mad error\n");
  112. goto err2;
  113. }
  114. return;
  115. err2:
  116. ib_free_send_mad(send_buf);
  117. err1:
  118. ib_destroy_ah(ah);
  119. }
  120. static void agent_send_handler(struct ib_mad_agent *mad_agent,
  121. struct ib_mad_send_wc *mad_send_wc)
  122. {
  123. ib_destroy_ah(mad_send_wc->send_buf->ah);
  124. ib_free_send_mad(mad_send_wc->send_buf);
  125. }
  126. int ib_agent_port_open(struct ib_device *device, int port_num)
  127. {
  128. struct ib_agent_port_private *port_priv;
  129. unsigned long flags;
  130. int ret;
  131. /* Create new device info */
  132. port_priv = kzalloc(sizeof *port_priv, GFP_KERNEL);
  133. if (!port_priv) {
  134. printk(KERN_ERR SPFX "No memory for ib_agent_port_private\n");
  135. ret = -ENOMEM;
  136. goto error1;
  137. }
  138. if (rdma_port_get_link_layer(device, port_num) == IB_LINK_LAYER_INFINIBAND) {
  139. /* Obtain send only MAD agent for SMI QP */
  140. port_priv->agent[0] = ib_register_mad_agent(device, port_num,
  141. IB_QPT_SMI, NULL, 0,
  142. &agent_send_handler,
  143. NULL, NULL);
  144. if (IS_ERR(port_priv->agent[0])) {
  145. ret = PTR_ERR(port_priv->agent[0]);
  146. goto error2;
  147. }
  148. }
  149. /* Obtain send only MAD agent for GSI QP */
  150. port_priv->agent[1] = ib_register_mad_agent(device, port_num,
  151. IB_QPT_GSI, NULL, 0,
  152. &agent_send_handler,
  153. NULL, NULL);
  154. if (IS_ERR(port_priv->agent[1])) {
  155. ret = PTR_ERR(port_priv->agent[1]);
  156. goto error3;
  157. }
  158. spin_lock_irqsave(&ib_agent_port_list_lock, flags);
  159. list_add_tail(&port_priv->port_list, &ib_agent_port_list);
  160. spin_unlock_irqrestore(&ib_agent_port_list_lock, flags);
  161. return 0;
  162. error3:
  163. if (port_priv->agent[0])
  164. ib_unregister_mad_agent(port_priv->agent[0]);
  165. error2:
  166. kfree(port_priv);
  167. error1:
  168. return ret;
  169. }
  170. int ib_agent_port_close(struct ib_device *device, int port_num)
  171. {
  172. struct ib_agent_port_private *port_priv;
  173. unsigned long flags;
  174. spin_lock_irqsave(&ib_agent_port_list_lock, flags);
  175. port_priv = __ib_get_agent_port(device, port_num);
  176. if (port_priv == NULL) {
  177. spin_unlock_irqrestore(&ib_agent_port_list_lock, flags);
  178. printk(KERN_ERR SPFX "Port %d not found\n", port_num);
  179. return -ENODEV;
  180. }
  181. list_del(&port_priv->port_list);
  182. spin_unlock_irqrestore(&ib_agent_port_list_lock, flags);
  183. ib_unregister_mad_agent(port_priv->agent[1]);
  184. if (port_priv->agent[0])
  185. ib_unregister_mad_agent(port_priv->agent[0]);
  186. kfree(port_priv);
  187. return 0;
  188. }