1 // SPDX-License-Identifier: GPL-2.0
3 * Shared Memory Communications over RDMA (SMC-R) and RoCE
5 * Generic netlink support functions to configure an SMC-R PNET table
7 * Copyright IBM Corp. 2016
9 * Author(s): Thomas Richter <tmricht@linux.vnet.ibm.com>
12 #include <linux/module.h>
13 #include <linux/list.h>
14 #include <linux/ctype.h>
15 #include <net/netlink.h>
16 #include <net/genetlink.h>
18 #include <uapi/linux/if.h>
19 #include <uapi/linux/smc.h>
21 #include <rdma/ib_verbs.h>
23 #include <net/netns/generic.h>
24 #include "smc_netns.h"
30 #define SMC_ASCII_BLANK 32
32 static struct net_device
*pnet_find_base_ndev(struct net_device
*ndev
);
34 static struct nla_policy smc_pnet_policy
[SMC_PNETID_MAX
+ 1] = {
36 .type
= NLA_NUL_STRING
,
37 .len
= SMC_MAX_PNETID_LEN
39 [SMC_PNETID_ETHNAME
] = {
40 .type
= NLA_NUL_STRING
,
43 [SMC_PNETID_IBNAME
] = {
44 .type
= NLA_NUL_STRING
,
45 .len
= IB_DEVICE_NAME_MAX
- 1
47 [SMC_PNETID_IBPORT
] = { .type
= NLA_U8
}
50 static struct genl_family smc_pnet_nl_family
;
53 * struct smc_user_pnetentry - pnet identifier name entry for/from user
55 * @pnet_name: Pnet identifier name
56 * @ndev: pointer to network device.
57 * @smcibdev: Pointer to IB device.
58 * @ib_port: Port of IB device.
59 * @smcd_dev: Pointer to smcd device.
61 struct smc_user_pnetentry
{
62 struct list_head list
;
63 char pnet_name
[SMC_MAX_PNETID_LEN
+ 1];
64 struct net_device
*ndev
;
65 struct smc_ib_device
*smcibdev
;
67 struct smcd_dev
*smcd_dev
;
70 /* pnet entry stored in pnet table */
71 struct smc_pnetentry
{
72 struct list_head list
;
73 char pnet_name
[SMC_MAX_PNETID_LEN
+ 1];
74 struct net_device
*ndev
;
77 /* Check if two given pnetids match */
78 static bool smc_pnet_match(u8
*pnetid1
, u8
*pnetid2
)
82 for (i
= 0; i
< SMC_MAX_PNETID_LEN
; i
++) {
83 if ((pnetid1
[i
] == 0 || pnetid1
[i
] == SMC_ASCII_BLANK
) &&
84 (pnetid2
[i
] == 0 || pnetid2
[i
] == SMC_ASCII_BLANK
))
86 if (pnetid1
[i
] != pnetid2
[i
])
92 /* Remove a pnetid from the pnet table.
94 static int smc_pnet_remove_by_pnetid(struct net
*net
, char *pnet_name
)
96 struct smc_pnetentry
*pnetelem
, *tmp_pe
;
97 struct smc_pnettable
*pnettable
;
98 struct smc_ib_device
*ibdev
;
99 struct smcd_dev
*smcd_dev
;
104 /* get pnettable for namespace */
105 sn
= net_generic(net
, smc_net_id
);
106 pnettable
= &sn
->pnettable
;
108 /* remove netdevices */
109 write_lock(&pnettable
->lock
);
110 list_for_each_entry_safe(pnetelem
, tmp_pe
, &pnettable
->pnetlist
,
113 smc_pnet_match(pnetelem
->pnet_name
, pnet_name
)) {
114 list_del(&pnetelem
->list
);
115 dev_put(pnetelem
->ndev
);
120 write_unlock(&pnettable
->lock
);
122 /* if this is not the initial namespace, stop here */
123 if (net
!= &init_net
)
126 /* remove ib devices */
127 spin_lock(&smc_ib_devices
.lock
);
128 list_for_each_entry(ibdev
, &smc_ib_devices
.list
, list
) {
129 for (ibport
= 0; ibport
< SMC_MAX_PORTS
; ibport
++) {
130 if (ibdev
->pnetid_by_user
[ibport
] &&
132 smc_pnet_match(pnet_name
,
133 ibdev
->pnetid
[ibport
]))) {
134 memset(ibdev
->pnetid
[ibport
], 0,
136 ibdev
->pnetid_by_user
[ibport
] = false;
141 spin_unlock(&smc_ib_devices
.lock
);
142 /* remove smcd devices */
143 spin_lock(&smcd_dev_list
.lock
);
144 list_for_each_entry(smcd_dev
, &smcd_dev_list
.list
, list
) {
145 if (smcd_dev
->pnetid_by_user
&&
147 smc_pnet_match(pnet_name
, smcd_dev
->pnetid
))) {
148 memset(smcd_dev
->pnetid
, 0, SMC_MAX_PNETID_LEN
);
149 smcd_dev
->pnetid_by_user
= false;
153 spin_unlock(&smcd_dev_list
.lock
);
157 /* Remove a pnet entry mentioning a given network device from the pnet table.
159 static int smc_pnet_remove_by_ndev(struct net_device
*ndev
)
161 struct smc_pnetentry
*pnetelem
, *tmp_pe
;
162 struct smc_pnettable
*pnettable
;
163 struct net
*net
= dev_net(ndev
);
167 /* get pnettable for namespace */
168 sn
= net_generic(net
, smc_net_id
);
169 pnettable
= &sn
->pnettable
;
171 write_lock(&pnettable
->lock
);
172 list_for_each_entry_safe(pnetelem
, tmp_pe
, &pnettable
->pnetlist
, list
) {
173 if (pnetelem
->ndev
== ndev
) {
174 list_del(&pnetelem
->list
);
175 dev_put(pnetelem
->ndev
);
181 write_unlock(&pnettable
->lock
);
185 /* Append a pnetid to the end of the pnet table if not already on this list.
187 static int smc_pnet_enter(struct smc_pnettable
*pnettable
,
188 struct smc_user_pnetentry
*new_pnetelem
)
190 u8 pnet_null
[SMC_MAX_PNETID_LEN
] = {0};
191 u8 ndev_pnetid
[SMC_MAX_PNETID_LEN
];
192 struct smc_pnetentry
*tmp_pnetelem
;
193 struct smc_pnetentry
*pnetelem
;
194 bool new_smcddev
= false;
195 struct net_device
*ndev
;
196 bool new_netdev
= true;
197 bool new_ibdev
= false;
199 if (new_pnetelem
->smcibdev
) {
200 struct smc_ib_device
*ib_dev
= new_pnetelem
->smcibdev
;
201 int ib_port
= new_pnetelem
->ib_port
;
203 spin_lock(&smc_ib_devices
.lock
);
204 if (smc_pnet_match(ib_dev
->pnetid
[ib_port
- 1], pnet_null
)) {
205 memcpy(ib_dev
->pnetid
[ib_port
- 1],
206 new_pnetelem
->pnet_name
, SMC_MAX_PNETID_LEN
);
207 ib_dev
->pnetid_by_user
[ib_port
- 1] = true;
210 spin_unlock(&smc_ib_devices
.lock
);
212 if (new_pnetelem
->smcd_dev
) {
213 struct smcd_dev
*smcd_dev
= new_pnetelem
->smcd_dev
;
215 spin_lock(&smcd_dev_list
.lock
);
216 if (smc_pnet_match(smcd_dev
->pnetid
, pnet_null
)) {
217 memcpy(smcd_dev
->pnetid
, new_pnetelem
->pnet_name
,
219 smcd_dev
->pnetid_by_user
= true;
222 spin_unlock(&smcd_dev_list
.lock
);
225 if (!new_pnetelem
->ndev
)
226 return (new_ibdev
|| new_smcddev
) ? 0 : -EEXIST
;
228 /* check if (base) netdev already has a pnetid. If there is one, we do
229 * not want to add a pnet table entry
231 ndev
= pnet_find_base_ndev(new_pnetelem
->ndev
);
232 if (!smc_pnetid_by_dev_port(ndev
->dev
.parent
, ndev
->dev_port
,
234 return (new_ibdev
|| new_smcddev
) ? 0 : -EEXIST
;
236 /* add a new netdev entry to the pnet table if there isn't one */
237 tmp_pnetelem
= kzalloc(sizeof(*pnetelem
), GFP_KERNEL
);
240 memcpy(tmp_pnetelem
->pnet_name
, new_pnetelem
->pnet_name
,
242 tmp_pnetelem
->ndev
= new_pnetelem
->ndev
;
244 write_lock(&pnettable
->lock
);
245 list_for_each_entry(pnetelem
, &pnettable
->pnetlist
, list
) {
246 if (pnetelem
->ndev
== new_pnetelem
->ndev
)
250 dev_hold(tmp_pnetelem
->ndev
);
251 list_add_tail(&tmp_pnetelem
->list
, &pnettable
->pnetlist
);
252 write_unlock(&pnettable
->lock
);
254 write_unlock(&pnettable
->lock
);
258 return (new_netdev
|| new_ibdev
|| new_smcddev
) ? 0 : -EEXIST
;
261 /* The limit for pnetid is 16 characters.
262 * Valid characters should be (single-byte character set) a-z, A-Z, 0-9.
263 * Lower case letters are converted to upper case.
264 * Interior blanks should not be used.
266 static bool smc_pnetid_valid(const char *pnet_name
, char *pnetid
)
268 char *bf
= skip_spaces(pnet_name
);
269 size_t len
= strlen(bf
);
270 char *end
= bf
+ len
;
274 while (--end
>= bf
&& isspace(*end
))
276 if (end
- bf
>= SMC_MAX_PNETID_LEN
)
281 *pnetid
++ = islower(*bf
) ? toupper(*bf
) : *bf
;
288 /* Find an infiniband device by a given name. The device might not exist. */
289 static struct smc_ib_device
*smc_pnet_find_ib(char *ib_name
)
291 struct smc_ib_device
*ibdev
;
293 spin_lock(&smc_ib_devices
.lock
);
294 list_for_each_entry(ibdev
, &smc_ib_devices
.list
, list
) {
295 if (!strncmp(ibdev
->ibdev
->name
, ib_name
,
296 sizeof(ibdev
->ibdev
->name
)) ||
297 !strncmp(dev_name(ibdev
->ibdev
->dev
.parent
), ib_name
,
298 IB_DEVICE_NAME_MAX
- 1)) {
304 spin_unlock(&smc_ib_devices
.lock
);
308 /* Find an smcd device by a given name. The device might not exist. */
309 static struct smcd_dev
*smc_pnet_find_smcd(char *smcd_name
)
311 struct smcd_dev
*smcd_dev
;
313 spin_lock(&smcd_dev_list
.lock
);
314 list_for_each_entry(smcd_dev
, &smcd_dev_list
.list
, list
) {
315 if (!strncmp(dev_name(&smcd_dev
->dev
), smcd_name
,
316 IB_DEVICE_NAME_MAX
- 1))
321 spin_unlock(&smcd_dev_list
.lock
);
325 /* Parse the supplied netlink attributes and fill a pnetentry structure.
326 * For ethernet and infiniband device names verify that the devices exist.
328 static int smc_pnet_fill_entry(struct net
*net
,
329 struct smc_user_pnetentry
*pnetelem
,
332 char *string
, *ibname
;
335 memset(pnetelem
, 0, sizeof(*pnetelem
));
336 INIT_LIST_HEAD(&pnetelem
->list
);
339 if (!tb
[SMC_PNETID_NAME
])
341 string
= (char *)nla_data(tb
[SMC_PNETID_NAME
]);
342 if (!smc_pnetid_valid(string
, pnetelem
->pnet_name
))
346 if (tb
[SMC_PNETID_ETHNAME
]) {
347 string
= (char *)nla_data(tb
[SMC_PNETID_ETHNAME
]);
348 pnetelem
->ndev
= dev_get_by_name(net
, string
);
353 /* if this is not the initial namespace, stop here */
354 if (net
!= &init_net
)
358 if (tb
[SMC_PNETID_IBNAME
]) {
359 ibname
= (char *)nla_data(tb
[SMC_PNETID_IBNAME
]);
360 ibname
= strim(ibname
);
361 pnetelem
->smcibdev
= smc_pnet_find_ib(ibname
);
362 pnetelem
->smcd_dev
= smc_pnet_find_smcd(ibname
);
363 if (!pnetelem
->smcibdev
&& !pnetelem
->smcd_dev
)
365 if (pnetelem
->smcibdev
) {
366 if (!tb
[SMC_PNETID_IBPORT
])
368 pnetelem
->ib_port
= nla_get_u8(tb
[SMC_PNETID_IBPORT
]);
369 if (pnetelem
->ib_port
< 1 ||
370 pnetelem
->ib_port
> SMC_MAX_PORTS
)
379 dev_put(pnetelem
->ndev
);
383 /* Convert an smc_pnetentry to a netlink attribute sequence */
384 static int smc_pnet_set_nla(struct sk_buff
*msg
,
385 struct smc_user_pnetentry
*pnetelem
)
387 if (nla_put_string(msg
, SMC_PNETID_NAME
, pnetelem
->pnet_name
))
389 if (pnetelem
->ndev
) {
390 if (nla_put_string(msg
, SMC_PNETID_ETHNAME
,
391 pnetelem
->ndev
->name
))
394 if (nla_put_string(msg
, SMC_PNETID_ETHNAME
, "n/a"))
397 if (pnetelem
->smcibdev
) {
398 if (nla_put_string(msg
, SMC_PNETID_IBNAME
,
399 dev_name(pnetelem
->smcibdev
->ibdev
->dev
.parent
)) ||
400 nla_put_u8(msg
, SMC_PNETID_IBPORT
, pnetelem
->ib_port
))
402 } else if (pnetelem
->smcd_dev
) {
403 if (nla_put_string(msg
, SMC_PNETID_IBNAME
,
404 dev_name(&pnetelem
->smcd_dev
->dev
)) ||
405 nla_put_u8(msg
, SMC_PNETID_IBPORT
, 1))
408 if (nla_put_string(msg
, SMC_PNETID_IBNAME
, "n/a") ||
409 nla_put_u8(msg
, SMC_PNETID_IBPORT
, 0xff))
416 static int smc_pnet_add(struct sk_buff
*skb
, struct genl_info
*info
)
418 struct net
*net
= genl_info_net(info
);
419 struct smc_user_pnetentry pnetelem
;
420 struct smc_pnettable
*pnettable
;
424 /* get pnettable for namespace */
425 sn
= net_generic(net
, smc_net_id
);
426 pnettable
= &sn
->pnettable
;
428 rc
= smc_pnet_fill_entry(net
, &pnetelem
, info
->attrs
);
430 rc
= smc_pnet_enter(pnettable
, &pnetelem
);
432 dev_put(pnetelem
.ndev
);
436 static int smc_pnet_del(struct sk_buff
*skb
, struct genl_info
*info
)
438 struct net
*net
= genl_info_net(info
);
440 if (!info
->attrs
[SMC_PNETID_NAME
])
442 return smc_pnet_remove_by_pnetid(net
,
443 (char *)nla_data(info
->attrs
[SMC_PNETID_NAME
]));
446 static int smc_pnet_dump_start(struct netlink_callback
*cb
)
452 static int smc_pnet_dumpinfo(struct sk_buff
*skb
,
453 u32 portid
, u32 seq
, u32 flags
,
454 struct smc_user_pnetentry
*pnetelem
)
458 hdr
= genlmsg_put(skb
, portid
, seq
, &smc_pnet_nl_family
,
459 flags
, SMC_PNETID_GET
);
462 if (smc_pnet_set_nla(skb
, pnetelem
) < 0) {
463 genlmsg_cancel(skb
, hdr
);
466 genlmsg_end(skb
, hdr
);
470 static int _smc_pnet_dump(struct net
*net
, struct sk_buff
*skb
, u32 portid
,
471 u32 seq
, u8
*pnetid
, int start_idx
)
473 struct smc_user_pnetentry tmp_entry
;
474 struct smc_pnettable
*pnettable
;
475 struct smc_pnetentry
*pnetelem
;
476 struct smc_ib_device
*ibdev
;
477 struct smcd_dev
*smcd_dev
;
482 /* get pnettable for namespace */
483 sn
= net_generic(net
, smc_net_id
);
484 pnettable
= &sn
->pnettable
;
486 /* dump netdevices */
487 read_lock(&pnettable
->lock
);
488 list_for_each_entry(pnetelem
, &pnettable
->pnetlist
, list
) {
489 if (pnetid
&& !smc_pnet_match(pnetelem
->pnet_name
, pnetid
))
491 if (idx
++ < start_idx
)
493 memset(&tmp_entry
, 0, sizeof(tmp_entry
));
494 memcpy(&tmp_entry
.pnet_name
, pnetelem
->pnet_name
,
496 tmp_entry
.ndev
= pnetelem
->ndev
;
497 if (smc_pnet_dumpinfo(skb
, portid
, seq
, NLM_F_MULTI
,
503 read_unlock(&pnettable
->lock
);
505 /* if this is not the initial namespace, stop here */
506 if (net
!= &init_net
)
509 /* dump ib devices */
510 spin_lock(&smc_ib_devices
.lock
);
511 list_for_each_entry(ibdev
, &smc_ib_devices
.list
, list
) {
512 for (ibport
= 0; ibport
< SMC_MAX_PORTS
; ibport
++) {
513 if (ibdev
->pnetid_by_user
[ibport
]) {
515 !smc_pnet_match(ibdev
->pnetid
[ibport
],
518 if (idx
++ < start_idx
)
520 memset(&tmp_entry
, 0, sizeof(tmp_entry
));
521 memcpy(&tmp_entry
.pnet_name
,
522 ibdev
->pnetid
[ibport
],
524 tmp_entry
.smcibdev
= ibdev
;
525 tmp_entry
.ib_port
= ibport
+ 1;
526 if (smc_pnet_dumpinfo(skb
, portid
, seq
,
535 spin_unlock(&smc_ib_devices
.lock
);
537 /* dump smcd devices */
538 spin_lock(&smcd_dev_list
.lock
);
539 list_for_each_entry(smcd_dev
, &smcd_dev_list
.list
, list
) {
540 if (smcd_dev
->pnetid_by_user
) {
541 if (pnetid
&& !smc_pnet_match(smcd_dev
->pnetid
, pnetid
))
543 if (idx
++ < start_idx
)
545 memset(&tmp_entry
, 0, sizeof(tmp_entry
));
546 memcpy(&tmp_entry
.pnet_name
, smcd_dev
->pnetid
,
548 tmp_entry
.smcd_dev
= smcd_dev
;
549 if (smc_pnet_dumpinfo(skb
, portid
, seq
, NLM_F_MULTI
,
556 spin_unlock(&smcd_dev_list
.lock
);
561 static int smc_pnet_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
563 struct net
*net
= sock_net(skb
->sk
);
566 idx
= _smc_pnet_dump(net
, skb
, NETLINK_CB(cb
->skb
).portid
,
567 cb
->nlh
->nlmsg_seq
, NULL
, cb
->args
[0]);
573 /* Retrieve one PNETID entry */
574 static int smc_pnet_get(struct sk_buff
*skb
, struct genl_info
*info
)
576 struct net
*net
= genl_info_net(info
);
580 if (!info
->attrs
[SMC_PNETID_NAME
])
583 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
587 _smc_pnet_dump(net
, msg
, info
->snd_portid
, info
->snd_seq
,
588 nla_data(info
->attrs
[SMC_PNETID_NAME
]), 0);
590 /* finish multi part message and send it */
591 hdr
= nlmsg_put(msg
, info
->snd_portid
, info
->snd_seq
, NLMSG_DONE
, 0,
597 return genlmsg_reply(msg
, info
);
600 /* Remove and delete all pnetids from pnet table.
602 static int smc_pnet_flush(struct sk_buff
*skb
, struct genl_info
*info
)
604 struct net
*net
= genl_info_net(info
);
606 return smc_pnet_remove_by_pnetid(net
, NULL
);
609 /* SMC_PNETID generic netlink operation definition */
610 static const struct genl_ops smc_pnet_ops
[] = {
612 .cmd
= SMC_PNETID_GET
,
613 .flags
= GENL_ADMIN_PERM
,
614 .policy
= smc_pnet_policy
,
615 .doit
= smc_pnet_get
,
616 .dumpit
= smc_pnet_dump
,
617 .start
= smc_pnet_dump_start
620 .cmd
= SMC_PNETID_ADD
,
621 .flags
= GENL_ADMIN_PERM
,
622 .policy
= smc_pnet_policy
,
626 .cmd
= SMC_PNETID_DEL
,
627 .flags
= GENL_ADMIN_PERM
,
628 .policy
= smc_pnet_policy
,
632 .cmd
= SMC_PNETID_FLUSH
,
633 .flags
= GENL_ADMIN_PERM
,
634 .policy
= smc_pnet_policy
,
635 .doit
= smc_pnet_flush
639 /* SMC_PNETID family definition */
640 static struct genl_family smc_pnet_nl_family __ro_after_init
= {
642 .name
= SMCR_GENL_FAMILY_NAME
,
643 .version
= SMCR_GENL_FAMILY_VERSION
,
644 .maxattr
= SMC_PNETID_MAX
,
646 .module
= THIS_MODULE
,
648 .n_ops
= ARRAY_SIZE(smc_pnet_ops
)
651 static int smc_pnet_netdev_event(struct notifier_block
*this,
652 unsigned long event
, void *ptr
)
654 struct net_device
*event_dev
= netdev_notifier_info_to_dev(ptr
);
658 case NETDEV_UNREGISTER
:
659 smc_pnet_remove_by_ndev(event_dev
);
666 static struct notifier_block smc_netdev_notifier
= {
667 .notifier_call
= smc_pnet_netdev_event
670 /* init network namespace */
671 int smc_pnet_net_init(struct net
*net
)
673 struct smc_net
*sn
= net_generic(net
, smc_net_id
);
674 struct smc_pnettable
*pnettable
= &sn
->pnettable
;
676 INIT_LIST_HEAD(&pnettable
->pnetlist
);
677 rwlock_init(&pnettable
->lock
);
682 int __init
smc_pnet_init(void)
686 rc
= genl_register_family(&smc_pnet_nl_family
);
689 rc
= register_netdevice_notifier(&smc_netdev_notifier
);
691 genl_unregister_family(&smc_pnet_nl_family
);
695 /* exit network namespace */
696 void smc_pnet_net_exit(struct net
*net
)
698 /* flush pnet table */
699 smc_pnet_remove_by_pnetid(net
, NULL
);
702 void smc_pnet_exit(void)
704 unregister_netdevice_notifier(&smc_netdev_notifier
);
705 genl_unregister_family(&smc_pnet_nl_family
);
708 /* Determine one base device for stacked net devices.
709 * If the lower device level contains more than one devices
710 * (for instance with bonding slaves), just the first device
711 * is used to reach a base device.
713 static struct net_device
*pnet_find_base_ndev(struct net_device
*ndev
)
718 nest_lvl
= dev_get_nest_level(ndev
);
719 for (i
= 0; i
< nest_lvl
; i
++) {
720 struct list_head
*lower
= &ndev
->adj_list
.lower
;
722 if (list_empty(lower
))
725 ndev
= netdev_lower_get_next(ndev
, &lower
);
731 static int smc_pnet_find_ndev_pnetid_by_table(struct net_device
*ndev
,
734 struct smc_pnettable
*pnettable
;
735 struct net
*net
= dev_net(ndev
);
736 struct smc_pnetentry
*pnetelem
;
740 /* get pnettable for namespace */
741 sn
= net_generic(net
, smc_net_id
);
742 pnettable
= &sn
->pnettable
;
744 read_lock(&pnettable
->lock
);
745 list_for_each_entry(pnetelem
, &pnettable
->pnetlist
, list
) {
746 if (ndev
== pnetelem
->ndev
) {
747 /* get pnetid of netdev device */
748 memcpy(pnetid
, pnetelem
->pnet_name
, SMC_MAX_PNETID_LEN
);
753 read_unlock(&pnettable
->lock
);
757 /* if handshake network device belongs to a roce device, return its
760 static void smc_pnet_find_rdma_dev(struct net_device
*netdev
,
761 struct smc_ib_device
**smcibdev
,
762 u8
*ibport
, unsigned short vlan_id
, u8 gid
[])
764 struct smc_ib_device
*ibdev
;
766 spin_lock(&smc_ib_devices
.lock
);
767 list_for_each_entry(ibdev
, &smc_ib_devices
.list
, list
) {
768 struct net_device
*ndev
;
771 for (i
= 1; i
<= SMC_MAX_PORTS
; i
++) {
772 if (!rdma_is_port_valid(ibdev
->ibdev
, i
))
774 if (!ibdev
->ibdev
->ops
.get_netdev
)
776 ndev
= ibdev
->ibdev
->ops
.get_netdev(ibdev
->ibdev
, i
);
780 if (netdev
== ndev
&&
781 smc_ib_port_active(ibdev
, i
) &&
782 !smc_ib_determine_gid(ibdev
, i
, vlan_id
, gid
,
790 spin_unlock(&smc_ib_devices
.lock
);
793 /* Determine the corresponding IB device port based on the hardware PNETID.
794 * Searching stops at the first matching active IB device port with vlan_id
796 * If nothing found, check pnetid table.
797 * If nothing found, try to use handshake device
799 static void smc_pnet_find_roce_by_pnetid(struct net_device
*ndev
,
800 struct smc_ib_device
**smcibdev
,
801 u8
*ibport
, unsigned short vlan_id
,
804 u8 ndev_pnetid
[SMC_MAX_PNETID_LEN
];
805 struct smc_ib_device
*ibdev
;
808 ndev
= pnet_find_base_ndev(ndev
);
809 if (smc_pnetid_by_dev_port(ndev
->dev
.parent
, ndev
->dev_port
,
811 smc_pnet_find_ndev_pnetid_by_table(ndev
, ndev_pnetid
)) {
812 smc_pnet_find_rdma_dev(ndev
, smcibdev
, ibport
, vlan_id
, gid
);
813 return; /* pnetid could not be determined */
816 spin_lock(&smc_ib_devices
.lock
);
817 list_for_each_entry(ibdev
, &smc_ib_devices
.list
, list
) {
818 for (i
= 1; i
<= SMC_MAX_PORTS
; i
++) {
819 if (!rdma_is_port_valid(ibdev
->ibdev
, i
))
821 if (smc_pnet_match(ibdev
->pnetid
[i
- 1], ndev_pnetid
) &&
822 smc_ib_port_active(ibdev
, i
) &&
823 !smc_ib_determine_gid(ibdev
, i
, vlan_id
, gid
,
832 spin_unlock(&smc_ib_devices
.lock
);
835 static void smc_pnet_find_ism_by_pnetid(struct net_device
*ndev
,
836 struct smcd_dev
**smcismdev
)
838 u8 ndev_pnetid
[SMC_MAX_PNETID_LEN
];
839 struct smcd_dev
*ismdev
;
841 ndev
= pnet_find_base_ndev(ndev
);
842 if (smc_pnetid_by_dev_port(ndev
->dev
.parent
, ndev
->dev_port
,
844 smc_pnet_find_ndev_pnetid_by_table(ndev
, ndev_pnetid
))
845 return; /* pnetid could not be determined */
847 spin_lock(&smcd_dev_list
.lock
);
848 list_for_each_entry(ismdev
, &smcd_dev_list
.list
, list
) {
849 if (smc_pnet_match(ismdev
->pnetid
, ndev_pnetid
)) {
854 spin_unlock(&smcd_dev_list
.lock
);
857 /* PNET table analysis for a given sock:
858 * determine ib_device and port belonging to used internal TCP socket
859 * ethernet interface.
861 void smc_pnet_find_roce_resource(struct sock
*sk
,
862 struct smc_ib_device
**smcibdev
, u8
*ibport
,
863 unsigned short vlan_id
, u8 gid
[])
865 struct dst_entry
*dst
= sk_dst_get(sk
);
875 smc_pnet_find_roce_by_pnetid(dst
->dev
, smcibdev
, ibport
, vlan_id
, gid
);
883 void smc_pnet_find_ism_resource(struct sock
*sk
, struct smcd_dev
**smcismdev
)
885 struct dst_entry
*dst
= sk_dst_get(sk
);
893 smc_pnet_find_ism_by_pnetid(dst
->dev
, smcismdev
);