blob: 6edfecf1be72c9d2c3b3d9559d44187cad3e16af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Hal Rosenstockde493d42007-04-02 11:24:07 -04002 * Copyright (c) 2004-2007 Voltaire, Inc. All rights reserved.
Hal Rosenstockfa619a72005-07-27 11:45:37 -07003 * Copyright (c) 2005 Intel Corporation. All rights reserved.
4 * Copyright (c) 2005 Mellanox Technologies Ltd. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
33 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/dma-mapping.h>
Jack Morgenstein9874e742006-06-17 20:37:34 -070036#include <rdma/ib_cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "mad_priv.h"
Hal Rosenstockfa619a72005-07-27 11:45:37 -070039#include "mad_rmpp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "smi.h"
41#include "agent.h"
42
43MODULE_LICENSE("Dual BSD/GPL");
44MODULE_DESCRIPTION("kernel IB MAD API");
45MODULE_AUTHOR("Hal Rosenstock");
46MODULE_AUTHOR("Sean Hefty");
47
Roland Dreiere54f8182006-11-29 15:33:07 -080048static struct kmem_cache *ib_mad_cache;
Hal Rosenstockfa619a72005-07-27 11:45:37 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static struct list_head ib_mad_port_list;
51static u32 ib_mad_client_id = 0;
52
53/* Port list lock */
54static spinlock_t ib_mad_port_list_lock;
55
56
57/* Forward declarations */
58static int method_in_use(struct ib_mad_mgmt_method_table **method,
59 struct ib_mad_reg_req *mad_reg_req);
60static void remove_mad_reg_req(struct ib_mad_agent_private *priv);
61static struct ib_mad_agent_private *find_mad_agent(
62 struct ib_mad_port_private *port_priv,
Hal Rosenstock4a0754f2005-07-27 11:45:24 -070063 struct ib_mad *mad);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static int ib_mad_post_receive_mads(struct ib_mad_qp_info *qp_info,
65 struct ib_mad_private *mad);
66static void cancel_mads(struct ib_mad_agent_private *mad_agent_priv);
David Howellsc4028952006-11-22 14:57:56 +000067static void timeout_sends(struct work_struct *work);
68static void local_completions(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static int add_nonoui_reg_req(struct ib_mad_reg_req *mad_reg_req,
70 struct ib_mad_agent_private *agent_priv,
71 u8 mgmt_class);
72static int add_oui_reg_req(struct ib_mad_reg_req *mad_reg_req,
73 struct ib_mad_agent_private *agent_priv);
74
75/*
76 * Returns a ib_mad_port_private structure or NULL for a device/port
77 * Assumes ib_mad_port_list_lock is being held
78 */
79static inline struct ib_mad_port_private *
80__ib_get_mad_port(struct ib_device *device, int port_num)
81{
82 struct ib_mad_port_private *entry;
83
84 list_for_each_entry(entry, &ib_mad_port_list, port_list) {
85 if (entry->device == device && entry->port_num == port_num)
86 return entry;
87 }
88 return NULL;
89}
90
91/*
92 * Wrapper function to return a ib_mad_port_private structure or NULL
93 * for a device/port
94 */
95static inline struct ib_mad_port_private *
96ib_get_mad_port(struct ib_device *device, int port_num)
97{
98 struct ib_mad_port_private *entry;
99 unsigned long flags;
100
101 spin_lock_irqsave(&ib_mad_port_list_lock, flags);
102 entry = __ib_get_mad_port(device, port_num);
103 spin_unlock_irqrestore(&ib_mad_port_list_lock, flags);
104
105 return entry;
106}
107
108static inline u8 convert_mgmt_class(u8 mgmt_class)
109{
110 /* Alias IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE to 0 */
111 return mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE ?
112 0 : mgmt_class;
113}
114
115static int get_spl_qp_index(enum ib_qp_type qp_type)
116{
117 switch (qp_type)
118 {
119 case IB_QPT_SMI:
120 return 0;
121 case IB_QPT_GSI:
122 return 1;
123 default:
124 return -1;
125 }
126}
127
128static int vendor_class_index(u8 mgmt_class)
129{
130 return mgmt_class - IB_MGMT_CLASS_VENDOR_RANGE2_START;
131}
132
133static int is_vendor_class(u8 mgmt_class)
134{
135 if ((mgmt_class < IB_MGMT_CLASS_VENDOR_RANGE2_START) ||
136 (mgmt_class > IB_MGMT_CLASS_VENDOR_RANGE2_END))
137 return 0;
138 return 1;
139}
140
141static int is_vendor_oui(char *oui)
142{
143 if (oui[0] || oui[1] || oui[2])
144 return 1;
145 return 0;
146}
147
148static int is_vendor_method_in_use(
149 struct ib_mad_mgmt_vendor_class *vendor_class,
150 struct ib_mad_reg_req *mad_reg_req)
151{
152 struct ib_mad_mgmt_method_table *method;
153 int i;
154
155 for (i = 0; i < MAX_MGMT_OUI; i++) {
156 if (!memcmp(vendor_class->oui[i], mad_reg_req->oui, 3)) {
157 method = vendor_class->method_table[i];
158 if (method) {
159 if (method_in_use(&method, mad_reg_req))
160 return 1;
161 else
162 break;
163 }
164 }
165 }
166 return 0;
167}
168
Sean Hefty2527e682006-07-20 11:25:50 +0300169int ib_response_mad(struct ib_mad *mad)
170{
171 return ((mad->mad_hdr.method & IB_MGMT_METHOD_RESP) ||
172 (mad->mad_hdr.method == IB_MGMT_METHOD_TRAP_REPRESS) ||
173 ((mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_BM) &&
174 (mad->mad_hdr.attr_mod & IB_BM_ATTR_MOD_RESP)));
175}
176EXPORT_SYMBOL(ib_response_mad);
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/*
179 * ib_register_mad_agent - Register to send/receive MADs
180 */
181struct ib_mad_agent *ib_register_mad_agent(struct ib_device *device,
182 u8 port_num,
183 enum ib_qp_type qp_type,
184 struct ib_mad_reg_req *mad_reg_req,
185 u8 rmpp_version,
186 ib_mad_send_handler send_handler,
187 ib_mad_recv_handler recv_handler,
188 void *context)
189{
190 struct ib_mad_port_private *port_priv;
191 struct ib_mad_agent *ret = ERR_PTR(-EINVAL);
192 struct ib_mad_agent_private *mad_agent_priv;
193 struct ib_mad_reg_req *reg_req = NULL;
194 struct ib_mad_mgmt_class_table *class;
195 struct ib_mad_mgmt_vendor_class_table *vendor;
196 struct ib_mad_mgmt_vendor_class *vendor_class;
197 struct ib_mad_mgmt_method_table *method;
198 int ret2, qpn;
199 unsigned long flags;
200 u8 mgmt_class, vclass;
201
202 /* Validate parameters */
203 qpn = get_spl_qp_index(qp_type);
204 if (qpn == -1)
205 goto error1;
206
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700207 if (rmpp_version && rmpp_version != IB_MGMT_RMPP_VERSION)
208 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* Validate MAD registration request if supplied */
211 if (mad_reg_req) {
212 if (mad_reg_req->mgmt_class_version >= MAX_MGMT_VERSION)
213 goto error1;
214 if (!recv_handler)
215 goto error1;
216 if (mad_reg_req->mgmt_class >= MAX_MGMT_CLASS) {
217 /*
218 * IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE is the only
219 * one in this range currently allowed
220 */
221 if (mad_reg_req->mgmt_class !=
222 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE)
223 goto error1;
224 } else if (mad_reg_req->mgmt_class == 0) {
225 /*
226 * Class 0 is reserved in IBA and is used for
227 * aliasing of IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
228 */
229 goto error1;
230 } else if (is_vendor_class(mad_reg_req->mgmt_class)) {
231 /*
232 * If class is in "new" vendor range,
233 * ensure supplied OUI is not zero
234 */
235 if (!is_vendor_oui(mad_reg_req->oui))
236 goto error1;
237 }
Hal Rosenstock618a3c02006-03-28 16:40:04 -0800238 /* Make sure class supplied is consistent with RMPP */
Hal Rosenstock64cb9c62006-04-12 21:29:10 -0400239 if (!ib_is_mad_class_rmpp(mad_reg_req->mgmt_class)) {
Hal Rosenstock618a3c02006-03-28 16:40:04 -0800240 if (rmpp_version)
241 goto error1;
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /* Make sure class supplied is consistent with QP type */
244 if (qp_type == IB_QPT_SMI) {
245 if ((mad_reg_req->mgmt_class !=
246 IB_MGMT_CLASS_SUBN_LID_ROUTED) &&
247 (mad_reg_req->mgmt_class !=
248 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE))
249 goto error1;
250 } else {
251 if ((mad_reg_req->mgmt_class ==
252 IB_MGMT_CLASS_SUBN_LID_ROUTED) ||
253 (mad_reg_req->mgmt_class ==
254 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE))
255 goto error1;
256 }
257 } else {
258 /* No registration request supplied */
259 if (!send_handler)
260 goto error1;
261 }
262
263 /* Validate device and port */
264 port_priv = ib_get_mad_port(device, port_num);
265 if (!port_priv) {
266 ret = ERR_PTR(-ENODEV);
267 goto error1;
268 }
269
270 /* Allocate structures */
Roland Dreierde6eb662005-11-02 07:23:14 -0800271 mad_agent_priv = kzalloc(sizeof *mad_agent_priv, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (!mad_agent_priv) {
273 ret = ERR_PTR(-ENOMEM);
274 goto error1;
275 }
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700276
277 mad_agent_priv->agent.mr = ib_get_dma_mr(port_priv->qp_info[qpn].qp->pd,
278 IB_ACCESS_LOCAL_WRITE);
279 if (IS_ERR(mad_agent_priv->agent.mr)) {
280 ret = ERR_PTR(-ENOMEM);
281 goto error2;
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 if (mad_reg_req) {
285 reg_req = kmalloc(sizeof *reg_req, GFP_KERNEL);
286 if (!reg_req) {
287 ret = ERR_PTR(-ENOMEM);
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700288 goto error3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290 /* Make a copy of the MAD registration request */
291 memcpy(reg_req, mad_reg_req, sizeof *reg_req);
292 }
293
294 /* Now, fill in the various structures */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 mad_agent_priv->qp_info = &port_priv->qp_info[qpn];
296 mad_agent_priv->reg_req = reg_req;
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700297 mad_agent_priv->agent.rmpp_version = rmpp_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 mad_agent_priv->agent.device = device;
299 mad_agent_priv->agent.recv_handler = recv_handler;
300 mad_agent_priv->agent.send_handler = send_handler;
301 mad_agent_priv->agent.context = context;
302 mad_agent_priv->agent.qp = port_priv->qp_info[qpn].qp;
303 mad_agent_priv->agent.port_num = port_num;
304
305 spin_lock_irqsave(&port_priv->reg_lock, flags);
306 mad_agent_priv->agent.hi_tid = ++ib_mad_client_id;
307
308 /*
309 * Make sure MAD registration (if supplied)
310 * is non overlapping with any existing ones
311 */
312 if (mad_reg_req) {
313 mgmt_class = convert_mgmt_class(mad_reg_req->mgmt_class);
314 if (!is_vendor_class(mgmt_class)) {
315 class = port_priv->version[mad_reg_req->
316 mgmt_class_version].class;
317 if (class) {
318 method = class->method_table[mgmt_class];
319 if (method) {
320 if (method_in_use(&method,
321 mad_reg_req))
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700322 goto error4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 }
325 ret2 = add_nonoui_reg_req(mad_reg_req, mad_agent_priv,
326 mgmt_class);
327 } else {
328 /* "New" vendor class range */
329 vendor = port_priv->version[mad_reg_req->
330 mgmt_class_version].vendor;
331 if (vendor) {
332 vclass = vendor_class_index(mgmt_class);
333 vendor_class = vendor->vendor_class[vclass];
334 if (vendor_class) {
335 if (is_vendor_method_in_use(
336 vendor_class,
337 mad_reg_req))
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700338 goto error4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340 }
341 ret2 = add_oui_reg_req(mad_reg_req, mad_agent_priv);
342 }
343 if (ret2) {
344 ret = ERR_PTR(ret2);
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700345 goto error4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347 }
348
349 /* Add mad agent into port's agent list */
350 list_add_tail(&mad_agent_priv->agent_list, &port_priv->agent_list);
351 spin_unlock_irqrestore(&port_priv->reg_lock, flags);
352
353 spin_lock_init(&mad_agent_priv->lock);
354 INIT_LIST_HEAD(&mad_agent_priv->send_list);
355 INIT_LIST_HEAD(&mad_agent_priv->wait_list);
Hal Rosenstock6a0c4352005-07-27 11:45:26 -0700356 INIT_LIST_HEAD(&mad_agent_priv->done_list);
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700357 INIT_LIST_HEAD(&mad_agent_priv->rmpp_list);
David Howellsc4028952006-11-22 14:57:56 +0000358 INIT_DELAYED_WORK(&mad_agent_priv->timed_work, timeout_sends);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 INIT_LIST_HEAD(&mad_agent_priv->local_list);
David Howellsc4028952006-11-22 14:57:56 +0000360 INIT_WORK(&mad_agent_priv->local_work, local_completions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 atomic_set(&mad_agent_priv->refcount, 1);
Sean Hefty1b52fa982006-05-12 14:57:52 -0700362 init_completion(&mad_agent_priv->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 return &mad_agent_priv->agent;
365
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700366error4:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 spin_unlock_irqrestore(&port_priv->reg_lock, flags);
368 kfree(reg_req);
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700369error3:
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700370 ib_dereg_mr(mad_agent_priv->agent.mr);
Adrian Bunk2012a112005-11-27 00:37:36 +0100371error2:
372 kfree(mad_agent_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373error1:
374 return ret;
375}
376EXPORT_SYMBOL(ib_register_mad_agent);
377
378static inline int is_snooping_sends(int mad_snoop_flags)
379{
380 return (mad_snoop_flags &
381 (/*IB_MAD_SNOOP_POSTED_SENDS |
382 IB_MAD_SNOOP_RMPP_SENDS |*/
383 IB_MAD_SNOOP_SEND_COMPLETIONS /*|
384 IB_MAD_SNOOP_RMPP_SEND_COMPLETIONS*/));
385}
386
387static inline int is_snooping_recvs(int mad_snoop_flags)
388{
389 return (mad_snoop_flags &
390 (IB_MAD_SNOOP_RECVS /*|
391 IB_MAD_SNOOP_RMPP_RECVS*/));
392}
393
394static int register_snoop_agent(struct ib_mad_qp_info *qp_info,
395 struct ib_mad_snoop_private *mad_snoop_priv)
396{
397 struct ib_mad_snoop_private **new_snoop_table;
398 unsigned long flags;
399 int i;
400
401 spin_lock_irqsave(&qp_info->snoop_lock, flags);
402 /* Check for empty slot in array. */
403 for (i = 0; i < qp_info->snoop_table_size; i++)
404 if (!qp_info->snoop_table[i])
405 break;
406
407 if (i == qp_info->snoop_table_size) {
408 /* Grow table. */
409 new_snoop_table = kmalloc(sizeof mad_snoop_priv *
410 qp_info->snoop_table_size + 1,
411 GFP_ATOMIC);
412 if (!new_snoop_table) {
413 i = -ENOMEM;
414 goto out;
415 }
416 if (qp_info->snoop_table) {
417 memcpy(new_snoop_table, qp_info->snoop_table,
418 sizeof mad_snoop_priv *
419 qp_info->snoop_table_size);
420 kfree(qp_info->snoop_table);
421 }
422 qp_info->snoop_table = new_snoop_table;
423 qp_info->snoop_table_size++;
424 }
425 qp_info->snoop_table[i] = mad_snoop_priv;
426 atomic_inc(&qp_info->snoop_count);
427out:
428 spin_unlock_irqrestore(&qp_info->snoop_lock, flags);
429 return i;
430}
431
432struct ib_mad_agent *ib_register_mad_snoop(struct ib_device *device,
433 u8 port_num,
434 enum ib_qp_type qp_type,
435 int mad_snoop_flags,
436 ib_mad_snoop_handler snoop_handler,
437 ib_mad_recv_handler recv_handler,
438 void *context)
439{
440 struct ib_mad_port_private *port_priv;
441 struct ib_mad_agent *ret;
442 struct ib_mad_snoop_private *mad_snoop_priv;
443 int qpn;
444
445 /* Validate parameters */
446 if ((is_snooping_sends(mad_snoop_flags) && !snoop_handler) ||
447 (is_snooping_recvs(mad_snoop_flags) && !recv_handler)) {
448 ret = ERR_PTR(-EINVAL);
449 goto error1;
450 }
451 qpn = get_spl_qp_index(qp_type);
452 if (qpn == -1) {
453 ret = ERR_PTR(-EINVAL);
454 goto error1;
455 }
456 port_priv = ib_get_mad_port(device, port_num);
457 if (!port_priv) {
458 ret = ERR_PTR(-ENODEV);
459 goto error1;
460 }
461 /* Allocate structures */
Roland Dreierde6eb662005-11-02 07:23:14 -0800462 mad_snoop_priv = kzalloc(sizeof *mad_snoop_priv, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (!mad_snoop_priv) {
464 ret = ERR_PTR(-ENOMEM);
465 goto error1;
466 }
467
468 /* Now, fill in the various structures */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 mad_snoop_priv->qp_info = &port_priv->qp_info[qpn];
470 mad_snoop_priv->agent.device = device;
471 mad_snoop_priv->agent.recv_handler = recv_handler;
472 mad_snoop_priv->agent.snoop_handler = snoop_handler;
473 mad_snoop_priv->agent.context = context;
474 mad_snoop_priv->agent.qp = port_priv->qp_info[qpn].qp;
475 mad_snoop_priv->agent.port_num = port_num;
476 mad_snoop_priv->mad_snoop_flags = mad_snoop_flags;
Sean Hefty1b52fa982006-05-12 14:57:52 -0700477 init_completion(&mad_snoop_priv->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 mad_snoop_priv->snoop_index = register_snoop_agent(
479 &port_priv->qp_info[qpn],
480 mad_snoop_priv);
481 if (mad_snoop_priv->snoop_index < 0) {
482 ret = ERR_PTR(mad_snoop_priv->snoop_index);
483 goto error2;
484 }
485
486 atomic_set(&mad_snoop_priv->refcount, 1);
487 return &mad_snoop_priv->agent;
488
489error2:
490 kfree(mad_snoop_priv);
491error1:
492 return ret;
493}
494EXPORT_SYMBOL(ib_register_mad_snoop);
495
Sean Hefty1b52fa982006-05-12 14:57:52 -0700496static inline void deref_mad_agent(struct ib_mad_agent_private *mad_agent_priv)
497{
498 if (atomic_dec_and_test(&mad_agent_priv->refcount))
499 complete(&mad_agent_priv->comp);
500}
501
502static inline void deref_snoop_agent(struct ib_mad_snoop_private *mad_snoop_priv)
503{
504 if (atomic_dec_and_test(&mad_snoop_priv->refcount))
505 complete(&mad_snoop_priv->comp);
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508static void unregister_mad_agent(struct ib_mad_agent_private *mad_agent_priv)
509{
510 struct ib_mad_port_private *port_priv;
511 unsigned long flags;
512
513 /* Note that we could still be handling received MADs */
514
515 /*
516 * Canceling all sends results in dropping received response
517 * MADs, preventing us from queuing additional work
518 */
519 cancel_mads(mad_agent_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 port_priv = mad_agent_priv->qp_info->port_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 cancel_delayed_work(&mad_agent_priv->timed_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 spin_lock_irqsave(&port_priv->reg_lock, flags);
524 remove_mad_reg_req(mad_agent_priv);
525 list_del(&mad_agent_priv->agent_list);
526 spin_unlock_irqrestore(&port_priv->reg_lock, flags);
527
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700528 flush_workqueue(port_priv->wq);
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700529 ib_cancel_rmpp_recvs(mad_agent_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Sean Hefty1b52fa982006-05-12 14:57:52 -0700531 deref_mad_agent(mad_agent_priv);
532 wait_for_completion(&mad_agent_priv->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Jesper Juhl6044ec82005-11-07 01:01:32 -0800534 kfree(mad_agent_priv->reg_req);
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700535 ib_dereg_mr(mad_agent_priv->agent.mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 kfree(mad_agent_priv);
537}
538
539static void unregister_mad_snoop(struct ib_mad_snoop_private *mad_snoop_priv)
540{
541 struct ib_mad_qp_info *qp_info;
542 unsigned long flags;
543
544 qp_info = mad_snoop_priv->qp_info;
545 spin_lock_irqsave(&qp_info->snoop_lock, flags);
546 qp_info->snoop_table[mad_snoop_priv->snoop_index] = NULL;
547 atomic_dec(&qp_info->snoop_count);
548 spin_unlock_irqrestore(&qp_info->snoop_lock, flags);
549
Sean Hefty1b52fa982006-05-12 14:57:52 -0700550 deref_snoop_agent(mad_snoop_priv);
551 wait_for_completion(&mad_snoop_priv->comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 kfree(mad_snoop_priv);
554}
555
556/*
557 * ib_unregister_mad_agent - Unregisters a client from using MAD services
558 */
559int ib_unregister_mad_agent(struct ib_mad_agent *mad_agent)
560{
561 struct ib_mad_agent_private *mad_agent_priv;
562 struct ib_mad_snoop_private *mad_snoop_priv;
563
564 /* If the TID is zero, the agent can only snoop. */
565 if (mad_agent->hi_tid) {
566 mad_agent_priv = container_of(mad_agent,
567 struct ib_mad_agent_private,
568 agent);
569 unregister_mad_agent(mad_agent_priv);
570 } else {
571 mad_snoop_priv = container_of(mad_agent,
572 struct ib_mad_snoop_private,
573 agent);
574 unregister_mad_snoop(mad_snoop_priv);
575 }
576 return 0;
577}
578EXPORT_SYMBOL(ib_unregister_mad_agent);
579
580static void dequeue_mad(struct ib_mad_list_head *mad_list)
581{
582 struct ib_mad_queue *mad_queue;
583 unsigned long flags;
584
585 BUG_ON(!mad_list->mad_queue);
586 mad_queue = mad_list->mad_queue;
587 spin_lock_irqsave(&mad_queue->lock, flags);
588 list_del(&mad_list->list);
589 mad_queue->count--;
590 spin_unlock_irqrestore(&mad_queue->lock, flags);
591}
592
593static void snoop_send(struct ib_mad_qp_info *qp_info,
Sean Hefty34816ad2005-10-25 10:51:39 -0700594 struct ib_mad_send_buf *send_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct ib_mad_send_wc *mad_send_wc,
596 int mad_snoop_flags)
597{
598 struct ib_mad_snoop_private *mad_snoop_priv;
599 unsigned long flags;
600 int i;
601
602 spin_lock_irqsave(&qp_info->snoop_lock, flags);
603 for (i = 0; i < qp_info->snoop_table_size; i++) {
604 mad_snoop_priv = qp_info->snoop_table[i];
605 if (!mad_snoop_priv ||
606 !(mad_snoop_priv->mad_snoop_flags & mad_snoop_flags))
607 continue;
608
609 atomic_inc(&mad_snoop_priv->refcount);
610 spin_unlock_irqrestore(&qp_info->snoop_lock, flags);
611 mad_snoop_priv->agent.snoop_handler(&mad_snoop_priv->agent,
Sean Hefty34816ad2005-10-25 10:51:39 -0700612 send_buf, mad_send_wc);
Sean Hefty1b52fa982006-05-12 14:57:52 -0700613 deref_snoop_agent(mad_snoop_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 spin_lock_irqsave(&qp_info->snoop_lock, flags);
615 }
616 spin_unlock_irqrestore(&qp_info->snoop_lock, flags);
617}
618
619static void snoop_recv(struct ib_mad_qp_info *qp_info,
620 struct ib_mad_recv_wc *mad_recv_wc,
621 int mad_snoop_flags)
622{
623 struct ib_mad_snoop_private *mad_snoop_priv;
624 unsigned long flags;
625 int i;
626
627 spin_lock_irqsave(&qp_info->snoop_lock, flags);
628 for (i = 0; i < qp_info->snoop_table_size; i++) {
629 mad_snoop_priv = qp_info->snoop_table[i];
630 if (!mad_snoop_priv ||
631 !(mad_snoop_priv->mad_snoop_flags & mad_snoop_flags))
632 continue;
633
634 atomic_inc(&mad_snoop_priv->refcount);
635 spin_unlock_irqrestore(&qp_info->snoop_lock, flags);
636 mad_snoop_priv->agent.recv_handler(&mad_snoop_priv->agent,
637 mad_recv_wc);
Sean Hefty1b52fa982006-05-12 14:57:52 -0700638 deref_snoop_agent(mad_snoop_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 spin_lock_irqsave(&qp_info->snoop_lock, flags);
640 }
641 spin_unlock_irqrestore(&qp_info->snoop_lock, flags);
642}
643
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200644static void build_smp_wc(struct ib_qp *qp,
645 u64 wr_id, u16 slid, u16 pkey_index, u8 port_num,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct ib_wc *wc)
647{
648 memset(wc, 0, sizeof *wc);
649 wc->wr_id = wr_id;
650 wc->status = IB_WC_SUCCESS;
651 wc->opcode = IB_WC_RECV;
652 wc->pkey_index = pkey_index;
653 wc->byte_len = sizeof(struct ib_mad) + sizeof(struct ib_grh);
654 wc->src_qp = IB_QP0;
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200655 wc->qp = qp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 wc->slid = slid;
657 wc->sl = 0;
658 wc->dlid_path_bits = 0;
659 wc->port_num = port_num;
660}
661
662/*
663 * Return 0 if SMP is to be sent
664 * Return 1 if SMP was consumed locally (whether or not solicited)
665 * Return < 0 if error
666 */
667static int handle_outgoing_dr_smp(struct ib_mad_agent_private *mad_agent_priv,
Sean Hefty34816ad2005-10-25 10:51:39 -0700668 struct ib_mad_send_wr_private *mad_send_wr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Hal Rosenstockde493d42007-04-02 11:24:07 -0400670 int ret = 0;
Sean Hefty34816ad2005-10-25 10:51:39 -0700671 struct ib_smp *smp = mad_send_wr->send_buf.mad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 unsigned long flags;
673 struct ib_mad_local_private *local;
674 struct ib_mad_private *mad_priv;
675 struct ib_mad_port_private *port_priv;
676 struct ib_mad_agent_private *recv_mad_agent = NULL;
677 struct ib_device *device = mad_agent_priv->agent.device;
678 u8 port_num = mad_agent_priv->agent.port_num;
679 struct ib_wc mad_wc;
Sean Hefty34816ad2005-10-25 10:51:39 -0700680 struct ib_send_wr *send_wr = &mad_send_wr->send_wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Ralph Campbell8cf3f042006-02-03 14:28:48 -0800682 /*
683 * Directed route handling starts if the initial LID routed part of
684 * a request or the ending LID routed part of a response is empty.
685 * If we are at the start of the LID routed part, don't update the
686 * hop_ptr or hop_cnt. See section 14.2.2, Vol 1 IB spec.
687 */
688 if ((ib_get_smp_direction(smp) ? smp->dr_dlid : smp->dr_slid) ==
689 IB_LID_PERMISSIVE &&
Hal Rosenstockde493d42007-04-02 11:24:07 -0400690 smi_handle_dr_smp_send(smp, device->node_type, port_num) ==
691 IB_SMI_DISCARD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 ret = -EINVAL;
693 printk(KERN_ERR PFX "Invalid directed route\n");
694 goto out;
695 }
Hal Rosenstockde493d42007-04-02 11:24:07 -0400696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 /* Check to post send on QP or process locally */
Hal Rosenstockde493d42007-04-02 11:24:07 -0400698 if (smi_check_local_smp(smp, device) == IB_SMI_DISCARD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 goto out;
700
701 local = kmalloc(sizeof *local, GFP_ATOMIC);
702 if (!local) {
703 ret = -ENOMEM;
704 printk(KERN_ERR PFX "No memory for ib_mad_local_private\n");
705 goto out;
706 }
707 local->mad_priv = NULL;
708 local->recv_mad_agent = NULL;
709 mad_priv = kmem_cache_alloc(ib_mad_cache, GFP_ATOMIC);
710 if (!mad_priv) {
711 ret = -ENOMEM;
712 printk(KERN_ERR PFX "No memory for local response MAD\n");
713 kfree(local);
714 goto out;
715 }
716
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +0200717 build_smp_wc(mad_agent_priv->agent.qp,
718 send_wr->wr_id, be16_to_cpu(smp->dr_slid),
Sean Hefty97f52eb2005-08-13 21:05:57 -0700719 send_wr->wr.ud.pkey_index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 send_wr->wr.ud.port_num, &mad_wc);
721
722 /* No GRH for DR SMP */
723 ret = device->process_mad(device, 0, port_num, &mad_wc, NULL,
724 (struct ib_mad *)smp,
725 (struct ib_mad *)&mad_priv->mad);
726 switch (ret)
727 {
728 case IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY:
Sean Hefty2527e682006-07-20 11:25:50 +0300729 if (ib_response_mad(&mad_priv->mad.mad) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 mad_agent_priv->agent.recv_handler) {
731 local->mad_priv = mad_priv;
732 local->recv_mad_agent = mad_agent_priv;
733 /*
734 * Reference MAD agent until receive
735 * side of local completion handled
736 */
737 atomic_inc(&mad_agent_priv->refcount);
738 } else
739 kmem_cache_free(ib_mad_cache, mad_priv);
740 break;
741 case IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED:
742 kmem_cache_free(ib_mad_cache, mad_priv);
743 break;
744 case IB_MAD_RESULT_SUCCESS:
745 /* Treat like an incoming receive MAD */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 port_priv = ib_get_mad_port(mad_agent_priv->agent.device,
747 mad_agent_priv->agent.port_num);
748 if (port_priv) {
749 mad_priv->mad.mad.mad_hdr.tid =
750 ((struct ib_mad *)smp)->mad_hdr.tid;
751 recv_mad_agent = find_mad_agent(port_priv,
Hal Rosenstock4a0754f2005-07-27 11:45:24 -0700752 &mad_priv->mad.mad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754 if (!port_priv || !recv_mad_agent) {
755 kmem_cache_free(ib_mad_cache, mad_priv);
756 kfree(local);
757 ret = 0;
758 goto out;
759 }
760 local->mad_priv = mad_priv;
761 local->recv_mad_agent = recv_mad_agent;
762 break;
763 default:
764 kmem_cache_free(ib_mad_cache, mad_priv);
765 kfree(local);
766 ret = -EINVAL;
767 goto out;
768 }
769
Sean Hefty34816ad2005-10-25 10:51:39 -0700770 local->mad_send_wr = mad_send_wr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /* Reference MAD agent until send side of local completion handled */
772 atomic_inc(&mad_agent_priv->refcount);
773 /* Queue local completion to local list */
774 spin_lock_irqsave(&mad_agent_priv->lock, flags);
775 list_add_tail(&local->completion_list, &mad_agent_priv->local_list);
776 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
777 queue_work(mad_agent_priv->qp_info->port_priv->wq,
Hal Rosenstockb82cab62005-07-27 11:45:22 -0700778 &mad_agent_priv->local_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 ret = 1;
780out:
781 return ret;
782}
783
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800784static int get_pad_size(int hdr_len, int data_len)
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700785{
786 int seg_size, pad;
787
788 seg_size = sizeof(struct ib_mad) - hdr_len;
789 if (data_len && seg_size) {
790 pad = seg_size - data_len % seg_size;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800791 return pad == seg_size ? 0 : pad;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700792 } else
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800793 return seg_size;
794}
795
796static void free_send_rmpp_list(struct ib_mad_send_wr_private *mad_send_wr)
797{
798 struct ib_rmpp_segment *s, *t;
799
800 list_for_each_entry_safe(s, t, &mad_send_wr->rmpp_list, list) {
801 list_del(&s->list);
802 kfree(s);
803 }
804}
805
806static int alloc_send_rmpp_list(struct ib_mad_send_wr_private *send_wr,
807 gfp_t gfp_mask)
808{
809 struct ib_mad_send_buf *send_buf = &send_wr->send_buf;
810 struct ib_rmpp_mad *rmpp_mad = send_buf->mad;
811 struct ib_rmpp_segment *seg = NULL;
812 int left, seg_size, pad;
813
814 send_buf->seg_size = sizeof (struct ib_mad) - send_buf->hdr_len;
815 seg_size = send_buf->seg_size;
816 pad = send_wr->pad;
817
818 /* Allocate data segments. */
819 for (left = send_buf->data_len + pad; left > 0; left -= seg_size) {
820 seg = kmalloc(sizeof (*seg) + seg_size, gfp_mask);
821 if (!seg) {
822 printk(KERN_ERR "alloc_send_rmpp_segs: RMPP mem "
823 "alloc failed for len %zd, gfp %#x\n",
824 sizeof (*seg) + seg_size, gfp_mask);
825 free_send_rmpp_list(send_wr);
826 return -ENOMEM;
827 }
828 seg->num = ++send_buf->seg_count;
829 list_add_tail(&seg->list, &send_wr->rmpp_list);
830 }
831
832 /* Zero any padding */
833 if (pad)
834 memset(seg->data + seg_size - pad, 0, pad);
835
836 rmpp_mad->rmpp_hdr.rmpp_version = send_wr->mad_agent_priv->
837 agent.rmpp_version;
838 rmpp_mad->rmpp_hdr.rmpp_type = IB_MGMT_RMPP_TYPE_DATA;
839 ib_set_rmpp_flags(&rmpp_mad->rmpp_hdr, IB_MGMT_RMPP_FLAG_ACTIVE);
840
841 send_wr->cur_seg = container_of(send_wr->rmpp_list.next,
842 struct ib_rmpp_segment, list);
843 send_wr->last_ack_seg = send_wr->cur_seg;
844 return 0;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700845}
846
847struct ib_mad_send_buf * ib_create_send_mad(struct ib_mad_agent *mad_agent,
848 u32 remote_qpn, u16 pkey_index,
Sean Hefty34816ad2005-10-25 10:51:39 -0700849 int rmpp_active,
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700850 int hdr_len, int data_len,
Al Virodd0fc662005-10-07 07:46:04 +0100851 gfp_t gfp_mask)
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700852{
853 struct ib_mad_agent_private *mad_agent_priv;
Sean Hefty34816ad2005-10-25 10:51:39 -0700854 struct ib_mad_send_wr_private *mad_send_wr;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800855 int pad, message_size, ret, size;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700856 void *buf;
857
Sean Hefty34816ad2005-10-25 10:51:39 -0700858 mad_agent_priv = container_of(mad_agent, struct ib_mad_agent_private,
859 agent);
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800860 pad = get_pad_size(hdr_len, data_len);
861 message_size = hdr_len + data_len + pad;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700862
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700863 if ((!mad_agent->rmpp_version &&
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800864 (rmpp_active || message_size > sizeof(struct ib_mad))) ||
865 (!rmpp_active && message_size > sizeof(struct ib_mad)))
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700866 return ERR_PTR(-EINVAL);
867
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800868 size = rmpp_active ? hdr_len : sizeof(struct ib_mad);
869 buf = kzalloc(sizeof *mad_send_wr + size, gfp_mask);
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700870 if (!buf)
871 return ERR_PTR(-ENOMEM);
872
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800873 mad_send_wr = buf + size;
874 INIT_LIST_HEAD(&mad_send_wr->rmpp_list);
Sean Hefty34816ad2005-10-25 10:51:39 -0700875 mad_send_wr->send_buf.mad = buf;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800876 mad_send_wr->send_buf.hdr_len = hdr_len;
877 mad_send_wr->send_buf.data_len = data_len;
878 mad_send_wr->pad = pad;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700879
Sean Hefty34816ad2005-10-25 10:51:39 -0700880 mad_send_wr->mad_agent_priv = mad_agent_priv;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800881 mad_send_wr->sg_list[0].length = hdr_len;
Sean Hefty34816ad2005-10-25 10:51:39 -0700882 mad_send_wr->sg_list[0].lkey = mad_agent->mr->lkey;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800883 mad_send_wr->sg_list[1].length = sizeof(struct ib_mad) - hdr_len;
884 mad_send_wr->sg_list[1].lkey = mad_agent->mr->lkey;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700885
Sean Hefty34816ad2005-10-25 10:51:39 -0700886 mad_send_wr->send_wr.wr_id = (unsigned long) mad_send_wr;
887 mad_send_wr->send_wr.sg_list = mad_send_wr->sg_list;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800888 mad_send_wr->send_wr.num_sge = 2;
Sean Hefty34816ad2005-10-25 10:51:39 -0700889 mad_send_wr->send_wr.opcode = IB_WR_SEND;
890 mad_send_wr->send_wr.send_flags = IB_SEND_SIGNALED;
891 mad_send_wr->send_wr.wr.ud.remote_qpn = remote_qpn;
892 mad_send_wr->send_wr.wr.ud.remote_qkey = IB_QP_SET_QKEY;
893 mad_send_wr->send_wr.wr.ud.pkey_index = pkey_index;
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700894
895 if (rmpp_active) {
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800896 ret = alloc_send_rmpp_list(mad_send_wr, gfp_mask);
897 if (ret) {
898 kfree(buf);
899 return ERR_PTR(ret);
900 }
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700901 }
902
Sean Hefty34816ad2005-10-25 10:51:39 -0700903 mad_send_wr->send_buf.mad_agent = mad_agent;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700904 atomic_inc(&mad_agent_priv->refcount);
Sean Hefty34816ad2005-10-25 10:51:39 -0700905 return &mad_send_wr->send_buf;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700906}
907EXPORT_SYMBOL(ib_create_send_mad);
908
Hal Rosenstock618a3c02006-03-28 16:40:04 -0800909int ib_get_mad_data_offset(u8 mgmt_class)
910{
911 if (mgmt_class == IB_MGMT_CLASS_SUBN_ADM)
912 return IB_MGMT_SA_HDR;
913 else if ((mgmt_class == IB_MGMT_CLASS_DEVICE_MGMT) ||
914 (mgmt_class == IB_MGMT_CLASS_DEVICE_ADM) ||
915 (mgmt_class == IB_MGMT_CLASS_BIS))
916 return IB_MGMT_DEVICE_HDR;
917 else if ((mgmt_class >= IB_MGMT_CLASS_VENDOR_RANGE2_START) &&
918 (mgmt_class <= IB_MGMT_CLASS_VENDOR_RANGE2_END))
919 return IB_MGMT_VENDOR_HDR;
920 else
921 return IB_MGMT_MAD_HDR;
922}
923EXPORT_SYMBOL(ib_get_mad_data_offset);
924
925int ib_is_mad_class_rmpp(u8 mgmt_class)
926{
927 if ((mgmt_class == IB_MGMT_CLASS_SUBN_ADM) ||
928 (mgmt_class == IB_MGMT_CLASS_DEVICE_MGMT) ||
929 (mgmt_class == IB_MGMT_CLASS_DEVICE_ADM) ||
930 (mgmt_class == IB_MGMT_CLASS_BIS) ||
931 ((mgmt_class >= IB_MGMT_CLASS_VENDOR_RANGE2_START) &&
932 (mgmt_class <= IB_MGMT_CLASS_VENDOR_RANGE2_END)))
933 return 1;
934 return 0;
935}
936EXPORT_SYMBOL(ib_is_mad_class_rmpp);
937
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800938void *ib_get_rmpp_segment(struct ib_mad_send_buf *send_buf, int seg_num)
939{
940 struct ib_mad_send_wr_private *mad_send_wr;
941 struct list_head *list;
942
943 mad_send_wr = container_of(send_buf, struct ib_mad_send_wr_private,
944 send_buf);
945 list = &mad_send_wr->cur_seg->list;
946
947 if (mad_send_wr->cur_seg->num < seg_num) {
948 list_for_each_entry(mad_send_wr->cur_seg, list, list)
949 if (mad_send_wr->cur_seg->num == seg_num)
950 break;
951 } else if (mad_send_wr->cur_seg->num > seg_num) {
952 list_for_each_entry_reverse(mad_send_wr->cur_seg, list, list)
953 if (mad_send_wr->cur_seg->num == seg_num)
954 break;
955 }
956 return mad_send_wr->cur_seg->data;
957}
958EXPORT_SYMBOL(ib_get_rmpp_segment);
959
960static inline void *ib_get_payload(struct ib_mad_send_wr_private *mad_send_wr)
961{
962 if (mad_send_wr->send_buf.seg_count)
963 return ib_get_rmpp_segment(&mad_send_wr->send_buf,
964 mad_send_wr->seg_num);
965 else
966 return mad_send_wr->send_buf.mad +
967 mad_send_wr->send_buf.hdr_len;
968}
969
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700970void ib_free_send_mad(struct ib_mad_send_buf *send_buf)
971{
972 struct ib_mad_agent_private *mad_agent_priv;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800973 struct ib_mad_send_wr_private *mad_send_wr;
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700974
975 mad_agent_priv = container_of(send_buf->mad_agent,
976 struct ib_mad_agent_private, agent);
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800977 mad_send_wr = container_of(send_buf, struct ib_mad_send_wr_private,
978 send_buf);
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700979
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800980 free_send_rmpp_list(mad_send_wr);
981 kfree(send_buf->mad);
Sean Hefty1b52fa982006-05-12 14:57:52 -0700982 deref_mad_agent(mad_agent_priv);
Hal Rosenstock824c8ae2005-07-27 11:45:23 -0700983}
984EXPORT_SYMBOL(ib_free_send_mad);
985
Hal Rosenstockfa619a72005-07-27 11:45:37 -0700986int ib_send_mad(struct ib_mad_send_wr_private *mad_send_wr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct ib_mad_qp_info *qp_info;
Hal Rosenstockcabe3cb2005-07-27 11:45:33 -0700989 struct list_head *list;
Sean Hefty34816ad2005-10-25 10:51:39 -0700990 struct ib_send_wr *bad_send_wr;
991 struct ib_mad_agent *mad_agent;
992 struct ib_sge *sge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 unsigned long flags;
994 int ret;
995
Hal Rosenstockf8197a42005-07-27 11:45:24 -0700996 /* Set WR ID to find mad_send_wr upon completion */
Hal Rosenstockd760ce82005-07-27 11:45:25 -0700997 qp_info = mad_send_wr->mad_agent_priv->qp_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 mad_send_wr->send_wr.wr_id = (unsigned long)&mad_send_wr->mad_list;
999 mad_send_wr->mad_list.mad_queue = &qp_info->send_queue;
1000
Sean Hefty34816ad2005-10-25 10:51:39 -07001001 mad_agent = mad_send_wr->send_buf.mad_agent;
1002 sge = mad_send_wr->sg_list;
Ralph Campbell15271062006-12-12 14:28:30 -08001003 sge[0].addr = ib_dma_map_single(mad_agent->device,
1004 mad_send_wr->send_buf.mad,
1005 sge[0].length,
1006 DMA_TO_DEVICE);
1007 mad_send_wr->header_mapping = sge[0].addr;
Jack Morgensteinf36e1792006-03-03 21:54:13 -08001008
Ralph Campbell15271062006-12-12 14:28:30 -08001009 sge[1].addr = ib_dma_map_single(mad_agent->device,
1010 ib_get_payload(mad_send_wr),
1011 sge[1].length,
1012 DMA_TO_DEVICE);
1013 mad_send_wr->payload_mapping = sge[1].addr;
Sean Hefty34816ad2005-10-25 10:51:39 -07001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 spin_lock_irqsave(&qp_info->send_queue.lock, flags);
Hal Rosenstockcabe3cb2005-07-27 11:45:33 -07001016 if (qp_info->send_queue.count < qp_info->send_queue.max_active) {
Sean Hefty34816ad2005-10-25 10:51:39 -07001017 ret = ib_post_send(mad_agent->qp, &mad_send_wr->send_wr,
1018 &bad_send_wr);
Hal Rosenstockcabe3cb2005-07-27 11:45:33 -07001019 list = &qp_info->send_queue.list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 ret = 0;
Hal Rosenstockcabe3cb2005-07-27 11:45:33 -07001022 list = &qp_info->overflow_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
Hal Rosenstockcabe3cb2005-07-27 11:45:33 -07001024
1025 if (!ret) {
1026 qp_info->send_queue.count++;
1027 list_add_tail(&mad_send_wr->mad_list.list, list);
1028 }
1029 spin_unlock_irqrestore(&qp_info->send_queue.lock, flags);
Jack Morgensteinf36e1792006-03-03 21:54:13 -08001030 if (ret) {
Ralph Campbell15271062006-12-12 14:28:30 -08001031 ib_dma_unmap_single(mad_agent->device,
1032 mad_send_wr->header_mapping,
1033 sge[0].length, DMA_TO_DEVICE);
1034 ib_dma_unmap_single(mad_agent->device,
1035 mad_send_wr->payload_mapping,
1036 sge[1].length, DMA_TO_DEVICE);
Jack Morgensteinf36e1792006-03-03 21:54:13 -08001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return ret;
1039}
1040
1041/*
1042 * ib_post_send_mad - Posts MAD(s) to the send queue of the QP associated
1043 * with the registered client
1044 */
Sean Hefty34816ad2005-10-25 10:51:39 -07001045int ib_post_send_mad(struct ib_mad_send_buf *send_buf,
1046 struct ib_mad_send_buf **bad_send_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 struct ib_mad_agent_private *mad_agent_priv;
Sean Hefty34816ad2005-10-25 10:51:39 -07001049 struct ib_mad_send_buf *next_send_buf;
1050 struct ib_mad_send_wr_private *mad_send_wr;
1051 unsigned long flags;
1052 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 /* Walk list of send WRs and post each on send list */
Sean Hefty34816ad2005-10-25 10:51:39 -07001055 for (; send_buf; send_buf = next_send_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Sean Hefty34816ad2005-10-25 10:51:39 -07001057 mad_send_wr = container_of(send_buf,
1058 struct ib_mad_send_wr_private,
1059 send_buf);
1060 mad_agent_priv = mad_send_wr->mad_agent_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Sean Hefty34816ad2005-10-25 10:51:39 -07001062 if (!send_buf->mad_agent->send_handler ||
1063 (send_buf->timeout_ms &&
1064 !send_buf->mad_agent->recv_handler)) {
1065 ret = -EINVAL;
1066 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
1068
Hal Rosenstock618a3c02006-03-28 16:40:04 -08001069 if (!ib_is_mad_class_rmpp(((struct ib_mad_hdr *) send_buf->mad)->mgmt_class)) {
1070 if (mad_agent_priv->agent.rmpp_version) {
1071 ret = -EINVAL;
1072 goto error;
1073 }
1074 }
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /*
1077 * Save pointer to next work request to post in case the
1078 * current one completes, and the user modifies the work
1079 * request associated with the completion
1080 */
Sean Hefty34816ad2005-10-25 10:51:39 -07001081 next_send_buf = send_buf->next;
1082 mad_send_wr->send_wr.wr.ud.ah = send_buf->ah;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Sean Hefty34816ad2005-10-25 10:51:39 -07001084 if (((struct ib_mad_hdr *) send_buf->mad)->mgmt_class ==
1085 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) {
1086 ret = handle_outgoing_dr_smp(mad_agent_priv,
1087 mad_send_wr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 if (ret < 0) /* error */
Sean Hefty34816ad2005-10-25 10:51:39 -07001089 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 else if (ret == 1) /* locally consumed */
Sean Hefty34816ad2005-10-25 10:51:39 -07001091 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093
Sean Hefty34816ad2005-10-25 10:51:39 -07001094 mad_send_wr->tid = ((struct ib_mad_hdr *) send_buf->mad)->tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /* Timeout will be updated after send completes */
Sean Hefty34816ad2005-10-25 10:51:39 -07001096 mad_send_wr->timeout = msecs_to_jiffies(send_buf->timeout_ms);
1097 mad_send_wr->retries = send_buf->retries;
1098 /* Reference for work request to QP + response */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 mad_send_wr->refcount = 1 + (mad_send_wr->timeout > 0);
1100 mad_send_wr->status = IB_WC_SUCCESS;
1101
1102 /* Reference MAD agent until send completes */
1103 atomic_inc(&mad_agent_priv->refcount);
1104 spin_lock_irqsave(&mad_agent_priv->lock, flags);
1105 list_add_tail(&mad_send_wr->agent_list,
1106 &mad_agent_priv->send_list);
1107 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
1108
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001109 if (mad_agent_priv->agent.rmpp_version) {
1110 ret = ib_send_rmpp_mad(mad_send_wr);
1111 if (ret >= 0 && ret != IB_RMPP_RESULT_CONSUMED)
1112 ret = ib_send_mad(mad_send_wr);
1113 } else
1114 ret = ib_send_mad(mad_send_wr);
1115 if (ret < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 /* Fail send request */
1117 spin_lock_irqsave(&mad_agent_priv->lock, flags);
1118 list_del(&mad_send_wr->agent_list);
1119 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
1120 atomic_dec(&mad_agent_priv->refcount);
Sean Hefty34816ad2005-10-25 10:51:39 -07001121 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124 return 0;
Sean Hefty34816ad2005-10-25 10:51:39 -07001125error:
1126 if (bad_send_buf)
1127 *bad_send_buf = send_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return ret;
1129}
1130EXPORT_SYMBOL(ib_post_send_mad);
1131
1132/*
1133 * ib_free_recv_mad - Returns data buffers used to receive
1134 * a MAD to the access layer
1135 */
1136void ib_free_recv_mad(struct ib_mad_recv_wc *mad_recv_wc)
1137{
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001138 struct ib_mad_recv_buf *mad_recv_buf, *temp_recv_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 struct ib_mad_private_header *mad_priv_hdr;
1140 struct ib_mad_private *priv;
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001141 struct list_head free_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001143 INIT_LIST_HEAD(&free_list);
1144 list_splice_init(&mad_recv_wc->rmpp_list, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001146 list_for_each_entry_safe(mad_recv_buf, temp_recv_buf,
1147 &free_list, list) {
1148 mad_recv_wc = container_of(mad_recv_buf, struct ib_mad_recv_wc,
1149 recv_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 mad_priv_hdr = container_of(mad_recv_wc,
1151 struct ib_mad_private_header,
1152 recv_wc);
1153 priv = container_of(mad_priv_hdr, struct ib_mad_private,
1154 header);
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001155 kmem_cache_free(ib_mad_cache, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158EXPORT_SYMBOL(ib_free_recv_mad);
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160struct ib_mad_agent *ib_redirect_mad_qp(struct ib_qp *qp,
1161 u8 rmpp_version,
1162 ib_mad_send_handler send_handler,
1163 ib_mad_recv_handler recv_handler,
1164 void *context)
1165{
1166 return ERR_PTR(-EINVAL); /* XXX: for now */
1167}
1168EXPORT_SYMBOL(ib_redirect_mad_qp);
1169
1170int ib_process_mad_wc(struct ib_mad_agent *mad_agent,
1171 struct ib_wc *wc)
1172{
1173 printk(KERN_ERR PFX "ib_process_mad_wc() not implemented yet\n");
1174 return 0;
1175}
1176EXPORT_SYMBOL(ib_process_mad_wc);
1177
1178static int method_in_use(struct ib_mad_mgmt_method_table **method,
1179 struct ib_mad_reg_req *mad_reg_req)
1180{
1181 int i;
1182
1183 for (i = find_first_bit(mad_reg_req->method_mask, IB_MGMT_MAX_METHODS);
1184 i < IB_MGMT_MAX_METHODS;
1185 i = find_next_bit(mad_reg_req->method_mask, IB_MGMT_MAX_METHODS,
1186 1+i)) {
1187 if ((*method)->agent[i]) {
1188 printk(KERN_ERR PFX "Method %d already in use\n", i);
1189 return -EINVAL;
1190 }
1191 }
1192 return 0;
1193}
1194
1195static int allocate_method_table(struct ib_mad_mgmt_method_table **method)
1196{
1197 /* Allocate management method table */
Roland Dreierde6eb662005-11-02 07:23:14 -08001198 *method = kzalloc(sizeof **method, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 if (!*method) {
1200 printk(KERN_ERR PFX "No memory for "
1201 "ib_mad_mgmt_method_table\n");
1202 return -ENOMEM;
1203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 return 0;
1206}
1207
1208/*
1209 * Check to see if there are any methods still in use
1210 */
1211static int check_method_table(struct ib_mad_mgmt_method_table *method)
1212{
1213 int i;
1214
1215 for (i = 0; i < IB_MGMT_MAX_METHODS; i++)
1216 if (method->agent[i])
1217 return 1;
1218 return 0;
1219}
1220
1221/*
1222 * Check to see if there are any method tables for this class still in use
1223 */
1224static int check_class_table(struct ib_mad_mgmt_class_table *class)
1225{
1226 int i;
1227
1228 for (i = 0; i < MAX_MGMT_CLASS; i++)
1229 if (class->method_table[i])
1230 return 1;
1231 return 0;
1232}
1233
1234static int check_vendor_class(struct ib_mad_mgmt_vendor_class *vendor_class)
1235{
1236 int i;
1237
1238 for (i = 0; i < MAX_MGMT_OUI; i++)
1239 if (vendor_class->method_table[i])
1240 return 1;
1241 return 0;
1242}
1243
1244static int find_vendor_oui(struct ib_mad_mgmt_vendor_class *vendor_class,
1245 char *oui)
1246{
1247 int i;
1248
1249 for (i = 0; i < MAX_MGMT_OUI; i++)
Roland Dreier3cd96562006-09-22 15:22:46 -07001250 /* Is there matching OUI for this vendor class ? */
1251 if (!memcmp(vendor_class->oui[i], oui, 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return i;
1253
1254 return -1;
1255}
1256
1257static int check_vendor_table(struct ib_mad_mgmt_vendor_class_table *vendor)
1258{
1259 int i;
1260
1261 for (i = 0; i < MAX_MGMT_VENDOR_RANGE2; i++)
1262 if (vendor->vendor_class[i])
1263 return 1;
1264
1265 return 0;
1266}
1267
1268static void remove_methods_mad_agent(struct ib_mad_mgmt_method_table *method,
1269 struct ib_mad_agent_private *agent)
1270{
1271 int i;
1272
1273 /* Remove any methods for this mad agent */
1274 for (i = 0; i < IB_MGMT_MAX_METHODS; i++) {
1275 if (method->agent[i] == agent) {
1276 method->agent[i] = NULL;
1277 }
1278 }
1279}
1280
1281static int add_nonoui_reg_req(struct ib_mad_reg_req *mad_reg_req,
1282 struct ib_mad_agent_private *agent_priv,
1283 u8 mgmt_class)
1284{
1285 struct ib_mad_port_private *port_priv;
1286 struct ib_mad_mgmt_class_table **class;
1287 struct ib_mad_mgmt_method_table **method;
1288 int i, ret;
1289
1290 port_priv = agent_priv->qp_info->port_priv;
1291 class = &port_priv->version[mad_reg_req->mgmt_class_version].class;
1292 if (!*class) {
1293 /* Allocate management class table for "new" class version */
Roland Dreierde6eb662005-11-02 07:23:14 -08001294 *class = kzalloc(sizeof **class, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (!*class) {
1296 printk(KERN_ERR PFX "No memory for "
1297 "ib_mad_mgmt_class_table\n");
1298 ret = -ENOMEM;
1299 goto error1;
1300 }
Roland Dreierde6eb662005-11-02 07:23:14 -08001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 /* Allocate method table for this management class */
1303 method = &(*class)->method_table[mgmt_class];
1304 if ((ret = allocate_method_table(method)))
1305 goto error2;
1306 } else {
1307 method = &(*class)->method_table[mgmt_class];
1308 if (!*method) {
1309 /* Allocate method table for this management class */
1310 if ((ret = allocate_method_table(method)))
1311 goto error1;
1312 }
1313 }
1314
1315 /* Now, make sure methods are not already in use */
1316 if (method_in_use(method, mad_reg_req))
1317 goto error3;
1318
1319 /* Finally, add in methods being registered */
1320 for (i = find_first_bit(mad_reg_req->method_mask,
1321 IB_MGMT_MAX_METHODS);
1322 i < IB_MGMT_MAX_METHODS;
1323 i = find_next_bit(mad_reg_req->method_mask, IB_MGMT_MAX_METHODS,
1324 1+i)) {
1325 (*method)->agent[i] = agent_priv;
1326 }
1327 return 0;
1328
1329error3:
1330 /* Remove any methods for this mad agent */
1331 remove_methods_mad_agent(*method, agent_priv);
1332 /* Now, check to see if there are any methods in use */
1333 if (!check_method_table(*method)) {
1334 /* If not, release management method table */
1335 kfree(*method);
1336 *method = NULL;
1337 }
1338 ret = -EINVAL;
1339 goto error1;
1340error2:
1341 kfree(*class);
1342 *class = NULL;
1343error1:
1344 return ret;
1345}
1346
1347static int add_oui_reg_req(struct ib_mad_reg_req *mad_reg_req,
1348 struct ib_mad_agent_private *agent_priv)
1349{
1350 struct ib_mad_port_private *port_priv;
1351 struct ib_mad_mgmt_vendor_class_table **vendor_table;
1352 struct ib_mad_mgmt_vendor_class_table *vendor = NULL;
1353 struct ib_mad_mgmt_vendor_class *vendor_class = NULL;
1354 struct ib_mad_mgmt_method_table **method;
1355 int i, ret = -ENOMEM;
1356 u8 vclass;
1357
1358 /* "New" vendor (with OUI) class */
1359 vclass = vendor_class_index(mad_reg_req->mgmt_class);
1360 port_priv = agent_priv->qp_info->port_priv;
1361 vendor_table = &port_priv->version[
1362 mad_reg_req->mgmt_class_version].vendor;
1363 if (!*vendor_table) {
1364 /* Allocate mgmt vendor class table for "new" class version */
Roland Dreierde6eb662005-11-02 07:23:14 -08001365 vendor = kzalloc(sizeof *vendor, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (!vendor) {
1367 printk(KERN_ERR PFX "No memory for "
1368 "ib_mad_mgmt_vendor_class_table\n");
1369 goto error1;
1370 }
Roland Dreierde6eb662005-11-02 07:23:14 -08001371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 *vendor_table = vendor;
1373 }
1374 if (!(*vendor_table)->vendor_class[vclass]) {
1375 /* Allocate table for this management vendor class */
Roland Dreierde6eb662005-11-02 07:23:14 -08001376 vendor_class = kzalloc(sizeof *vendor_class, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (!vendor_class) {
1378 printk(KERN_ERR PFX "No memory for "
1379 "ib_mad_mgmt_vendor_class\n");
1380 goto error2;
1381 }
Roland Dreierde6eb662005-11-02 07:23:14 -08001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 (*vendor_table)->vendor_class[vclass] = vendor_class;
1384 }
1385 for (i = 0; i < MAX_MGMT_OUI; i++) {
1386 /* Is there matching OUI for this vendor class ? */
1387 if (!memcmp((*vendor_table)->vendor_class[vclass]->oui[i],
1388 mad_reg_req->oui, 3)) {
1389 method = &(*vendor_table)->vendor_class[
1390 vclass]->method_table[i];
1391 BUG_ON(!*method);
1392 goto check_in_use;
1393 }
1394 }
1395 for (i = 0; i < MAX_MGMT_OUI; i++) {
1396 /* OUI slot available ? */
1397 if (!is_vendor_oui((*vendor_table)->vendor_class[
1398 vclass]->oui[i])) {
1399 method = &(*vendor_table)->vendor_class[
1400 vclass]->method_table[i];
1401 BUG_ON(*method);
1402 /* Allocate method table for this OUI */
1403 if ((ret = allocate_method_table(method)))
1404 goto error3;
1405 memcpy((*vendor_table)->vendor_class[vclass]->oui[i],
1406 mad_reg_req->oui, 3);
1407 goto check_in_use;
1408 }
1409 }
1410 printk(KERN_ERR PFX "All OUI slots in use\n");
1411 goto error3;
1412
1413check_in_use:
1414 /* Now, make sure methods are not already in use */
1415 if (method_in_use(method, mad_reg_req))
1416 goto error4;
1417
1418 /* Finally, add in methods being registered */
1419 for (i = find_first_bit(mad_reg_req->method_mask,
1420 IB_MGMT_MAX_METHODS);
1421 i < IB_MGMT_MAX_METHODS;
1422 i = find_next_bit(mad_reg_req->method_mask, IB_MGMT_MAX_METHODS,
1423 1+i)) {
1424 (*method)->agent[i] = agent_priv;
1425 }
1426 return 0;
1427
1428error4:
1429 /* Remove any methods for this mad agent */
1430 remove_methods_mad_agent(*method, agent_priv);
1431 /* Now, check to see if there are any methods in use */
1432 if (!check_method_table(*method)) {
1433 /* If not, release management method table */
1434 kfree(*method);
1435 *method = NULL;
1436 }
1437 ret = -EINVAL;
1438error3:
1439 if (vendor_class) {
1440 (*vendor_table)->vendor_class[vclass] = NULL;
1441 kfree(vendor_class);
1442 }
1443error2:
1444 if (vendor) {
1445 *vendor_table = NULL;
1446 kfree(vendor);
1447 }
1448error1:
1449 return ret;
1450}
1451
1452static void remove_mad_reg_req(struct ib_mad_agent_private *agent_priv)
1453{
1454 struct ib_mad_port_private *port_priv;
1455 struct ib_mad_mgmt_class_table *class;
1456 struct ib_mad_mgmt_method_table *method;
1457 struct ib_mad_mgmt_vendor_class_table *vendor;
1458 struct ib_mad_mgmt_vendor_class *vendor_class;
1459 int index;
1460 u8 mgmt_class;
1461
1462 /*
1463 * Was MAD registration request supplied
1464 * with original registration ?
1465 */
1466 if (!agent_priv->reg_req) {
1467 goto out;
1468 }
1469
1470 port_priv = agent_priv->qp_info->port_priv;
1471 mgmt_class = convert_mgmt_class(agent_priv->reg_req->mgmt_class);
1472 class = port_priv->version[
1473 agent_priv->reg_req->mgmt_class_version].class;
1474 if (!class)
1475 goto vendor_check;
1476
1477 method = class->method_table[mgmt_class];
1478 if (method) {
1479 /* Remove any methods for this mad agent */
1480 remove_methods_mad_agent(method, agent_priv);
1481 /* Now, check to see if there are any methods still in use */
1482 if (!check_method_table(method)) {
1483 /* If not, release management method table */
1484 kfree(method);
1485 class->method_table[mgmt_class] = NULL;
1486 /* Any management classes left ? */
1487 if (!check_class_table(class)) {
1488 /* If not, release management class table */
1489 kfree(class);
1490 port_priv->version[
1491 agent_priv->reg_req->
1492 mgmt_class_version].class = NULL;
1493 }
1494 }
1495 }
1496
1497vendor_check:
1498 if (!is_vendor_class(mgmt_class))
1499 goto out;
1500
1501 /* normalize mgmt_class to vendor range 2 */
1502 mgmt_class = vendor_class_index(agent_priv->reg_req->mgmt_class);
1503 vendor = port_priv->version[
1504 agent_priv->reg_req->mgmt_class_version].vendor;
1505
1506 if (!vendor)
1507 goto out;
1508
1509 vendor_class = vendor->vendor_class[mgmt_class];
1510 if (vendor_class) {
1511 index = find_vendor_oui(vendor_class, agent_priv->reg_req->oui);
1512 if (index < 0)
1513 goto out;
1514 method = vendor_class->method_table[index];
1515 if (method) {
1516 /* Remove any methods for this mad agent */
1517 remove_methods_mad_agent(method, agent_priv);
1518 /*
1519 * Now, check to see if there are
1520 * any methods still in use
1521 */
1522 if (!check_method_table(method)) {
1523 /* If not, release management method table */
1524 kfree(method);
1525 vendor_class->method_table[index] = NULL;
1526 memset(vendor_class->oui[index], 0, 3);
1527 /* Any OUIs left ? */
1528 if (!check_vendor_class(vendor_class)) {
1529 /* If not, release vendor class table */
1530 kfree(vendor_class);
1531 vendor->vendor_class[mgmt_class] = NULL;
1532 /* Any other vendor classes left ? */
1533 if (!check_vendor_table(vendor)) {
1534 kfree(vendor);
1535 port_priv->version[
1536 agent_priv->reg_req->
1537 mgmt_class_version].
1538 vendor = NULL;
1539 }
1540 }
1541 }
1542 }
1543 }
1544
1545out:
1546 return;
1547}
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549static struct ib_mad_agent_private *
1550find_mad_agent(struct ib_mad_port_private *port_priv,
Hal Rosenstock4a0754f2005-07-27 11:45:24 -07001551 struct ib_mad *mad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
1553 struct ib_mad_agent_private *mad_agent = NULL;
1554 unsigned long flags;
1555
1556 spin_lock_irqsave(&port_priv->reg_lock, flags);
Sean Hefty2527e682006-07-20 11:25:50 +03001557 if (ib_response_mad(mad)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 u32 hi_tid;
1559 struct ib_mad_agent_private *entry;
1560
1561 /*
1562 * Routing is based on high 32 bits of transaction ID
1563 * of MAD.
1564 */
1565 hi_tid = be64_to_cpu(mad->mad_hdr.tid) >> 32;
Sean Hefty34816ad2005-10-25 10:51:39 -07001566 list_for_each_entry(entry, &port_priv->agent_list, agent_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (entry->agent.hi_tid == hi_tid) {
1568 mad_agent = entry;
1569 break;
1570 }
1571 }
1572 } else {
1573 struct ib_mad_mgmt_class_table *class;
1574 struct ib_mad_mgmt_method_table *method;
1575 struct ib_mad_mgmt_vendor_class_table *vendor;
1576 struct ib_mad_mgmt_vendor_class *vendor_class;
1577 struct ib_vendor_mad *vendor_mad;
1578 int index;
1579
1580 /*
1581 * Routing is based on version, class, and method
1582 * For "newer" vendor MADs, also based on OUI
1583 */
1584 if (mad->mad_hdr.class_version >= MAX_MGMT_VERSION)
1585 goto out;
1586 if (!is_vendor_class(mad->mad_hdr.mgmt_class)) {
1587 class = port_priv->version[
1588 mad->mad_hdr.class_version].class;
1589 if (!class)
1590 goto out;
1591 method = class->method_table[convert_mgmt_class(
1592 mad->mad_hdr.mgmt_class)];
1593 if (method)
1594 mad_agent = method->agent[mad->mad_hdr.method &
1595 ~IB_MGMT_METHOD_RESP];
1596 } else {
1597 vendor = port_priv->version[
1598 mad->mad_hdr.class_version].vendor;
1599 if (!vendor)
1600 goto out;
1601 vendor_class = vendor->vendor_class[vendor_class_index(
1602 mad->mad_hdr.mgmt_class)];
1603 if (!vendor_class)
1604 goto out;
1605 /* Find matching OUI */
1606 vendor_mad = (struct ib_vendor_mad *)mad;
1607 index = find_vendor_oui(vendor_class, vendor_mad->oui);
1608 if (index == -1)
1609 goto out;
1610 method = vendor_class->method_table[index];
1611 if (method) {
1612 mad_agent = method->agent[mad->mad_hdr.method &
1613 ~IB_MGMT_METHOD_RESP];
1614 }
1615 }
1616 }
1617
1618 if (mad_agent) {
1619 if (mad_agent->agent.recv_handler)
1620 atomic_inc(&mad_agent->refcount);
1621 else {
1622 printk(KERN_NOTICE PFX "No receive handler for client "
1623 "%p on port %d\n",
1624 &mad_agent->agent, port_priv->port_num);
1625 mad_agent = NULL;
1626 }
1627 }
1628out:
1629 spin_unlock_irqrestore(&port_priv->reg_lock, flags);
1630
1631 return mad_agent;
1632}
1633
1634static int validate_mad(struct ib_mad *mad, u32 qp_num)
1635{
1636 int valid = 0;
1637
1638 /* Make sure MAD base version is understood */
1639 if (mad->mad_hdr.base_version != IB_MGMT_BASE_VERSION) {
1640 printk(KERN_ERR PFX "MAD received with unsupported base "
1641 "version %d\n", mad->mad_hdr.base_version);
1642 goto out;
1643 }
1644
1645 /* Filter SMI packets sent to other than QP0 */
1646 if ((mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED) ||
1647 (mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE)) {
1648 if (qp_num == 0)
1649 valid = 1;
1650 } else {
1651 /* Filter GSI packets sent to QP0 */
1652 if (qp_num != 0)
1653 valid = 1;
1654 }
1655
1656out:
1657 return valid;
1658}
1659
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001660static int is_data_mad(struct ib_mad_agent_private *mad_agent_priv,
1661 struct ib_mad_hdr *mad_hdr)
1662{
1663 struct ib_rmpp_mad *rmpp_mad;
1664
1665 rmpp_mad = (struct ib_rmpp_mad *)mad_hdr;
1666 return !mad_agent_priv->agent.rmpp_version ||
1667 !(ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) &
1668 IB_MGMT_RMPP_FLAG_ACTIVE) ||
1669 (rmpp_mad->rmpp_hdr.rmpp_type == IB_MGMT_RMPP_TYPE_DATA);
1670}
1671
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001672static inline int rcv_has_same_class(struct ib_mad_send_wr_private *wr,
1673 struct ib_mad_recv_wc *rwc)
1674{
1675 return ((struct ib_mad *)(wr->send_buf.mad))->mad_hdr.mgmt_class ==
1676 rwc->recv_buf.mad->mad_hdr.mgmt_class;
1677}
1678
Jack Morgenstein9874e742006-06-17 20:37:34 -07001679static inline int rcv_has_same_gid(struct ib_mad_agent_private *mad_agent_priv,
1680 struct ib_mad_send_wr_private *wr,
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001681 struct ib_mad_recv_wc *rwc )
1682{
1683 struct ib_ah_attr attr;
1684 u8 send_resp, rcv_resp;
Jack Morgenstein9874e742006-06-17 20:37:34 -07001685 union ib_gid sgid;
1686 struct ib_device *device = mad_agent_priv->agent.device;
1687 u8 port_num = mad_agent_priv->agent.port_num;
1688 u8 lmc;
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001689
1690 send_resp = ((struct ib_mad *)(wr->send_buf.mad))->
1691 mad_hdr.method & IB_MGMT_METHOD_RESP;
1692 rcv_resp = rwc->recv_buf.mad->mad_hdr.method & IB_MGMT_METHOD_RESP;
1693
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001694 if (send_resp == rcv_resp)
1695 /* both requests, or both responses. GIDs different */
1696 return 0;
1697
1698 if (ib_query_ah(wr->send_buf.ah, &attr))
1699 /* Assume not equal, to avoid false positives. */
1700 return 0;
1701
Jack Morgenstein9874e742006-06-17 20:37:34 -07001702 if (!!(attr.ah_flags & IB_AH_GRH) !=
1703 !!(rwc->wc->wc_flags & IB_WC_GRH))
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001704 /* one has GID, other does not. Assume different */
1705 return 0;
Jack Morgenstein9874e742006-06-17 20:37:34 -07001706
1707 if (!send_resp && rcv_resp) {
1708 /* is request/response. */
1709 if (!(attr.ah_flags & IB_AH_GRH)) {
1710 if (ib_get_cached_lmc(device, port_num, &lmc))
1711 return 0;
1712 return (!lmc || !((attr.src_path_bits ^
1713 rwc->wc->dlid_path_bits) &
1714 ((1 << lmc) - 1)));
1715 } else {
1716 if (ib_get_cached_gid(device, port_num,
1717 attr.grh.sgid_index, &sgid))
1718 return 0;
1719 return !memcmp(sgid.raw, rwc->recv_buf.grh->dgid.raw,
1720 16);
1721 }
1722 }
1723
1724 if (!(attr.ah_flags & IB_AH_GRH))
1725 return attr.dlid == rwc->wc->slid;
1726 else
1727 return !memcmp(attr.grh.dgid.raw, rwc->recv_buf.grh->sgid.raw,
1728 16);
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001729}
Jack Morgenstein9874e742006-06-17 20:37:34 -07001730
1731static inline int is_direct(u8 class)
1732{
1733 return (class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE);
1734}
1735
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001736struct ib_mad_send_wr_private*
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001737ib_find_send_mad(struct ib_mad_agent_private *mad_agent_priv,
Jack Morgenstein9874e742006-06-17 20:37:34 -07001738 struct ib_mad_recv_wc *wc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Jack Morgenstein9874e742006-06-17 20:37:34 -07001740 struct ib_mad_send_wr_private *wr;
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001741 struct ib_mad *mad;
1742
Jack Morgenstein9874e742006-06-17 20:37:34 -07001743 mad = (struct ib_mad *)wc->recv_buf.mad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Jack Morgenstein9874e742006-06-17 20:37:34 -07001745 list_for_each_entry(wr, &mad_agent_priv->wait_list, agent_list) {
1746 if ((wr->tid == mad->mad_hdr.tid) &&
1747 rcv_has_same_class(wr, wc) &&
1748 /*
1749 * Don't check GID for direct routed MADs.
1750 * These might have permissive LIDs.
1751 */
1752 (is_direct(wc->recv_buf.mad->mad_hdr.mgmt_class) ||
1753 rcv_has_same_gid(mad_agent_priv, wr, wc)))
Roland Dreier39798692006-11-13 09:38:07 -08001754 return (wr->status == IB_WC_SUCCESS) ? wr : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 }
1756
1757 /*
1758 * It's possible to receive the response before we've
1759 * been notified that the send has completed
1760 */
Jack Morgenstein9874e742006-06-17 20:37:34 -07001761 list_for_each_entry(wr, &mad_agent_priv->send_list, agent_list) {
1762 if (is_data_mad(mad_agent_priv, wr->send_buf.mad) &&
1763 wr->tid == mad->mad_hdr.tid &&
1764 wr->timeout &&
1765 rcv_has_same_class(wr, wc) &&
1766 /*
1767 * Don't check GID for direct routed MADs.
1768 * These might have permissive LIDs.
1769 */
1770 (is_direct(wc->recv_buf.mad->mad_hdr.mgmt_class) ||
1771 rcv_has_same_gid(mad_agent_priv, wr, wc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 /* Verify request has not been canceled */
Jack Morgenstein9874e742006-06-17 20:37:34 -07001773 return (wr->status == IB_WC_SUCCESS) ? wr : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775 return NULL;
1776}
1777
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001778void ib_mark_mad_done(struct ib_mad_send_wr_private *mad_send_wr)
Hal Rosenstock6a0c4352005-07-27 11:45:26 -07001779{
1780 mad_send_wr->timeout = 0;
Akinobu Mita179e0912006-06-26 00:24:41 -07001781 if (mad_send_wr->refcount == 1)
1782 list_move_tail(&mad_send_wr->agent_list,
Hal Rosenstock6a0c4352005-07-27 11:45:26 -07001783 &mad_send_wr->mad_agent_priv->done_list);
Hal Rosenstock6a0c4352005-07-27 11:45:26 -07001784}
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786static void ib_mad_complete_recv(struct ib_mad_agent_private *mad_agent_priv,
Hal Rosenstock4a0754f2005-07-27 11:45:24 -07001787 struct ib_mad_recv_wc *mad_recv_wc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
1789 struct ib_mad_send_wr_private *mad_send_wr;
1790 struct ib_mad_send_wc mad_send_wc;
1791 unsigned long flags;
1792
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001793 INIT_LIST_HEAD(&mad_recv_wc->rmpp_list);
1794 list_add(&mad_recv_wc->recv_buf.list, &mad_recv_wc->rmpp_list);
1795 if (mad_agent_priv->agent.rmpp_version) {
1796 mad_recv_wc = ib_process_rmpp_recv_wc(mad_agent_priv,
1797 mad_recv_wc);
1798 if (!mad_recv_wc) {
Sean Hefty1b52fa982006-05-12 14:57:52 -07001799 deref_mad_agent(mad_agent_priv);
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001800 return;
1801 }
1802 }
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 /* Complete corresponding request */
Sean Hefty2527e682006-07-20 11:25:50 +03001805 if (ib_response_mad(mad_recv_wc->recv_buf.mad)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 spin_lock_irqsave(&mad_agent_priv->lock, flags);
Jack Morgensteinfa9656b2006-03-28 16:39:07 -08001807 mad_send_wr = ib_find_send_mad(mad_agent_priv, mad_recv_wc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (!mad_send_wr) {
1809 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
Hal Rosenstock4a0754f2005-07-27 11:45:24 -07001810 ib_free_recv_mad(mad_recv_wc);
Sean Hefty1b52fa982006-05-12 14:57:52 -07001811 deref_mad_agent(mad_agent_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return;
1813 }
Hal Rosenstockfa619a72005-07-27 11:45:37 -07001814 ib_mark_mad_done(mad_send_wr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
1816
1817 /* Defined behavior is to complete response before request */
Sean Hefty34816ad2005-10-25 10:51:39 -07001818 mad_recv_wc->wc->wr_id = (unsigned long) &mad_send_wr->send_buf;
Hal Rosenstock4a0754f2005-07-27 11:45:24 -07001819 mad_agent_priv->agent.recv_handler(&mad_agent_priv->agent,
1820 mad_recv_wc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 atomic_dec(&mad_agent_priv->refcount);
1822
1823 mad_send_wc.status = IB_WC_SUCCESS;
1824 mad_send_wc.vendor_err = 0;
Sean Hefty34816ad2005-10-25 10:51:39 -07001825 mad_send_wc.send_buf = &mad_send_wr->send_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 ib_mad_complete_send_wr(mad_send_wr, &mad_send_wc);
1827 } else {
Hal Rosenstock4a0754f2005-07-27 11:45:24 -07001828 mad_agent_priv->agent.recv_handler(&mad_agent_priv->agent,
1829 mad_recv_wc);
Sean Hefty1b52fa982006-05-12 14:57:52 -07001830 deref_mad_agent(mad_agent_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832}
1833
1834static void ib_mad_recv_done_handler(struct ib_mad_port_private *port_priv,
1835 struct ib_wc *wc)
1836{
1837 struct ib_mad_qp_info *qp_info;
1838 struct ib_mad_private_header *mad_priv_hdr;
1839 struct ib_mad_private *recv, *response;
1840 struct ib_mad_list_head *mad_list;
1841 struct ib_mad_agent_private *mad_agent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 response = kmem_cache_alloc(ib_mad_cache, GFP_KERNEL);
1844 if (!response)
1845 printk(KERN_ERR PFX "ib_mad_recv_done_handler no memory "
1846 "for response buffer\n");
1847
1848 mad_list = (struct ib_mad_list_head *)(unsigned long)wc->wr_id;
1849 qp_info = mad_list->mad_queue->qp_info;
1850 dequeue_mad(mad_list);
1851
1852 mad_priv_hdr = container_of(mad_list, struct ib_mad_private_header,
1853 mad_list);
1854 recv = container_of(mad_priv_hdr, struct ib_mad_private, header);
Ralph Campbell15271062006-12-12 14:28:30 -08001855 ib_dma_unmap_single(port_priv->device,
1856 recv->header.mapping,
1857 sizeof(struct ib_mad_private) -
1858 sizeof(struct ib_mad_private_header),
1859 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 /* Setup MAD receive work completion from "normal" work completion */
Sean Hefty24239af2005-04-16 15:26:08 -07001862 recv->header.wc = *wc;
1863 recv->header.recv_wc.wc = &recv->header.wc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 recv->header.recv_wc.mad_len = sizeof(struct ib_mad);
1865 recv->header.recv_wc.recv_buf.mad = &recv->mad.mad;
1866 recv->header.recv_wc.recv_buf.grh = &recv->grh;
1867
1868 if (atomic_read(&qp_info->snoop_count))
1869 snoop_recv(qp_info, &recv->header.recv_wc, IB_MAD_SNOOP_RECVS);
1870
1871 /* Validate MAD */
1872 if (!validate_mad(&recv->mad.mad, qp_info->qp->qp_num))
1873 goto out;
1874
1875 if (recv->mad.mad.mad_hdr.mgmt_class ==
1876 IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) {
Hal Rosenstockde493d42007-04-02 11:24:07 -04001877 if (smi_handle_dr_smp_recv(&recv->mad.smp,
1878 port_priv->device->node_type,
1879 port_priv->port_num,
1880 port_priv->device->phys_port_cnt) ==
1881 IB_SMI_DISCARD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 goto out;
Hal Rosenstockde493d42007-04-02 11:24:07 -04001883
1884 if (smi_check_forward_dr_smp(&recv->mad.smp) == IB_SMI_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 goto local;
Hal Rosenstockde493d42007-04-02 11:24:07 -04001886
1887 if (smi_handle_dr_smp_send(&recv->mad.smp,
1888 port_priv->device->node_type,
1889 port_priv->port_num) == IB_SMI_DISCARD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 goto out;
Hal Rosenstockde493d42007-04-02 11:24:07 -04001891
1892 if (smi_check_local_smp(&recv->mad.smp, port_priv->device) == IB_SMI_DISCARD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 goto out;
1894 }
1895
1896local:
1897 /* Give driver "right of first refusal" on incoming MAD */
1898 if (port_priv->device->process_mad) {
1899 int ret;
1900
1901 if (!response) {
1902 printk(KERN_ERR PFX "No memory for response MAD\n");
1903 /*
1904 * Is it better to assume that
1905 * it wouldn't be processed ?
1906 */
1907 goto out;
1908 }
1909
1910 ret = port_priv->device->process_mad(port_priv->device, 0,
1911 port_priv->port_num,
1912 wc, &recv->grh,
1913 &recv->mad.mad,
1914 &response->mad.mad);
1915 if (ret & IB_MAD_RESULT_SUCCESS) {
1916 if (ret & IB_MAD_RESULT_CONSUMED)
1917 goto out;
1918 if (ret & IB_MAD_RESULT_REPLY) {
Sean Hefty34816ad2005-10-25 10:51:39 -07001919 agent_send_response(&response->mad.mad,
1920 &recv->grh, wc,
1921 port_priv->device,
1922 port_priv->port_num,
1923 qp_info->qp->qp_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 goto out;
1925 }
1926 }
1927 }
1928
Hal Rosenstock4a0754f2005-07-27 11:45:24 -07001929 mad_agent = find_mad_agent(port_priv, &recv->mad.mad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (mad_agent) {
Hal Rosenstock4a0754f2005-07-27 11:45:24 -07001931 ib_mad_complete_recv(mad_agent, &recv->header.recv_wc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 /*
1933 * recv is freed up in error cases in ib_mad_complete_recv
1934 * or via recv_handler in ib_mad_complete_recv()
1935 */
1936 recv = NULL;
1937 }
1938
1939out:
1940 /* Post another receive request for this QP */
1941 if (response) {
1942 ib_mad_post_receive_mads(qp_info, response);
1943 if (recv)
1944 kmem_cache_free(ib_mad_cache, recv);
1945 } else
1946 ib_mad_post_receive_mads(qp_info, recv);
1947}
1948
1949static void adjust_timeout(struct ib_mad_agent_private *mad_agent_priv)
1950{
1951 struct ib_mad_send_wr_private *mad_send_wr;
1952 unsigned long delay;
1953
1954 if (list_empty(&mad_agent_priv->wait_list)) {
1955 cancel_delayed_work(&mad_agent_priv->timed_work);
1956 } else {
1957 mad_send_wr = list_entry(mad_agent_priv->wait_list.next,
1958 struct ib_mad_send_wr_private,
1959 agent_list);
1960
1961 if (time_after(mad_agent_priv->timeout,
1962 mad_send_wr->timeout)) {
1963 mad_agent_priv->timeout = mad_send_wr->timeout;
1964 cancel_delayed_work(&mad_agent_priv->timed_work);
1965 delay = mad_send_wr->timeout - jiffies;
1966 if ((long)delay <= 0)
1967 delay = 1;
1968 queue_delayed_work(mad_agent_priv->qp_info->
1969 port_priv->wq,
1970 &mad_agent_priv->timed_work, delay);
1971 }
1972 }
1973}
1974
Hal Rosenstockd760ce82005-07-27 11:45:25 -07001975static void wait_for_response(struct ib_mad_send_wr_private *mad_send_wr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
Hal Rosenstockd760ce82005-07-27 11:45:25 -07001977 struct ib_mad_agent_private *mad_agent_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 struct ib_mad_send_wr_private *temp_mad_send_wr;
1979 struct list_head *list_item;
1980 unsigned long delay;
1981
Hal Rosenstockd760ce82005-07-27 11:45:25 -07001982 mad_agent_priv = mad_send_wr->mad_agent_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 list_del(&mad_send_wr->agent_list);
1984
1985 delay = mad_send_wr->timeout;
1986 mad_send_wr->timeout += jiffies;
1987
Hal Rosenstock29bb33d2005-07-27 11:45:32 -07001988 if (delay) {
1989 list_for_each_prev(list_item, &mad_agent_priv->wait_list) {
1990 temp_mad_send_wr = list_entry(list_item,
1991 struct ib_mad_send_wr_private,
1992 agent_list);
1993 if (time_after(mad_send_wr->timeout,
1994 temp_mad_send_wr->timeout))
1995 break;
1996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
Hal Rosenstock29bb33d2005-07-27 11:45:32 -07001998 else
1999 list_item = &mad_agent_priv->wait_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 list_add(&mad_send_wr->agent_list, list_item);
2001
2002 /* Reschedule a work item if we have a shorter timeout */
2003 if (mad_agent_priv->wait_list.next == &mad_send_wr->agent_list) {
2004 cancel_delayed_work(&mad_agent_priv->timed_work);
2005 queue_delayed_work(mad_agent_priv->qp_info->port_priv->wq,
2006 &mad_agent_priv->timed_work, delay);
2007 }
2008}
2009
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002010void ib_reset_mad_timeout(struct ib_mad_send_wr_private *mad_send_wr,
2011 int timeout_ms)
2012{
2013 mad_send_wr->timeout = msecs_to_jiffies(timeout_ms);
2014 wait_for_response(mad_send_wr);
2015}
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017/*
2018 * Process a send work completion
2019 */
Hal Rosenstockfa619a72005-07-27 11:45:37 -07002020void ib_mad_complete_send_wr(struct ib_mad_send_wr_private *mad_send_wr,
2021 struct ib_mad_send_wc *mad_send_wc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
2023 struct ib_mad_agent_private *mad_agent_priv;
2024 unsigned long flags;
Hal Rosenstockfa619a72005-07-27 11:45:37 -07002025 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Hal Rosenstockd760ce82005-07-27 11:45:25 -07002027 mad_agent_priv = mad_send_wr->mad_agent_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 spin_lock_irqsave(&mad_agent_priv->lock, flags);
Hal Rosenstockfa619a72005-07-27 11:45:37 -07002029 if (mad_agent_priv->agent.rmpp_version) {
2030 ret = ib_process_rmpp_send_wc(mad_send_wr, mad_send_wc);
2031 if (ret == IB_RMPP_RESULT_CONSUMED)
2032 goto done;
2033 } else
2034 ret = IB_RMPP_RESULT_UNHANDLED;
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (mad_send_wc->status != IB_WC_SUCCESS &&
2037 mad_send_wr->status == IB_WC_SUCCESS) {
2038 mad_send_wr->status = mad_send_wc->status;
2039 mad_send_wr->refcount -= (mad_send_wr->timeout > 0);
2040 }
2041
2042 if (--mad_send_wr->refcount > 0) {
2043 if (mad_send_wr->refcount == 1 && mad_send_wr->timeout &&
2044 mad_send_wr->status == IB_WC_SUCCESS) {
Hal Rosenstockd760ce82005-07-27 11:45:25 -07002045 wait_for_response(mad_send_wr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Hal Rosenstockfa619a72005-07-27 11:45:37 -07002047 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 }
2049
2050 /* Remove send from MAD agent and notify client of completion */
2051 list_del(&mad_send_wr->agent_list);
2052 adjust_timeout(mad_agent_priv);
2053 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
2054
2055 if (mad_send_wr->status != IB_WC_SUCCESS )
2056 mad_send_wc->status = mad_send_wr->status;
Sean Hefty34816ad2005-10-25 10:51:39 -07002057 if (ret == IB_RMPP_RESULT_INTERNAL)
2058 ib_rmpp_send_handler(mad_send_wc);
2059 else
Hal Rosenstockfa619a72005-07-27 11:45:37 -07002060 mad_agent_priv->agent.send_handler(&mad_agent_priv->agent,
2061 mad_send_wc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 /* Release reference on agent taken when sending */
Sean Hefty1b52fa982006-05-12 14:57:52 -07002064 deref_mad_agent(mad_agent_priv);
Hal Rosenstockfa619a72005-07-27 11:45:37 -07002065 return;
2066done:
2067 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
2070static void ib_mad_send_done_handler(struct ib_mad_port_private *port_priv,
2071 struct ib_wc *wc)
2072{
2073 struct ib_mad_send_wr_private *mad_send_wr, *queued_send_wr;
2074 struct ib_mad_list_head *mad_list;
2075 struct ib_mad_qp_info *qp_info;
2076 struct ib_mad_queue *send_queue;
2077 struct ib_send_wr *bad_send_wr;
Sean Hefty34816ad2005-10-25 10:51:39 -07002078 struct ib_mad_send_wc mad_send_wc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 unsigned long flags;
2080 int ret;
2081
2082 mad_list = (struct ib_mad_list_head *)(unsigned long)wc->wr_id;
2083 mad_send_wr = container_of(mad_list, struct ib_mad_send_wr_private,
2084 mad_list);
2085 send_queue = mad_list->mad_queue;
2086 qp_info = send_queue->qp_info;
2087
2088retry:
Ralph Campbell15271062006-12-12 14:28:30 -08002089 ib_dma_unmap_single(mad_send_wr->send_buf.mad_agent->device,
2090 mad_send_wr->header_mapping,
2091 mad_send_wr->sg_list[0].length, DMA_TO_DEVICE);
2092 ib_dma_unmap_single(mad_send_wr->send_buf.mad_agent->device,
2093 mad_send_wr->payload_mapping,
2094 mad_send_wr->sg_list[1].length, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 queued_send_wr = NULL;
2096 spin_lock_irqsave(&send_queue->lock, flags);
2097 list_del(&mad_list->list);
2098
2099 /* Move queued send to the send queue */
2100 if (send_queue->count-- > send_queue->max_active) {
2101 mad_list = container_of(qp_info->overflow_list.next,
2102 struct ib_mad_list_head, list);
2103 queued_send_wr = container_of(mad_list,
2104 struct ib_mad_send_wr_private,
2105 mad_list);
Akinobu Mita179e0912006-06-26 00:24:41 -07002106 list_move_tail(&mad_list->list, &send_queue->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
2108 spin_unlock_irqrestore(&send_queue->lock, flags);
2109
Sean Hefty34816ad2005-10-25 10:51:39 -07002110 mad_send_wc.send_buf = &mad_send_wr->send_buf;
2111 mad_send_wc.status = wc->status;
2112 mad_send_wc.vendor_err = wc->vendor_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 if (atomic_read(&qp_info->snoop_count))
Sean Hefty34816ad2005-10-25 10:51:39 -07002114 snoop_send(qp_info, &mad_send_wr->send_buf, &mad_send_wc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 IB_MAD_SNOOP_SEND_COMPLETIONS);
Sean Hefty34816ad2005-10-25 10:51:39 -07002116 ib_mad_complete_send_wr(mad_send_wr, &mad_send_wc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 if (queued_send_wr) {
2119 ret = ib_post_send(qp_info->qp, &queued_send_wr->send_wr,
Sean Hefty34816ad2005-10-25 10:51:39 -07002120 &bad_send_wr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 if (ret) {
2122 printk(KERN_ERR PFX "ib_post_send failed: %d\n", ret);
2123 mad_send_wr = queued_send_wr;
2124 wc->status = IB_WC_LOC_QP_OP_ERR;
2125 goto retry;
2126 }
2127 }
2128}
2129
2130static void mark_sends_for_retry(struct ib_mad_qp_info *qp_info)
2131{
2132 struct ib_mad_send_wr_private *mad_send_wr;
2133 struct ib_mad_list_head *mad_list;
2134 unsigned long flags;
2135
2136 spin_lock_irqsave(&qp_info->send_queue.lock, flags);
2137 list_for_each_entry(mad_list, &qp_info->send_queue.list, list) {
2138 mad_send_wr = container_of(mad_list,
2139 struct ib_mad_send_wr_private,
2140 mad_list);
2141 mad_send_wr->retry = 1;
2142 }
2143 spin_unlock_irqrestore(&qp_info->send_queue.lock, flags);
2144}
2145
2146static void mad_error_handler(struct ib_mad_port_private *port_priv,
2147 struct ib_wc *wc)
2148{
2149 struct ib_mad_list_head *mad_list;
2150 struct ib_mad_qp_info *qp_info;
2151 struct ib_mad_send_wr_private *mad_send_wr;
2152 int ret;
2153
2154 /* Determine if failure was a send or receive */
2155 mad_list = (struct ib_mad_list_head *)(unsigned long)wc->wr_id;
2156 qp_info = mad_list->mad_queue->qp_info;
2157 if (mad_list->mad_queue == &qp_info->recv_queue)
2158 /*
2159 * Receive errors indicate that the QP has entered the error
2160 * state - error handling/shutdown code will cleanup
2161 */
2162 return;
2163
2164 /*
2165 * Send errors will transition the QP to SQE - move
2166 * QP to RTS and repost flushed work requests
2167 */
2168 mad_send_wr = container_of(mad_list, struct ib_mad_send_wr_private,
2169 mad_list);
2170 if (wc->status == IB_WC_WR_FLUSH_ERR) {
2171 if (mad_send_wr->retry) {
2172 /* Repost send */
2173 struct ib_send_wr *bad_send_wr;
2174
2175 mad_send_wr->retry = 0;
2176 ret = ib_post_send(qp_info->qp, &mad_send_wr->send_wr,
2177 &bad_send_wr);
2178 if (ret)
2179 ib_mad_send_done_handler(port_priv, wc);
2180 } else
2181 ib_mad_send_done_handler(port_priv, wc);
2182 } else {
2183 struct ib_qp_attr *attr;
2184
2185 /* Transition QP to RTS and fail offending send */
2186 attr = kmalloc(sizeof *attr, GFP_KERNEL);
2187 if (attr) {
2188 attr->qp_state = IB_QPS_RTS;
2189 attr->cur_qp_state = IB_QPS_SQE;
2190 ret = ib_modify_qp(qp_info->qp, attr,
2191 IB_QP_STATE | IB_QP_CUR_STATE);
2192 kfree(attr);
2193 if (ret)
2194 printk(KERN_ERR PFX "mad_error_handler - "
2195 "ib_modify_qp to RTS : %d\n", ret);
2196 else
2197 mark_sends_for_retry(qp_info);
2198 }
2199 ib_mad_send_done_handler(port_priv, wc);
2200 }
2201}
2202
2203/*
2204 * IB MAD completion callback
2205 */
David Howellsc4028952006-11-22 14:57:56 +00002206static void ib_mad_completion_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
2208 struct ib_mad_port_private *port_priv;
2209 struct ib_wc wc;
2210
David Howellsc4028952006-11-22 14:57:56 +00002211 port_priv = container_of(work, struct ib_mad_port_private, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 ib_req_notify_cq(port_priv->cq, IB_CQ_NEXT_COMP);
2213
2214 while (ib_poll_cq(port_priv->cq, 1, &wc) == 1) {
2215 if (wc.status == IB_WC_SUCCESS) {
2216 switch (wc.opcode) {
2217 case IB_WC_SEND:
2218 ib_mad_send_done_handler(port_priv, &wc);
2219 break;
2220 case IB_WC_RECV:
2221 ib_mad_recv_done_handler(port_priv, &wc);
2222 break;
2223 default:
2224 BUG_ON(1);
2225 break;
2226 }
2227 } else
2228 mad_error_handler(port_priv, &wc);
2229 }
2230}
2231
2232static void cancel_mads(struct ib_mad_agent_private *mad_agent_priv)
2233{
2234 unsigned long flags;
2235 struct ib_mad_send_wr_private *mad_send_wr, *temp_mad_send_wr;
2236 struct ib_mad_send_wc mad_send_wc;
2237 struct list_head cancel_list;
2238
2239 INIT_LIST_HEAD(&cancel_list);
2240
2241 spin_lock_irqsave(&mad_agent_priv->lock, flags);
2242 list_for_each_entry_safe(mad_send_wr, temp_mad_send_wr,
2243 &mad_agent_priv->send_list, agent_list) {
2244 if (mad_send_wr->status == IB_WC_SUCCESS) {
Roland Dreier3cd96562006-09-22 15:22:46 -07002245 mad_send_wr->status = IB_WC_WR_FLUSH_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 mad_send_wr->refcount -= (mad_send_wr->timeout > 0);
2247 }
2248 }
2249
2250 /* Empty wait list to prevent receives from finding a request */
2251 list_splice_init(&mad_agent_priv->wait_list, &cancel_list);
Hal Rosenstock2c153b92005-07-27 11:45:31 -07002252 /* Empty local completion list as well */
2253 list_splice_init(&mad_agent_priv->local_list, &cancel_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
2255
2256 /* Report all cancelled requests */
2257 mad_send_wc.status = IB_WC_WR_FLUSH_ERR;
2258 mad_send_wc.vendor_err = 0;
2259
2260 list_for_each_entry_safe(mad_send_wr, temp_mad_send_wr,
2261 &cancel_list, agent_list) {
Sean Hefty34816ad2005-10-25 10:51:39 -07002262 mad_send_wc.send_buf = &mad_send_wr->send_buf;
2263 list_del(&mad_send_wr->agent_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 mad_agent_priv->agent.send_handler(&mad_agent_priv->agent,
2265 &mad_send_wc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 atomic_dec(&mad_agent_priv->refcount);
2267 }
2268}
2269
2270static struct ib_mad_send_wr_private*
Sean Hefty34816ad2005-10-25 10:51:39 -07002271find_send_wr(struct ib_mad_agent_private *mad_agent_priv,
2272 struct ib_mad_send_buf *send_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 struct ib_mad_send_wr_private *mad_send_wr;
2275
2276 list_for_each_entry(mad_send_wr, &mad_agent_priv->wait_list,
2277 agent_list) {
Sean Hefty34816ad2005-10-25 10:51:39 -07002278 if (&mad_send_wr->send_buf == send_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 return mad_send_wr;
2280 }
2281
2282 list_for_each_entry(mad_send_wr, &mad_agent_priv->send_list,
2283 agent_list) {
Sean Hefty34816ad2005-10-25 10:51:39 -07002284 if (is_data_mad(mad_agent_priv, mad_send_wr->send_buf.mad) &&
2285 &mad_send_wr->send_buf == send_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 return mad_send_wr;
2287 }
2288 return NULL;
2289}
2290
Sean Hefty34816ad2005-10-25 10:51:39 -07002291int ib_modify_mad(struct ib_mad_agent *mad_agent,
2292 struct ib_mad_send_buf *send_buf, u32 timeout_ms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
2294 struct ib_mad_agent_private *mad_agent_priv;
2295 struct ib_mad_send_wr_private *mad_send_wr;
2296 unsigned long flags;
Hal Rosenstockcabe3cb2005-07-27 11:45:33 -07002297 int active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 mad_agent_priv = container_of(mad_agent, struct ib_mad_agent_private,
2300 agent);
2301 spin_lock_irqsave(&mad_agent_priv->lock, flags);
Sean Hefty34816ad2005-10-25 10:51:39 -07002302 mad_send_wr = find_send_wr(mad_agent_priv, send_buf);
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002303 if (!mad_send_wr || mad_send_wr->status != IB_WC_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002305 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307
Hal Rosenstockcabe3cb2005-07-27 11:45:33 -07002308 active = (!mad_send_wr->timeout || mad_send_wr->refcount > 1);
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002309 if (!timeout_ms) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 mad_send_wr->status = IB_WC_WR_FLUSH_ERR;
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002311 mad_send_wr->refcount -= (mad_send_wr->timeout > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
2313
Sean Hefty34816ad2005-10-25 10:51:39 -07002314 mad_send_wr->send_buf.timeout_ms = timeout_ms;
Hal Rosenstockcabe3cb2005-07-27 11:45:33 -07002315 if (active)
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002316 mad_send_wr->timeout = msecs_to_jiffies(timeout_ms);
2317 else
2318 ib_reset_mad_timeout(mad_send_wr, timeout_ms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002320 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
2321 return 0;
2322}
2323EXPORT_SYMBOL(ib_modify_mad);
2324
Sean Hefty34816ad2005-10-25 10:51:39 -07002325void ib_cancel_mad(struct ib_mad_agent *mad_agent,
2326 struct ib_mad_send_buf *send_buf)
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002327{
Sean Hefty34816ad2005-10-25 10:51:39 -07002328 ib_modify_mad(mad_agent, send_buf, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329}
2330EXPORT_SYMBOL(ib_cancel_mad);
2331
David Howellsc4028952006-11-22 14:57:56 +00002332static void local_completions(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
2334 struct ib_mad_agent_private *mad_agent_priv;
2335 struct ib_mad_local_private *local;
2336 struct ib_mad_agent_private *recv_mad_agent;
2337 unsigned long flags;
Hal Rosenstock2c153b92005-07-27 11:45:31 -07002338 int recv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 struct ib_wc wc;
2340 struct ib_mad_send_wc mad_send_wc;
2341
David Howellsc4028952006-11-22 14:57:56 +00002342 mad_agent_priv =
2343 container_of(work, struct ib_mad_agent_private, local_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 spin_lock_irqsave(&mad_agent_priv->lock, flags);
2346 while (!list_empty(&mad_agent_priv->local_list)) {
2347 local = list_entry(mad_agent_priv->local_list.next,
2348 struct ib_mad_local_private,
2349 completion_list);
Michael S. Tsirkin37289ef2006-03-30 15:52:54 +02002350 list_del(&local->completion_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
2352 if (local->mad_priv) {
2353 recv_mad_agent = local->recv_mad_agent;
2354 if (!recv_mad_agent) {
2355 printk(KERN_ERR PFX "No receive MAD agent for local completion\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 goto local_send_completion;
2357 }
2358
Hal Rosenstock2c153b92005-07-27 11:45:31 -07002359 recv = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 /*
2361 * Defined behavior is to complete response
2362 * before request
2363 */
Michael S. Tsirkin062dbb62006-12-31 21:09:42 +02002364 build_smp_wc(recv_mad_agent->agent.qp,
2365 (unsigned long) local->mad_send_wr,
Sean Hefty97f52eb2005-08-13 21:05:57 -07002366 be16_to_cpu(IB_LID_PERMISSIVE),
Sean Hefty34816ad2005-10-25 10:51:39 -07002367 0, recv_mad_agent->agent.port_num, &wc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 local->mad_priv->header.recv_wc.wc = &wc;
2370 local->mad_priv->header.recv_wc.mad_len =
2371 sizeof(struct ib_mad);
Hal Rosenstockfa619a72005-07-27 11:45:37 -07002372 INIT_LIST_HEAD(&local->mad_priv->header.recv_wc.rmpp_list);
2373 list_add(&local->mad_priv->header.recv_wc.recv_buf.list,
2374 &local->mad_priv->header.recv_wc.rmpp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 local->mad_priv->header.recv_wc.recv_buf.grh = NULL;
2376 local->mad_priv->header.recv_wc.recv_buf.mad =
2377 &local->mad_priv->mad.mad;
2378 if (atomic_read(&recv_mad_agent->qp_info->snoop_count))
2379 snoop_recv(recv_mad_agent->qp_info,
2380 &local->mad_priv->header.recv_wc,
2381 IB_MAD_SNOOP_RECVS);
2382 recv_mad_agent->agent.recv_handler(
2383 &recv_mad_agent->agent,
2384 &local->mad_priv->header.recv_wc);
2385 spin_lock_irqsave(&recv_mad_agent->lock, flags);
2386 atomic_dec(&recv_mad_agent->refcount);
2387 spin_unlock_irqrestore(&recv_mad_agent->lock, flags);
2388 }
2389
2390local_send_completion:
2391 /* Complete send */
2392 mad_send_wc.status = IB_WC_SUCCESS;
2393 mad_send_wc.vendor_err = 0;
Sean Hefty34816ad2005-10-25 10:51:39 -07002394 mad_send_wc.send_buf = &local->mad_send_wr->send_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (atomic_read(&mad_agent_priv->qp_info->snoop_count))
Sean Hefty34816ad2005-10-25 10:51:39 -07002396 snoop_send(mad_agent_priv->qp_info,
2397 &local->mad_send_wr->send_buf,
2398 &mad_send_wc, IB_MAD_SNOOP_SEND_COMPLETIONS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 mad_agent_priv->agent.send_handler(&mad_agent_priv->agent,
2400 &mad_send_wc);
2401
2402 spin_lock_irqsave(&mad_agent_priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 atomic_dec(&mad_agent_priv->refcount);
Hal Rosenstock2c153b92005-07-27 11:45:31 -07002404 if (!recv)
2405 kmem_cache_free(ib_mad_cache, local->mad_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 kfree(local);
2407 }
2408 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
2409}
2410
Hal Rosenstockf75b7a52005-07-27 11:45:29 -07002411static int retry_send(struct ib_mad_send_wr_private *mad_send_wr)
2412{
2413 int ret;
2414
2415 if (!mad_send_wr->retries--)
2416 return -ETIMEDOUT;
2417
Sean Hefty34816ad2005-10-25 10:51:39 -07002418 mad_send_wr->timeout = msecs_to_jiffies(mad_send_wr->send_buf.timeout_ms);
Hal Rosenstockf75b7a52005-07-27 11:45:29 -07002419
Hal Rosenstockfa619a72005-07-27 11:45:37 -07002420 if (mad_send_wr->mad_agent_priv->agent.rmpp_version) {
2421 ret = ib_retry_rmpp(mad_send_wr);
2422 switch (ret) {
2423 case IB_RMPP_RESULT_UNHANDLED:
2424 ret = ib_send_mad(mad_send_wr);
2425 break;
2426 case IB_RMPP_RESULT_CONSUMED:
2427 ret = 0;
2428 break;
2429 default:
2430 ret = -ECOMM;
2431 break;
2432 }
2433 } else
2434 ret = ib_send_mad(mad_send_wr);
Hal Rosenstockf75b7a52005-07-27 11:45:29 -07002435
2436 if (!ret) {
2437 mad_send_wr->refcount++;
Hal Rosenstockf75b7a52005-07-27 11:45:29 -07002438 list_add_tail(&mad_send_wr->agent_list,
2439 &mad_send_wr->mad_agent_priv->send_list);
2440 }
2441 return ret;
2442}
2443
David Howellsc4028952006-11-22 14:57:56 +00002444static void timeout_sends(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
2446 struct ib_mad_agent_private *mad_agent_priv;
2447 struct ib_mad_send_wr_private *mad_send_wr;
2448 struct ib_mad_send_wc mad_send_wc;
2449 unsigned long flags, delay;
2450
David Howellsc4028952006-11-22 14:57:56 +00002451 mad_agent_priv = container_of(work, struct ib_mad_agent_private,
2452 timed_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 mad_send_wc.vendor_err = 0;
2454
2455 spin_lock_irqsave(&mad_agent_priv->lock, flags);
2456 while (!list_empty(&mad_agent_priv->wait_list)) {
2457 mad_send_wr = list_entry(mad_agent_priv->wait_list.next,
2458 struct ib_mad_send_wr_private,
2459 agent_list);
2460
2461 if (time_after(mad_send_wr->timeout, jiffies)) {
2462 delay = mad_send_wr->timeout - jiffies;
2463 if ((long)delay <= 0)
2464 delay = 1;
2465 queue_delayed_work(mad_agent_priv->qp_info->
2466 port_priv->wq,
2467 &mad_agent_priv->timed_work, delay);
2468 break;
2469 }
2470
Hal Rosenstockdbf92272005-07-27 11:45:30 -07002471 list_del(&mad_send_wr->agent_list);
Hal Rosenstock29bb33d2005-07-27 11:45:32 -07002472 if (mad_send_wr->status == IB_WC_SUCCESS &&
2473 !retry_send(mad_send_wr))
Hal Rosenstockf75b7a52005-07-27 11:45:29 -07002474 continue;
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
2477
Hal Rosenstock03b61ad2005-07-27 11:45:32 -07002478 if (mad_send_wr->status == IB_WC_SUCCESS)
2479 mad_send_wc.status = IB_WC_RESP_TIMEOUT_ERR;
2480 else
2481 mad_send_wc.status = mad_send_wr->status;
Sean Hefty34816ad2005-10-25 10:51:39 -07002482 mad_send_wc.send_buf = &mad_send_wr->send_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 mad_agent_priv->agent.send_handler(&mad_agent_priv->agent,
2484 &mad_send_wc);
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 atomic_dec(&mad_agent_priv->refcount);
2487 spin_lock_irqsave(&mad_agent_priv->lock, flags);
2488 }
2489 spin_unlock_irqrestore(&mad_agent_priv->lock, flags);
2490}
2491
Hal Rosenstock5dd2ce12005-08-15 14:16:36 -07002492static void ib_mad_thread_completion_handler(struct ib_cq *cq, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
2494 struct ib_mad_port_private *port_priv = cq->cq_context;
Michael S. Tsirkindc059802006-03-20 10:08:25 -08002495 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Michael S. Tsirkindc059802006-03-20 10:08:25 -08002497 spin_lock_irqsave(&ib_mad_port_list_lock, flags);
2498 if (!list_empty(&port_priv->port_list))
2499 queue_work(port_priv->wq, &port_priv->work);
2500 spin_unlock_irqrestore(&ib_mad_port_list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502
2503/*
2504 * Allocate receive MADs and post receive WRs for them
2505 */
2506static int ib_mad_post_receive_mads(struct ib_mad_qp_info *qp_info,
2507 struct ib_mad_private *mad)
2508{
2509 unsigned long flags;
2510 int post, ret;
2511 struct ib_mad_private *mad_priv;
2512 struct ib_sge sg_list;
2513 struct ib_recv_wr recv_wr, *bad_recv_wr;
2514 struct ib_mad_queue *recv_queue = &qp_info->recv_queue;
2515
2516 /* Initialize common scatter list fields */
2517 sg_list.length = sizeof *mad_priv - sizeof mad_priv->header;
2518 sg_list.lkey = (*qp_info->port_priv->mr).lkey;
2519
2520 /* Initialize common receive WR fields */
2521 recv_wr.next = NULL;
2522 recv_wr.sg_list = &sg_list;
2523 recv_wr.num_sge = 1;
2524
2525 do {
2526 /* Allocate and map receive buffer */
2527 if (mad) {
2528 mad_priv = mad;
2529 mad = NULL;
2530 } else {
2531 mad_priv = kmem_cache_alloc(ib_mad_cache, GFP_KERNEL);
2532 if (!mad_priv) {
2533 printk(KERN_ERR PFX "No memory for receive buffer\n");
2534 ret = -ENOMEM;
2535 break;
2536 }
2537 }
Ralph Campbell15271062006-12-12 14:28:30 -08002538 sg_list.addr = ib_dma_map_single(qp_info->port_priv->device,
2539 &mad_priv->grh,
2540 sizeof *mad_priv -
2541 sizeof mad_priv->header,
2542 DMA_FROM_DEVICE);
2543 mad_priv->header.mapping = sg_list.addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 recv_wr.wr_id = (unsigned long)&mad_priv->header.mad_list;
2545 mad_priv->header.mad_list.mad_queue = recv_queue;
2546
2547 /* Post receive WR */
2548 spin_lock_irqsave(&recv_queue->lock, flags);
2549 post = (++recv_queue->count < recv_queue->max_active);
2550 list_add_tail(&mad_priv->header.mad_list.list, &recv_queue->list);
2551 spin_unlock_irqrestore(&recv_queue->lock, flags);
2552 ret = ib_post_recv(qp_info->qp, &recv_wr, &bad_recv_wr);
2553 if (ret) {
2554 spin_lock_irqsave(&recv_queue->lock, flags);
2555 list_del(&mad_priv->header.mad_list.list);
2556 recv_queue->count--;
2557 spin_unlock_irqrestore(&recv_queue->lock, flags);
Ralph Campbell15271062006-12-12 14:28:30 -08002558 ib_dma_unmap_single(qp_info->port_priv->device,
2559 mad_priv->header.mapping,
2560 sizeof *mad_priv -
2561 sizeof mad_priv->header,
2562 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 kmem_cache_free(ib_mad_cache, mad_priv);
2564 printk(KERN_ERR PFX "ib_post_recv failed: %d\n", ret);
2565 break;
2566 }
2567 } while (post);
2568
2569 return ret;
2570}
2571
2572/*
2573 * Return all the posted receive MADs
2574 */
2575static void cleanup_recv_queue(struct ib_mad_qp_info *qp_info)
2576{
2577 struct ib_mad_private_header *mad_priv_hdr;
2578 struct ib_mad_private *recv;
2579 struct ib_mad_list_head *mad_list;
2580
2581 while (!list_empty(&qp_info->recv_queue.list)) {
2582
2583 mad_list = list_entry(qp_info->recv_queue.list.next,
2584 struct ib_mad_list_head, list);
2585 mad_priv_hdr = container_of(mad_list,
2586 struct ib_mad_private_header,
2587 mad_list);
2588 recv = container_of(mad_priv_hdr, struct ib_mad_private,
2589 header);
2590
2591 /* Remove from posted receive MAD list */
2592 list_del(&mad_list->list);
2593
Ralph Campbell15271062006-12-12 14:28:30 -08002594 ib_dma_unmap_single(qp_info->port_priv->device,
2595 recv->header.mapping,
2596 sizeof(struct ib_mad_private) -
2597 sizeof(struct ib_mad_private_header),
2598 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 kmem_cache_free(ib_mad_cache, recv);
2600 }
2601
2602 qp_info->recv_queue.count = 0;
2603}
2604
2605/*
2606 * Start the port
2607 */
2608static int ib_mad_port_start(struct ib_mad_port_private *port_priv)
2609{
2610 int ret, i;
2611 struct ib_qp_attr *attr;
2612 struct ib_qp *qp;
2613
2614 attr = kmalloc(sizeof *attr, GFP_KERNEL);
Roland Dreier3cd96562006-09-22 15:22:46 -07002615 if (!attr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 printk(KERN_ERR PFX "Couldn't kmalloc ib_qp_attr\n");
2617 return -ENOMEM;
2618 }
2619
2620 for (i = 0; i < IB_MAD_QPS_CORE; i++) {
2621 qp = port_priv->qp_info[i].qp;
2622 /*
2623 * PKey index for QP1 is irrelevant but
2624 * one is needed for the Reset to Init transition
2625 */
2626 attr->qp_state = IB_QPS_INIT;
2627 attr->pkey_index = 0;
2628 attr->qkey = (qp->qp_num == 0) ? 0 : IB_QP1_QKEY;
2629 ret = ib_modify_qp(qp, attr, IB_QP_STATE |
2630 IB_QP_PKEY_INDEX | IB_QP_QKEY);
2631 if (ret) {
2632 printk(KERN_ERR PFX "Couldn't change QP%d state to "
2633 "INIT: %d\n", i, ret);
2634 goto out;
2635 }
2636
2637 attr->qp_state = IB_QPS_RTR;
2638 ret = ib_modify_qp(qp, attr, IB_QP_STATE);
2639 if (ret) {
2640 printk(KERN_ERR PFX "Couldn't change QP%d state to "
2641 "RTR: %d\n", i, ret);
2642 goto out;
2643 }
2644
2645 attr->qp_state = IB_QPS_RTS;
2646 attr->sq_psn = IB_MAD_SEND_Q_PSN;
2647 ret = ib_modify_qp(qp, attr, IB_QP_STATE | IB_QP_SQ_PSN);
2648 if (ret) {
2649 printk(KERN_ERR PFX "Couldn't change QP%d state to "
2650 "RTS: %d\n", i, ret);
2651 goto out;
2652 }
2653 }
2654
2655 ret = ib_req_notify_cq(port_priv->cq, IB_CQ_NEXT_COMP);
2656 if (ret) {
2657 printk(KERN_ERR PFX "Failed to request completion "
2658 "notification: %d\n", ret);
2659 goto out;
2660 }
2661
2662 for (i = 0; i < IB_MAD_QPS_CORE; i++) {
2663 ret = ib_mad_post_receive_mads(&port_priv->qp_info[i], NULL);
2664 if (ret) {
2665 printk(KERN_ERR PFX "Couldn't post receive WRs\n");
2666 goto out;
2667 }
2668 }
2669out:
2670 kfree(attr);
2671 return ret;
2672}
2673
2674static void qp_event_handler(struct ib_event *event, void *qp_context)
2675{
2676 struct ib_mad_qp_info *qp_info = qp_context;
2677
2678 /* It's worse than that! He's dead, Jim! */
2679 printk(KERN_ERR PFX "Fatal error (%d) on MAD QP (%d)\n",
2680 event->event, qp_info->qp->qp_num);
2681}
2682
2683static void init_mad_queue(struct ib_mad_qp_info *qp_info,
2684 struct ib_mad_queue *mad_queue)
2685{
2686 mad_queue->qp_info = qp_info;
2687 mad_queue->count = 0;
2688 spin_lock_init(&mad_queue->lock);
2689 INIT_LIST_HEAD(&mad_queue->list);
2690}
2691
2692static void init_mad_qp(struct ib_mad_port_private *port_priv,
2693 struct ib_mad_qp_info *qp_info)
2694{
2695 qp_info->port_priv = port_priv;
2696 init_mad_queue(qp_info, &qp_info->send_queue);
2697 init_mad_queue(qp_info, &qp_info->recv_queue);
2698 INIT_LIST_HEAD(&qp_info->overflow_list);
2699 spin_lock_init(&qp_info->snoop_lock);
2700 qp_info->snoop_table = NULL;
2701 qp_info->snoop_table_size = 0;
2702 atomic_set(&qp_info->snoop_count, 0);
2703}
2704
2705static int create_mad_qp(struct ib_mad_qp_info *qp_info,
2706 enum ib_qp_type qp_type)
2707{
2708 struct ib_qp_init_attr qp_init_attr;
2709 int ret;
2710
2711 memset(&qp_init_attr, 0, sizeof qp_init_attr);
2712 qp_init_attr.send_cq = qp_info->port_priv->cq;
2713 qp_init_attr.recv_cq = qp_info->port_priv->cq;
2714 qp_init_attr.sq_sig_type = IB_SIGNAL_ALL_WR;
2715 qp_init_attr.cap.max_send_wr = IB_MAD_QP_SEND_SIZE;
2716 qp_init_attr.cap.max_recv_wr = IB_MAD_QP_RECV_SIZE;
2717 qp_init_attr.cap.max_send_sge = IB_MAD_SEND_REQ_MAX_SG;
2718 qp_init_attr.cap.max_recv_sge = IB_MAD_RECV_REQ_MAX_SG;
2719 qp_init_attr.qp_type = qp_type;
2720 qp_init_attr.port_num = qp_info->port_priv->port_num;
2721 qp_init_attr.qp_context = qp_info;
2722 qp_init_attr.event_handler = qp_event_handler;
2723 qp_info->qp = ib_create_qp(qp_info->port_priv->pd, &qp_init_attr);
2724 if (IS_ERR(qp_info->qp)) {
2725 printk(KERN_ERR PFX "Couldn't create ib_mad QP%d\n",
2726 get_spl_qp_index(qp_type));
2727 ret = PTR_ERR(qp_info->qp);
2728 goto error;
2729 }
2730 /* Use minimum queue sizes unless the CQ is resized */
2731 qp_info->send_queue.max_active = IB_MAD_QP_SEND_SIZE;
2732 qp_info->recv_queue.max_active = IB_MAD_QP_RECV_SIZE;
2733 return 0;
2734
2735error:
2736 return ret;
2737}
2738
2739static void destroy_mad_qp(struct ib_mad_qp_info *qp_info)
2740{
2741 ib_destroy_qp(qp_info->qp);
Jesper Juhl6044ec82005-11-07 01:01:32 -08002742 kfree(qp_info->snoop_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743}
2744
2745/*
2746 * Open the port
2747 * Create the QP, PD, MR, and CQ if needed
2748 */
2749static int ib_mad_port_open(struct ib_device *device,
2750 int port_num)
2751{
2752 int ret, cq_size;
2753 struct ib_mad_port_private *port_priv;
2754 unsigned long flags;
2755 char name[sizeof "ib_mad123"];
2756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 /* Create new device info */
Roland Dreierde6eb662005-11-02 07:23:14 -08002758 port_priv = kzalloc(sizeof *port_priv, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 if (!port_priv) {
2760 printk(KERN_ERR PFX "No memory for ib_mad_port_private\n");
2761 return -ENOMEM;
2762 }
Roland Dreierde6eb662005-11-02 07:23:14 -08002763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 port_priv->device = device;
2765 port_priv->port_num = port_num;
2766 spin_lock_init(&port_priv->reg_lock);
2767 INIT_LIST_HEAD(&port_priv->agent_list);
2768 init_mad_qp(port_priv, &port_priv->qp_info[0]);
2769 init_mad_qp(port_priv, &port_priv->qp_info[1]);
2770
2771 cq_size = (IB_MAD_QP_SEND_SIZE + IB_MAD_QP_RECV_SIZE) * 2;
2772 port_priv->cq = ib_create_cq(port_priv->device,
Hal Rosenstock5dd2ce12005-08-15 14:16:36 -07002773 ib_mad_thread_completion_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 NULL, port_priv, cq_size);
2775 if (IS_ERR(port_priv->cq)) {
2776 printk(KERN_ERR PFX "Couldn't create ib_mad CQ\n");
2777 ret = PTR_ERR(port_priv->cq);
2778 goto error3;
2779 }
2780
2781 port_priv->pd = ib_alloc_pd(device);
2782 if (IS_ERR(port_priv->pd)) {
2783 printk(KERN_ERR PFX "Couldn't create ib_mad PD\n");
2784 ret = PTR_ERR(port_priv->pd);
2785 goto error4;
2786 }
2787
2788 port_priv->mr = ib_get_dma_mr(port_priv->pd, IB_ACCESS_LOCAL_WRITE);
2789 if (IS_ERR(port_priv->mr)) {
2790 printk(KERN_ERR PFX "Couldn't get ib_mad DMA MR\n");
2791 ret = PTR_ERR(port_priv->mr);
2792 goto error5;
2793 }
2794
2795 ret = create_mad_qp(&port_priv->qp_info[0], IB_QPT_SMI);
2796 if (ret)
2797 goto error6;
2798 ret = create_mad_qp(&port_priv->qp_info[1], IB_QPT_GSI);
2799 if (ret)
2800 goto error7;
2801
2802 snprintf(name, sizeof name, "ib_mad%d", port_num);
2803 port_priv->wq = create_singlethread_workqueue(name);
2804 if (!port_priv->wq) {
2805 ret = -ENOMEM;
2806 goto error8;
2807 }
David Howellsc4028952006-11-22 14:57:56 +00002808 INIT_WORK(&port_priv->work, ib_mad_completion_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Michael S. Tsirkindc059802006-03-20 10:08:25 -08002810 spin_lock_irqsave(&ib_mad_port_list_lock, flags);
2811 list_add_tail(&port_priv->port_list, &ib_mad_port_list);
2812 spin_unlock_irqrestore(&ib_mad_port_list_lock, flags);
2813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 ret = ib_mad_port_start(port_priv);
2815 if (ret) {
2816 printk(KERN_ERR PFX "Couldn't start port\n");
2817 goto error9;
2818 }
2819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 return 0;
2821
2822error9:
Michael S. Tsirkindc059802006-03-20 10:08:25 -08002823 spin_lock_irqsave(&ib_mad_port_list_lock, flags);
2824 list_del_init(&port_priv->port_list);
2825 spin_unlock_irqrestore(&ib_mad_port_list_lock, flags);
2826
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 destroy_workqueue(port_priv->wq);
2828error8:
2829 destroy_mad_qp(&port_priv->qp_info[1]);
2830error7:
2831 destroy_mad_qp(&port_priv->qp_info[0]);
2832error6:
2833 ib_dereg_mr(port_priv->mr);
2834error5:
2835 ib_dealloc_pd(port_priv->pd);
2836error4:
2837 ib_destroy_cq(port_priv->cq);
2838 cleanup_recv_queue(&port_priv->qp_info[1]);
2839 cleanup_recv_queue(&port_priv->qp_info[0]);
2840error3:
2841 kfree(port_priv);
2842
2843 return ret;
2844}
2845
2846/*
2847 * Close the port
2848 * If there are no classes using the port, free the port
2849 * resources (CQ, MR, PD, QP) and remove the port's info structure
2850 */
2851static int ib_mad_port_close(struct ib_device *device, int port_num)
2852{
2853 struct ib_mad_port_private *port_priv;
2854 unsigned long flags;
2855
2856 spin_lock_irqsave(&ib_mad_port_list_lock, flags);
2857 port_priv = __ib_get_mad_port(device, port_num);
2858 if (port_priv == NULL) {
2859 spin_unlock_irqrestore(&ib_mad_port_list_lock, flags);
2860 printk(KERN_ERR PFX "Port %d not found\n", port_num);
2861 return -ENODEV;
2862 }
Michael S. Tsirkindc059802006-03-20 10:08:25 -08002863 list_del_init(&port_priv->port_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 spin_unlock_irqrestore(&ib_mad_port_list_lock, flags);
2865
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 destroy_workqueue(port_priv->wq);
2867 destroy_mad_qp(&port_priv->qp_info[1]);
2868 destroy_mad_qp(&port_priv->qp_info[0]);
2869 ib_dereg_mr(port_priv->mr);
2870 ib_dealloc_pd(port_priv->pd);
2871 ib_destroy_cq(port_priv->cq);
2872 cleanup_recv_queue(&port_priv->qp_info[1]);
2873 cleanup_recv_queue(&port_priv->qp_info[0]);
2874 /* XXX: Handle deallocation of MAD registration tables */
2875
2876 kfree(port_priv);
2877
2878 return 0;
2879}
2880
2881static void ib_mad_init_device(struct ib_device *device)
2882{
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002883 int start, end, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Tom Tucker07ebafb2006-08-03 16:02:42 -05002885 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
2886 return;
2887
2888 if (device->node_type == RDMA_NODE_IB_SWITCH) {
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002889 start = 0;
2890 end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 } else {
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002892 start = 1;
2893 end = device->phys_port_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 }
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002895
2896 for (i = start; i <= end; i++) {
2897 if (ib_mad_port_open(device, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 printk(KERN_ERR PFX "Couldn't open %s port %d\n",
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002899 device->name, i);
2900 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 }
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002902 if (ib_agent_port_open(device, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 printk(KERN_ERR PFX "Couldn't open %s port %d "
2904 "for agents\n",
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002905 device->name, i);
2906 goto error_agent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
2908 }
Hal Rosenstockf68bcc22005-07-27 11:45:27 -07002909 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002911error_agent:
2912 if (ib_mad_port_close(device, i))
2913 printk(KERN_ERR PFX "Couldn't close %s port %d\n",
2914 device->name, i);
2915
2916error:
2917 i--;
2918
2919 while (i >= start) {
2920 if (ib_agent_port_close(device, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 printk(KERN_ERR PFX "Couldn't close %s port %d "
2922 "for agents\n",
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002923 device->name, i);
2924 if (ib_mad_port_close(device, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 printk(KERN_ERR PFX "Couldn't close %s port %d\n",
Roland Dreier4ab6fb72005-10-06 13:28:16 -07002926 device->name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 i--;
2928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929}
2930
2931static void ib_mad_remove_device(struct ib_device *device)
2932{
Hal Rosenstockf68bcc22005-07-27 11:45:27 -07002933 int i, num_ports, cur_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Tom Tucker07ebafb2006-08-03 16:02:42 -05002935 if (device->node_type == RDMA_NODE_IB_SWITCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 num_ports = 1;
2937 cur_port = 0;
2938 } else {
2939 num_ports = device->phys_port_cnt;
2940 cur_port = 1;
2941 }
2942 for (i = 0; i < num_ports; i++, cur_port++) {
Hal Rosenstockf68bcc22005-07-27 11:45:27 -07002943 if (ib_agent_port_close(device, cur_port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 printk(KERN_ERR PFX "Couldn't close %s port %d "
2945 "for agents\n",
2946 device->name, cur_port);
Hal Rosenstockf68bcc22005-07-27 11:45:27 -07002947 if (ib_mad_port_close(device, cur_port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 printk(KERN_ERR PFX "Couldn't close %s port %d\n",
2949 device->name, cur_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 }
2951}
2952
2953static struct ib_client mad_client = {
2954 .name = "mad",
2955 .add = ib_mad_init_device,
2956 .remove = ib_mad_remove_device
2957};
2958
2959static int __init ib_mad_init_module(void)
2960{
2961 int ret;
2962
2963 spin_lock_init(&ib_mad_port_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
2965 ib_mad_cache = kmem_cache_create("ib_mad",
2966 sizeof(struct ib_mad_private),
2967 0,
2968 SLAB_HWCACHE_ALIGN,
2969 NULL,
2970 NULL);
2971 if (!ib_mad_cache) {
2972 printk(KERN_ERR PFX "Couldn't create ib_mad cache\n");
2973 ret = -ENOMEM;
2974 goto error1;
2975 }
2976
2977 INIT_LIST_HEAD(&ib_mad_port_list);
2978
2979 if (ib_register_client(&mad_client)) {
2980 printk(KERN_ERR PFX "Couldn't register ib_mad client\n");
2981 ret = -EINVAL;
2982 goto error2;
2983 }
2984
2985 return 0;
2986
2987error2:
2988 kmem_cache_destroy(ib_mad_cache);
2989error1:
2990 return ret;
2991}
2992
2993static void __exit ib_mad_cleanup_module(void)
2994{
2995 ib_unregister_client(&mad_client);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07002996 kmem_cache_destroy(ib_mad_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997}
2998
2999module_init(ib_mad_init_module);
3000module_exit(ib_mad_cleanup_module);
Hal Rosenstockfa619a72005-07-27 11:45:37 -07003001