blob: 368a561d1a5d49d931ef45738c35f3be4b068725 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Roland Dreier2a1d9b72005-08-10 23:03:10 -07002 * Copyright (c) 2004, 2005 Mellanox Technologies Ltd. All rights reserved.
3 * Copyright (c) 2004, 2005 Infinicon Corporation. All rights reserved.
4 * Copyright (c) 2004, 2005 Intel Corporation. All rights reserved.
5 * Copyright (c) 2004, 2005 Topspin Corporation. All rights reserved.
Hal Rosenstockde493d42007-04-02 11:24:07 -04006 * Copyright (c) 2004-2007 Voltaire Corporation. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07007 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Ira Weinyf28990b2015-06-06 14:38:34 -04008 * Copyright (c) 2014 Intel Corporation. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This software is available to you under a choice of one of two
11 * licenses. You may choose to be licensed under the terms of the GNU
12 * General Public License (GPL) Version 2, available from the file
13 * COPYING in the main directory of this source tree, or the
14 * OpenIB.org BSD license below:
15 *
16 * Redistribution and use in source and binary forms, with or
17 * without modification, are permitted provided that the following
18 * conditions are met:
19 *
20 * - Redistributions of source code must retain the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer.
23 *
24 * - Redistributions in binary form must reproduce the above
25 * copyright notice, this list of conditions and the following
26 * disclaimer in the documentation and/or other materials
27 * provided with the distribution.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
33 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 * SOFTWARE.
37 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39
Roland Dreiera4d61e82005-08-25 13:40:04 -070040#include <rdma/ib_smi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "smi.h"
Ira Weinyf28990b2015-06-06 14:38:34 -040042#include "opa_smi.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Ira Weiny92f15052015-06-06 14:38:25 -040044static enum smi_action __smi_handle_dr_smp_send(u8 node_type, int port_num,
45 u8 *hop_ptr, u8 hop_cnt,
46 const u8 *initial_path,
47 const u8 *return_path,
48 u8 direction,
49 bool dr_dlid_is_permissive,
50 bool dr_slid_is_permissive)
51{
52 /* See section 14.2.2.2, Vol 1 IB spec */
53 /* C14-6 -- valid hop_cnt values are from 0 to 63 */
54 if (hop_cnt >= IB_SMP_MAX_PATH_HOPS)
55 return IB_SMI_DISCARD;
56
57 if (!direction) {
58 /* C14-9:1 */
59 if (hop_cnt && *hop_ptr == 0) {
60 (*hop_ptr)++;
61 return (initial_path[*hop_ptr] ==
62 port_num ? IB_SMI_HANDLE : IB_SMI_DISCARD);
63 }
64
65 /* C14-9:2 */
66 if (*hop_ptr && *hop_ptr < hop_cnt) {
67 if (node_type != RDMA_NODE_IB_SWITCH)
68 return IB_SMI_DISCARD;
69
70 /* return_path set when received */
71 (*hop_ptr)++;
72 return (initial_path[*hop_ptr] ==
73 port_num ? IB_SMI_HANDLE : IB_SMI_DISCARD);
74 }
75
76 /* C14-9:3 -- We're at the end of the DR segment of path */
77 if (*hop_ptr == hop_cnt) {
78 /* return_path set when received */
79 (*hop_ptr)++;
80 return (node_type == RDMA_NODE_IB_SWITCH ||
81 dr_dlid_is_permissive ?
82 IB_SMI_HANDLE : IB_SMI_DISCARD);
83 }
84
85 /* C14-9:4 -- hop_ptr = hop_cnt + 1 -> give to SMA/SM */
86 /* C14-9:5 -- Fail unreasonable hop pointer */
87 return (*hop_ptr == hop_cnt + 1 ? IB_SMI_HANDLE : IB_SMI_DISCARD);
88
89 } else {
90 /* C14-13:1 */
91 if (hop_cnt && *hop_ptr == hop_cnt + 1) {
92 (*hop_ptr)--;
93 return (return_path[*hop_ptr] ==
94 port_num ? IB_SMI_HANDLE : IB_SMI_DISCARD);
95 }
96
97 /* C14-13:2 */
98 if (2 <= *hop_ptr && *hop_ptr <= hop_cnt) {
99 if (node_type != RDMA_NODE_IB_SWITCH)
100 return IB_SMI_DISCARD;
101
102 (*hop_ptr)--;
103 return (return_path[*hop_ptr] ==
104 port_num ? IB_SMI_HANDLE : IB_SMI_DISCARD);
105 }
106
107 /* C14-13:3 -- at the end of the DR segment of path */
108 if (*hop_ptr == 1) {
109 (*hop_ptr)--;
110 /* C14-13:3 -- SMPs destined for SM shouldn't be here */
111 return (node_type == RDMA_NODE_IB_SWITCH ||
112 dr_slid_is_permissive ?
113 IB_SMI_HANDLE : IB_SMI_DISCARD);
114 }
115
116 /* C14-13:4 -- hop_ptr = 0 -> should have gone to SM */
117 if (*hop_ptr == 0)
118 return IB_SMI_HANDLE;
119
120 /* C14-13:5 -- Check for unreasonable hop pointer */
121 return IB_SMI_DISCARD;
122 }
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/*
126 * Fixup a directed route SMP for sending
Ira Weinyb78d28a2015-05-08 13:10:04 -0400127 * Return IB_SMI_DISCARD if the SMP should be discarded
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
Hal Rosenstockde493d42007-04-02 11:24:07 -0400129enum smi_action smi_handle_dr_smp_send(struct ib_smp *smp,
130 u8 node_type, int port_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Ira Weiny92f15052015-06-06 14:38:25 -0400132 return __smi_handle_dr_smp_send(node_type, port_num,
133 &smp->hop_ptr, smp->hop_cnt,
134 smp->initial_path,
135 smp->return_path,
136 ib_get_smp_direction(smp),
137 smp->dr_dlid == IB_LID_PERMISSIVE,
138 smp->dr_slid == IB_LID_PERMISSIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Ira Weinyf28990b2015-06-06 14:38:34 -0400141enum smi_action opa_smi_handle_dr_smp_send(struct opa_smp *smp,
142 u8 node_type, int port_num)
143{
144 return __smi_handle_dr_smp_send(node_type, port_num,
145 &smp->hop_ptr, smp->hop_cnt,
146 smp->route.dr.initial_path,
147 smp->route.dr.return_path,
148 opa_get_smp_direction(smp),
149 smp->route.dr.dr_dlid ==
150 OPA_LID_PERMISSIVE,
151 smp->route.dr.dr_slid ==
152 OPA_LID_PERMISSIVE);
153}
154
Ira Weiny86f0e672015-06-06 14:38:26 -0400155static enum smi_action __smi_handle_dr_smp_recv(u8 node_type, int port_num,
156 int phys_port_cnt,
157 u8 *hop_ptr, u8 hop_cnt,
158 const u8 *initial_path,
159 u8 *return_path,
160 u8 direction,
161 bool dr_dlid_is_permissive,
162 bool dr_slid_is_permissive)
163{
164 /* See section 14.2.2.2, Vol 1 IB spec */
165 /* C14-6 -- valid hop_cnt values are from 0 to 63 */
166 if (hop_cnt >= IB_SMP_MAX_PATH_HOPS)
167 return IB_SMI_DISCARD;
168
169 if (!direction) {
170 /* C14-9:1 -- sender should have incremented hop_ptr */
171 if (hop_cnt && *hop_ptr == 0)
172 return IB_SMI_DISCARD;
173
174 /* C14-9:2 -- intermediate hop */
175 if (*hop_ptr && *hop_ptr < hop_cnt) {
176 if (node_type != RDMA_NODE_IB_SWITCH)
177 return IB_SMI_DISCARD;
178
179 return_path[*hop_ptr] = port_num;
180 /* hop_ptr updated when sending */
181 return (initial_path[*hop_ptr+1] <= phys_port_cnt ?
182 IB_SMI_HANDLE : IB_SMI_DISCARD);
183 }
184
185 /* C14-9:3 -- We're at the end of the DR segment of path */
186 if (*hop_ptr == hop_cnt) {
187 if (hop_cnt)
188 return_path[*hop_ptr] = port_num;
189 /* hop_ptr updated when sending */
190
191 return (node_type == RDMA_NODE_IB_SWITCH ||
192 dr_dlid_is_permissive ?
193 IB_SMI_HANDLE : IB_SMI_DISCARD);
194 }
195
196 /* C14-9:4 -- hop_ptr = hop_cnt + 1 -> give to SMA/SM */
197 /* C14-9:5 -- fail unreasonable hop pointer */
198 return (*hop_ptr == hop_cnt + 1 ? IB_SMI_HANDLE : IB_SMI_DISCARD);
199
200 } else {
201
202 /* C14-13:1 */
203 if (hop_cnt && *hop_ptr == hop_cnt + 1) {
204 (*hop_ptr)--;
205 return (return_path[*hop_ptr] ==
206 port_num ? IB_SMI_HANDLE : IB_SMI_DISCARD);
207 }
208
209 /* C14-13:2 */
210 if (2 <= *hop_ptr && *hop_ptr <= hop_cnt) {
211 if (node_type != RDMA_NODE_IB_SWITCH)
212 return IB_SMI_DISCARD;
213
214 /* hop_ptr updated when sending */
215 return (return_path[*hop_ptr-1] <= phys_port_cnt ?
216 IB_SMI_HANDLE : IB_SMI_DISCARD);
217 }
218
219 /* C14-13:3 -- We're at the end of the DR segment of path */
220 if (*hop_ptr == 1) {
221 if (dr_slid_is_permissive) {
222 /* giving SMP to SM - update hop_ptr */
223 (*hop_ptr)--;
224 return IB_SMI_HANDLE;
225 }
226 /* hop_ptr updated when sending */
227 return (node_type == RDMA_NODE_IB_SWITCH ?
228 IB_SMI_HANDLE : IB_SMI_DISCARD);
229 }
230
231 /* C14-13:4 -- hop_ptr = 0 -> give to SM */
232 /* C14-13:5 -- Check for unreasonable hop pointer */
233 return (*hop_ptr == 0 ? IB_SMI_HANDLE : IB_SMI_DISCARD);
234 }
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/*
238 * Adjust information for a received SMP
Ira Weinyb78d28a2015-05-08 13:10:04 -0400239 * Return IB_SMI_DISCARD if the SMP should be dropped
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 */
Hal Rosenstockde493d42007-04-02 11:24:07 -0400241enum smi_action smi_handle_dr_smp_recv(struct ib_smp *smp, u8 node_type,
242 int port_num, int phys_port_cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Ira Weiny86f0e672015-06-06 14:38:26 -0400244 return __smi_handle_dr_smp_recv(node_type, port_num, phys_port_cnt,
245 &smp->hop_ptr, smp->hop_cnt,
246 smp->initial_path,
247 smp->return_path,
248 ib_get_smp_direction(smp),
249 smp->dr_dlid == IB_LID_PERMISSIVE,
250 smp->dr_slid == IB_LID_PERMISSIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Ira Weinyf28990b2015-06-06 14:38:34 -0400253/*
254 * Adjust information for a received SMP
255 * Return IB_SMI_DISCARD if the SMP should be dropped
256 */
257enum smi_action opa_smi_handle_dr_smp_recv(struct opa_smp *smp, u8 node_type,
258 int port_num, int phys_port_cnt)
259{
260 return __smi_handle_dr_smp_recv(node_type, port_num, phys_port_cnt,
261 &smp->hop_ptr, smp->hop_cnt,
262 smp->route.dr.initial_path,
263 smp->route.dr.return_path,
264 opa_get_smp_direction(smp),
265 smp->route.dr.dr_dlid ==
266 OPA_LID_PERMISSIVE,
267 smp->route.dr.dr_slid ==
268 OPA_LID_PERMISSIVE);
269}
270
Ira Weiny29869ea2015-06-06 14:38:27 -0400271static enum smi_forward_action __smi_check_forward_dr_smp(u8 hop_ptr, u8 hop_cnt,
272 u8 direction,
273 bool dr_dlid_is_permissive,
274 bool dr_slid_is_permissive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Ira Weiny29869ea2015-06-06 14:38:27 -0400276 if (!direction) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /* C14-9:2 -- intermediate hop */
278 if (hop_ptr && hop_ptr < hop_cnt)
Hal Rosenstock1bae4db2007-05-14 17:21:52 -0400279 return IB_SMI_FORWARD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 /* C14-9:3 -- at the end of the DR segment of path */
282 if (hop_ptr == hop_cnt)
Ira Weiny29869ea2015-06-06 14:38:27 -0400283 return (dr_dlid_is_permissive ?
Hal Rosenstockde493d42007-04-02 11:24:07 -0400284 IB_SMI_SEND : IB_SMI_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /* C14-9:4 -- hop_ptr = hop_cnt + 1 -> give to SMA/SM */
287 if (hop_ptr == hop_cnt + 1)
Hal Rosenstockde493d42007-04-02 11:24:07 -0400288 return IB_SMI_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 } else {
Hal Rosenstockde493d42007-04-02 11:24:07 -0400290 /* C14-13:2 -- intermediate hop */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (2 <= hop_ptr && hop_ptr <= hop_cnt)
Hal Rosenstock1bae4db2007-05-14 17:21:52 -0400292 return IB_SMI_FORWARD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /* C14-13:3 -- at the end of the DR segment of path */
295 if (hop_ptr == 1)
Ira Weiny29869ea2015-06-06 14:38:27 -0400296 return (!dr_slid_is_permissive ?
Hal Rosenstockde493d42007-04-02 11:24:07 -0400297 IB_SMI_SEND : IB_SMI_LOCAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
Hal Rosenstockde493d42007-04-02 11:24:07 -0400299 return IB_SMI_LOCAL;
Ira Weiny29869ea2015-06-06 14:38:27 -0400300
301}
302
303enum smi_forward_action smi_check_forward_dr_smp(struct ib_smp *smp)
304{
305 return __smi_check_forward_dr_smp(smp->hop_ptr, smp->hop_cnt,
306 ib_get_smp_direction(smp),
307 smp->dr_dlid == IB_LID_PERMISSIVE,
308 smp->dr_slid == IB_LID_PERMISSIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
Hal Rosenstock1bae4db2007-05-14 17:21:52 -0400310
Ira Weinyf28990b2015-06-06 14:38:34 -0400311enum smi_forward_action opa_smi_check_forward_dr_smp(struct opa_smp *smp)
312{
313 return __smi_check_forward_dr_smp(smp->hop_ptr, smp->hop_cnt,
314 opa_get_smp_direction(smp),
315 smp->route.dr.dr_dlid ==
316 OPA_LID_PERMISSIVE,
317 smp->route.dr.dr_slid ==
318 OPA_LID_PERMISSIVE);
319}
320
Hal Rosenstock1bae4db2007-05-14 17:21:52 -0400321/*
322 * Return the forwarding port number from initial_path for outgoing SMP and
323 * from return_path for returning SMP
324 */
325int smi_get_fwd_port(struct ib_smp *smp)
326{
327 return (!ib_get_smp_direction(smp) ? smp->initial_path[smp->hop_ptr+1] :
328 smp->return_path[smp->hop_ptr-1]);
329}
Ira Weinyf28990b2015-06-06 14:38:34 -0400330
331/*
332 * Return the forwarding port number from initial_path for outgoing SMP and
333 * from return_path for returning SMP
334 */
335int opa_smi_get_fwd_port(struct opa_smp *smp)
336{
337 return !opa_get_smp_direction(smp) ? smp->route.dr.initial_path[smp->hop_ptr+1] :
338 smp->route.dr.return_path[smp->hop_ptr-1];
339}