blob: db9825c01e0af2b17454b27e4d47ee035f42c8a2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Thomas Richter6812baa2017-01-09 16:55:15 +01002/*
3 * Shared Memory Communications over RDMA (SMC-R) and RoCE
4 *
5 * Generic netlink support functions to configure an SMC-R PNET table
6 *
7 * Copyright IBM Corp. 2016
8 *
9 * Author(s): Thomas Richter <tmricht@linux.vnet.ibm.com>
10 */
11
12#include <linux/module.h>
13#include <linux/list.h>
14#include <linux/ctype.h>
Ursula Braun92f3cb02020-07-08 17:05:13 +020015#include <linux/mutex.h>
Thomas Richter6812baa2017-01-09 16:55:15 +010016#include <net/netlink.h>
17#include <net/genetlink.h>
18
19#include <uapi/linux/if.h>
20#include <uapi/linux/smc.h>
21
22#include <rdma/ib_verbs.h>
23
Hans Wippel64e28b52019-02-21 13:01:02 +010024#include <net/netns/generic.h>
25#include "smc_netns.h"
26
Thomas Richter6812baa2017-01-09 16:55:15 +010027#include "smc_pnet.h"
28#include "smc_ib.h"
Hans Wippel1619f772018-06-28 19:05:08 +020029#include "smc_ism.h"
Karsten Graulbc36d2f2019-04-12 12:57:26 +020030#include "smc_core.h"
Thomas Richter6812baa2017-01-09 16:55:15 +010031
Ursula Braune888a2e2020-09-26 12:44:26 +020032static struct net_device *__pnet_find_base_ndev(struct net_device *ndev);
Hans Wippel890a2cb2019-02-21 13:01:00 +010033static struct net_device *pnet_find_base_ndev(struct net_device *ndev);
34
Dmitry Vyukov09d03102020-05-25 17:31:58 +020035static const struct nla_policy smc_pnet_policy[SMC_PNETID_MAX + 1] = {
Thomas Richter6812baa2017-01-09 16:55:15 +010036 [SMC_PNETID_NAME] = {
37 .type = NLA_NUL_STRING,
Hans Wippelca8dc132019-01-30 18:51:01 +010038 .len = SMC_MAX_PNETID_LEN
Thomas Richter6812baa2017-01-09 16:55:15 +010039 },
40 [SMC_PNETID_ETHNAME] = {
41 .type = NLA_NUL_STRING,
42 .len = IFNAMSIZ - 1
43 },
44 [SMC_PNETID_IBNAME] = {
45 .type = NLA_NUL_STRING,
46 .len = IB_DEVICE_NAME_MAX - 1
47 },
48 [SMC_PNETID_IBPORT] = { .type = NLA_U8 }
49};
50
51static struct genl_family smc_pnet_nl_family;
52
Karsten Graulfdff7042020-04-29 17:10:37 +020053enum smc_pnet_nametype {
54 SMC_PNET_ETH = 1,
55 SMC_PNET_IB = 2,
Thomas Richter6812baa2017-01-09 16:55:15 +010056};
57
Hans Wippel890a2cb2019-02-21 13:01:00 +010058/* pnet entry stored in pnet table */
59struct smc_pnetentry {
60 struct list_head list;
61 char pnet_name[SMC_MAX_PNETID_LEN + 1];
Karsten Graulfdff7042020-04-29 17:10:37 +020062 enum smc_pnet_nametype type;
63 union {
64 struct {
65 char eth_name[IFNAMSIZ + 1];
66 struct net_device *ndev;
Eric Dumazetb6064522021-12-06 17:30:36 -080067 netdevice_tracker dev_tracker;
Karsten Graulfdff7042020-04-29 17:10:37 +020068 };
69 struct {
70 char ib_name[IB_DEVICE_NAME_MAX + 1];
71 u8 ib_port;
72 };
73 };
Hans Wippel890a2cb2019-02-21 13:01:00 +010074};
Thomas Richter6812baa2017-01-09 16:55:15 +010075
Karsten Graula304e292020-09-26 12:44:19 +020076/* Check if the pnetid is set */
Ursula Braund70bf4f2020-09-26 12:44:27 +020077bool smc_pnet_is_pnetid_set(u8 *pnetid)
Karsten Graula304e292020-09-26 12:44:19 +020078{
79 if (pnetid[0] == 0 || pnetid[0] == _S)
80 return false;
81 return true;
82}
83
Hans Wippel890a2cb2019-02-21 13:01:00 +010084/* Check if two given pnetids match */
85static bool smc_pnet_match(u8 *pnetid1, u8 *pnetid2)
Thomas Richter6812baa2017-01-09 16:55:15 +010086{
Hans Wippel890a2cb2019-02-21 13:01:00 +010087 int i;
Thomas Richter6812baa2017-01-09 16:55:15 +010088
Hans Wippel890a2cb2019-02-21 13:01:00 +010089 for (i = 0; i < SMC_MAX_PNETID_LEN; i++) {
Karsten Graula304e292020-09-26 12:44:19 +020090 if ((pnetid1[i] == 0 || pnetid1[i] == _S) &&
91 (pnetid2[i] == 0 || pnetid2[i] == _S))
Thomas Richter6812baa2017-01-09 16:55:15 +010092 break;
Hans Wippel890a2cb2019-02-21 13:01:00 +010093 if (pnetid1[i] != pnetid2[i])
94 return false;
Thomas Richter6812baa2017-01-09 16:55:15 +010095 }
Hans Wippel890a2cb2019-02-21 13:01:00 +010096 return true;
Thomas Richter6812baa2017-01-09 16:55:15 +010097}
98
99/* Remove a pnetid from the pnet table.
100 */
Hans Wippel64e28b52019-02-21 13:01:02 +0100101static int smc_pnet_remove_by_pnetid(struct net *net, char *pnet_name)
Thomas Richter6812baa2017-01-09 16:55:15 +0100102{
103 struct smc_pnetentry *pnetelem, *tmp_pe;
Hans Wippel64e28b52019-02-21 13:01:02 +0100104 struct smc_pnettable *pnettable;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100105 struct smc_ib_device *ibdev;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100106 struct smcd_dev *smcd_dev;
Hans Wippel64e28b52019-02-21 13:01:02 +0100107 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100108 int rc = -ENOENT;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100109 int ibport;
Thomas Richter6812baa2017-01-09 16:55:15 +0100110
Hans Wippel64e28b52019-02-21 13:01:02 +0100111 /* get pnettable for namespace */
112 sn = net_generic(net, smc_net_id);
113 pnettable = &sn->pnettable;
114
Karsten Graulfdff7042020-04-29 17:10:37 +0200115 /* remove table entry */
Hans Wippel64e28b52019-02-21 13:01:02 +0100116 write_lock(&pnettable->lock);
117 list_for_each_entry_safe(pnetelem, tmp_pe, &pnettable->pnetlist,
Thomas Richter6812baa2017-01-09 16:55:15 +0100118 list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100119 if (!pnet_name ||
120 smc_pnet_match(pnetelem->pnet_name, pnet_name)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100121 list_del(&pnetelem->list);
Karsten Graul0a99be42020-05-05 15:01:20 +0200122 if (pnetelem->type == SMC_PNET_ETH && pnetelem->ndev) {
Eric Dumazetb6064522021-12-06 17:30:36 -0800123 dev_put_track(pnetelem->ndev, &pnetelem->dev_tracker);
Karsten Graul0a99be42020-05-05 15:01:20 +0200124 pr_warn_ratelimited("smc: net device %s "
125 "erased user defined "
126 "pnetid %.16s\n",
127 pnetelem->eth_name,
128 pnetelem->pnet_name);
129 }
Thomas Richter6812baa2017-01-09 16:55:15 +0100130 kfree(pnetelem);
131 rc = 0;
Thomas Richter6812baa2017-01-09 16:55:15 +0100132 }
133 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100134 write_unlock(&pnettable->lock);
135
136 /* if this is not the initial namespace, stop here */
137 if (net != &init_net)
138 return rc;
139
Hans Wippel890a2cb2019-02-21 13:01:00 +0100140 /* remove ib devices */
Ursula Braun92f3cb02020-07-08 17:05:13 +0200141 mutex_lock(&smc_ib_devices.mutex);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100142 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
143 for (ibport = 0; ibport < SMC_MAX_PORTS; ibport++) {
144 if (ibdev->pnetid_by_user[ibport] &&
145 (!pnet_name ||
146 smc_pnet_match(pnet_name,
147 ibdev->pnetid[ibport]))) {
Karsten Graul0a99be42020-05-05 15:01:20 +0200148 pr_warn_ratelimited("smc: ib device %s ibport "
149 "%d erased user defined "
150 "pnetid %.16s\n",
151 ibdev->ibdev->name,
152 ibport + 1,
153 ibdev->pnetid[ibport]);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100154 memset(ibdev->pnetid[ibport], 0,
155 SMC_MAX_PNETID_LEN);
156 ibdev->pnetid_by_user[ibport] = false;
157 rc = 0;
158 }
159 }
160 }
Ursula Braun92f3cb02020-07-08 17:05:13 +0200161 mutex_unlock(&smc_ib_devices.mutex);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100162 /* remove smcd devices */
Ursula Braun82087c02020-07-08 17:05:14 +0200163 mutex_lock(&smcd_dev_list.mutex);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100164 list_for_each_entry(smcd_dev, &smcd_dev_list.list, list) {
165 if (smcd_dev->pnetid_by_user &&
166 (!pnet_name ||
167 smc_pnet_match(pnet_name, smcd_dev->pnetid))) {
Karsten Graul0a99be42020-05-05 15:01:20 +0200168 pr_warn_ratelimited("smc: smcd device %s "
169 "erased user defined pnetid "
170 "%.16s\n", dev_name(&smcd_dev->dev),
171 smcd_dev->pnetid);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100172 memset(smcd_dev->pnetid, 0, SMC_MAX_PNETID_LEN);
173 smcd_dev->pnetid_by_user = false;
174 rc = 0;
175 }
176 }
Ursula Braun82087c02020-07-08 17:05:14 +0200177 mutex_unlock(&smcd_dev_list.mutex);
Thomas Richter6812baa2017-01-09 16:55:15 +0100178 return rc;
179}
180
Karsten Graulfdff7042020-04-29 17:10:37 +0200181/* Add the reference to a given network device to the pnet table.
182 */
183static int smc_pnet_add_by_ndev(struct net_device *ndev)
184{
185 struct smc_pnetentry *pnetelem, *tmp_pe;
186 struct smc_pnettable *pnettable;
187 struct net *net = dev_net(ndev);
188 struct smc_net *sn;
189 int rc = -ENOENT;
190
191 /* get pnettable for namespace */
192 sn = net_generic(net, smc_net_id);
193 pnettable = &sn->pnettable;
194
195 write_lock(&pnettable->lock);
196 list_for_each_entry_safe(pnetelem, tmp_pe, &pnettable->pnetlist, list) {
197 if (pnetelem->type == SMC_PNET_ETH && !pnetelem->ndev &&
198 !strncmp(pnetelem->eth_name, ndev->name, IFNAMSIZ)) {
Eric Dumazetb6064522021-12-06 17:30:36 -0800199 dev_hold_track(ndev, &pnetelem->dev_tracker, GFP_ATOMIC);
Karsten Graulfdff7042020-04-29 17:10:37 +0200200 pnetelem->ndev = ndev;
201 rc = 0;
Karsten Graul0a99be42020-05-05 15:01:20 +0200202 pr_warn_ratelimited("smc: adding net device %s with "
203 "user defined pnetid %.16s\n",
204 pnetelem->eth_name,
205 pnetelem->pnet_name);
Karsten Graulfdff7042020-04-29 17:10:37 +0200206 break;
207 }
208 }
209 write_unlock(&pnettable->lock);
210 return rc;
211}
212
213/* Remove the reference to a given network device from the pnet table.
Thomas Richter6812baa2017-01-09 16:55:15 +0100214 */
215static int smc_pnet_remove_by_ndev(struct net_device *ndev)
216{
217 struct smc_pnetentry *pnetelem, *tmp_pe;
Hans Wippel64e28b52019-02-21 13:01:02 +0100218 struct smc_pnettable *pnettable;
219 struct net *net = dev_net(ndev);
220 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100221 int rc = -ENOENT;
222
Hans Wippel64e28b52019-02-21 13:01:02 +0100223 /* get pnettable for namespace */
224 sn = net_generic(net, smc_net_id);
225 pnettable = &sn->pnettable;
226
227 write_lock(&pnettable->lock);
228 list_for_each_entry_safe(pnetelem, tmp_pe, &pnettable->pnetlist, list) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200229 if (pnetelem->type == SMC_PNET_ETH && pnetelem->ndev == ndev) {
Eric Dumazetb6064522021-12-06 17:30:36 -0800230 dev_put_track(pnetelem->ndev, &pnetelem->dev_tracker);
Karsten Graulfdff7042020-04-29 17:10:37 +0200231 pnetelem->ndev = NULL;
Thomas Richter6812baa2017-01-09 16:55:15 +0100232 rc = 0;
Karsten Graul0a99be42020-05-05 15:01:20 +0200233 pr_warn_ratelimited("smc: removing net device %s with "
234 "user defined pnetid %.16s\n",
235 pnetelem->eth_name,
236 pnetelem->pnet_name);
Thomas Richter6812baa2017-01-09 16:55:15 +0100237 break;
238 }
239 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100240 write_unlock(&pnettable->lock);
Thomas Richter6812baa2017-01-09 16:55:15 +0100241 return rc;
242}
243
Karsten Graulfdff7042020-04-29 17:10:37 +0200244/* Apply pnetid to ib device when no pnetid is set.
Thomas Richter6812baa2017-01-09 16:55:15 +0100245 */
Karsten Graulfdff7042020-04-29 17:10:37 +0200246static bool smc_pnet_apply_ib(struct smc_ib_device *ib_dev, u8 ib_port,
247 char *pnet_name)
Thomas Richter6812baa2017-01-09 16:55:15 +0100248{
Karsten Graulfdff7042020-04-29 17:10:37 +0200249 bool applied = false;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100250
Ursula Braun92f3cb02020-07-08 17:05:13 +0200251 mutex_lock(&smc_ib_devices.mutex);
Karsten Graula304e292020-09-26 12:44:19 +0200252 if (!smc_pnet_is_pnetid_set(ib_dev->pnetid[ib_port - 1])) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200253 memcpy(ib_dev->pnetid[ib_port - 1], pnet_name,
254 SMC_MAX_PNETID_LEN);
255 ib_dev->pnetid_by_user[ib_port - 1] = true;
256 applied = true;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100257 }
Ursula Braun92f3cb02020-07-08 17:05:13 +0200258 mutex_unlock(&smc_ib_devices.mutex);
Karsten Graulfdff7042020-04-29 17:10:37 +0200259 return applied;
260}
Hans Wippelf3d74b22019-02-21 13:01:01 +0100261
Karsten Graulfdff7042020-04-29 17:10:37 +0200262/* Apply pnetid to smcd device when no pnetid is set.
263 */
264static bool smc_pnet_apply_smcd(struct smcd_dev *smcd_dev, char *pnet_name)
265{
Karsten Graulfdff7042020-04-29 17:10:37 +0200266 bool applied = false;
267
Ursula Braun82087c02020-07-08 17:05:14 +0200268 mutex_lock(&smcd_dev_list.mutex);
Karsten Graula304e292020-09-26 12:44:19 +0200269 if (!smc_pnet_is_pnetid_set(smcd_dev->pnetid)) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200270 memcpy(smcd_dev->pnetid, pnet_name, SMC_MAX_PNETID_LEN);
271 smcd_dev->pnetid_by_user = true;
272 applied = true;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100273 }
Ursula Braun82087c02020-07-08 17:05:14 +0200274 mutex_unlock(&smcd_dev_list.mutex);
Karsten Graulfdff7042020-04-29 17:10:37 +0200275 return applied;
Thomas Richter6812baa2017-01-09 16:55:15 +0100276}
277
278/* The limit for pnetid is 16 characters.
279 * Valid characters should be (single-byte character set) a-z, A-Z, 0-9.
280 * Lower case letters are converted to upper case.
281 * Interior blanks should not be used.
282 */
283static bool smc_pnetid_valid(const char *pnet_name, char *pnetid)
284{
285 char *bf = skip_spaces(pnet_name);
286 size_t len = strlen(bf);
287 char *end = bf + len;
288
289 if (!len)
290 return false;
291 while (--end >= bf && isspace(*end))
292 ;
Ursula Braun0afff912018-06-28 19:05:05 +0200293 if (end - bf >= SMC_MAX_PNETID_LEN)
Thomas Richter6812baa2017-01-09 16:55:15 +0100294 return false;
295 while (bf <= end) {
296 if (!isalnum(*bf))
297 return false;
298 *pnetid++ = islower(*bf) ? toupper(*bf) : *bf;
299 bf++;
300 }
301 *pnetid = '\0';
302 return true;
303}
304
305/* Find an infiniband device by a given name. The device might not exist. */
Ursula Braun249633a2017-04-10 14:57:57 +0200306static struct smc_ib_device *smc_pnet_find_ib(char *ib_name)
Thomas Richter6812baa2017-01-09 16:55:15 +0100307{
308 struct smc_ib_device *ibdev;
309
Ursula Braun92f3cb02020-07-08 17:05:13 +0200310 mutex_lock(&smc_ib_devices.mutex);
Thomas Richter6812baa2017-01-09 16:55:15 +0100311 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
312 if (!strncmp(ibdev->ibdev->name, ib_name,
Hans Wippelaf5f60c2019-02-21 13:01:03 +0100313 sizeof(ibdev->ibdev->name)) ||
314 !strncmp(dev_name(ibdev->ibdev->dev.parent), ib_name,
315 IB_DEVICE_NAME_MAX - 1)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100316 goto out;
317 }
318 }
319 ibdev = NULL;
320out:
Ursula Braun92f3cb02020-07-08 17:05:13 +0200321 mutex_unlock(&smc_ib_devices.mutex);
Thomas Richter6812baa2017-01-09 16:55:15 +0100322 return ibdev;
323}
324
Hans Wippelf3d74b22019-02-21 13:01:01 +0100325/* Find an smcd device by a given name. The device might not exist. */
326static struct smcd_dev *smc_pnet_find_smcd(char *smcd_name)
327{
328 struct smcd_dev *smcd_dev;
329
Ursula Braun82087c02020-07-08 17:05:14 +0200330 mutex_lock(&smcd_dev_list.mutex);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100331 list_for_each_entry(smcd_dev, &smcd_dev_list.list, list) {
332 if (!strncmp(dev_name(&smcd_dev->dev), smcd_name,
333 IB_DEVICE_NAME_MAX - 1))
334 goto out;
335 }
336 smcd_dev = NULL;
337out:
Ursula Braun82087c02020-07-08 17:05:14 +0200338 mutex_unlock(&smcd_dev_list.mutex);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100339 return smcd_dev;
340}
341
Karsten Graulfdff7042020-04-29 17:10:37 +0200342static int smc_pnet_add_eth(struct smc_pnettable *pnettable, struct net *net,
343 char *eth_name, char *pnet_name)
Thomas Richter6812baa2017-01-09 16:55:15 +0100344{
Karsten Graulfdff7042020-04-29 17:10:37 +0200345 struct smc_pnetentry *tmp_pe, *new_pe;
346 struct net_device *ndev, *base_ndev;
347 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
348 bool new_netdev;
Eric Biggersd49baa72018-05-13 17:01:30 -0700349 int rc;
Thomas Richter6812baa2017-01-09 16:55:15 +0100350
Karsten Graulfdff7042020-04-29 17:10:37 +0200351 /* check if (base) netdev already has a pnetid. If there is one, we do
352 * not want to add a pnet table entry
353 */
354 rc = -EEXIST;
355 ndev = dev_get_by_name(net, eth_name); /* dev_hold() */
356 if (ndev) {
357 base_ndev = pnet_find_base_ndev(ndev);
358 if (!smc_pnetid_by_dev_port(base_ndev->dev.parent,
359 base_ndev->dev_port, ndev_pnetid))
360 goto out_put;
361 }
362
363 /* add a new netdev entry to the pnet table if there isn't one */
364 rc = -ENOMEM;
365 new_pe = kzalloc(sizeof(*new_pe), GFP_KERNEL);
366 if (!new_pe)
367 goto out_put;
368 new_pe->type = SMC_PNET_ETH;
369 memcpy(new_pe->pnet_name, pnet_name, SMC_MAX_PNETID_LEN);
370 strncpy(new_pe->eth_name, eth_name, IFNAMSIZ);
371 new_pe->ndev = ndev;
Eric Dumazetb6064522021-12-06 17:30:36 -0800372 netdev_tracker_alloc(ndev, &new_pe->dev_tracker, GFP_KERNEL);
Karsten Graulfdff7042020-04-29 17:10:37 +0200373 rc = -EEXIST;
374 new_netdev = true;
375 write_lock(&pnettable->lock);
376 list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) {
377 if (tmp_pe->type == SMC_PNET_ETH &&
378 !strncmp(tmp_pe->eth_name, eth_name, IFNAMSIZ)) {
379 new_netdev = false;
380 break;
381 }
382 }
383 if (new_netdev) {
384 list_add_tail(&new_pe->list, &pnettable->pnetlist);
385 write_unlock(&pnettable->lock);
386 } else {
387 write_unlock(&pnettable->lock);
388 kfree(new_pe);
389 goto out_put;
390 }
Karsten Graul0a99be42020-05-05 15:01:20 +0200391 if (ndev)
392 pr_warn_ratelimited("smc: net device %s "
393 "applied user defined pnetid %.16s\n",
394 new_pe->eth_name, new_pe->pnet_name);
Karsten Graulfdff7042020-04-29 17:10:37 +0200395 return 0;
396
397out_put:
Yajun Deng1160dfa2021-08-05 19:55:27 +0800398 dev_put(ndev);
Karsten Graulfdff7042020-04-29 17:10:37 +0200399 return rc;
400}
401
402static int smc_pnet_add_ib(struct smc_pnettable *pnettable, char *ib_name,
403 u8 ib_port, char *pnet_name)
404{
405 struct smc_pnetentry *tmp_pe, *new_pe;
406 struct smc_ib_device *ib_dev;
407 bool smcddev_applied = true;
408 bool ibdev_applied = true;
409 struct smcd_dev *smcd_dev;
410 bool new_ibdev;
411
412 /* try to apply the pnetid to active devices */
413 ib_dev = smc_pnet_find_ib(ib_name);
Karsten Graul0a99be42020-05-05 15:01:20 +0200414 if (ib_dev) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200415 ibdev_applied = smc_pnet_apply_ib(ib_dev, ib_port, pnet_name);
Karsten Graul0a99be42020-05-05 15:01:20 +0200416 if (ibdev_applied)
417 pr_warn_ratelimited("smc: ib device %s ibport %d "
418 "applied user defined pnetid "
419 "%.16s\n", ib_dev->ibdev->name,
420 ib_port,
421 ib_dev->pnetid[ib_port - 1]);
422 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200423 smcd_dev = smc_pnet_find_smcd(ib_name);
Karsten Graul0a99be42020-05-05 15:01:20 +0200424 if (smcd_dev) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200425 smcddev_applied = smc_pnet_apply_smcd(smcd_dev, pnet_name);
Karsten Graul0a99be42020-05-05 15:01:20 +0200426 if (smcddev_applied)
427 pr_warn_ratelimited("smc: smcd device %s "
428 "applied user defined pnetid "
429 "%.16s\n", dev_name(&smcd_dev->dev),
430 smcd_dev->pnetid);
431 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200432 /* Apply fails when a device has a hardware-defined pnetid set, do not
433 * add a pnet table entry in that case.
434 */
435 if (!ibdev_applied || !smcddev_applied)
436 return -EEXIST;
437
438 /* add a new ib entry to the pnet table if there isn't one */
439 new_pe = kzalloc(sizeof(*new_pe), GFP_KERNEL);
440 if (!new_pe)
441 return -ENOMEM;
442 new_pe->type = SMC_PNET_IB;
443 memcpy(new_pe->pnet_name, pnet_name, SMC_MAX_PNETID_LEN);
444 strncpy(new_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX);
445 new_pe->ib_port = ib_port;
446
447 new_ibdev = true;
448 write_lock(&pnettable->lock);
449 list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) {
450 if (tmp_pe->type == SMC_PNET_IB &&
451 !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX)) {
452 new_ibdev = false;
453 break;
454 }
455 }
456 if (new_ibdev) {
457 list_add_tail(&new_pe->list, &pnettable->pnetlist);
458 write_unlock(&pnettable->lock);
459 } else {
460 write_unlock(&pnettable->lock);
461 kfree(new_pe);
462 }
463 return (new_ibdev) ? 0 : -EEXIST;
464}
465
466/* Append a pnetid to the end of the pnet table if not already on this list.
467 */
468static int smc_pnet_enter(struct net *net, struct nlattr *tb[])
469{
470 char pnet_name[SMC_MAX_PNETID_LEN + 1];
471 struct smc_pnettable *pnettable;
472 bool new_netdev = false;
473 bool new_ibdev = false;
474 struct smc_net *sn;
475 u8 ibport = 1;
476 char *string;
477 int rc;
478
479 /* get pnettable for namespace */
480 sn = net_generic(net, smc_net_id);
481 pnettable = &sn->pnettable;
Eric Biggersd49baa72018-05-13 17:01:30 -0700482
483 rc = -EINVAL;
484 if (!tb[SMC_PNETID_NAME])
485 goto error;
486 string = (char *)nla_data(tb[SMC_PNETID_NAME]);
Karsten Graulfdff7042020-04-29 17:10:37 +0200487 if (!smc_pnetid_valid(string, pnet_name))
Eric Biggersd49baa72018-05-13 17:01:30 -0700488 goto error;
489
Hans Wippel890a2cb2019-02-21 13:01:00 +0100490 if (tb[SMC_PNETID_ETHNAME]) {
491 string = (char *)nla_data(tb[SMC_PNETID_ETHNAME]);
Karsten Graulfdff7042020-04-29 17:10:37 +0200492 rc = smc_pnet_add_eth(pnettable, net, string, pnet_name);
493 if (!rc)
494 new_netdev = true;
495 else if (rc != -EEXIST)
Hans Wippel890a2cb2019-02-21 13:01:00 +0100496 goto error;
497 }
Eric Biggersd49baa72018-05-13 17:01:30 -0700498
Hans Wippel64e28b52019-02-21 13:01:02 +0100499 /* if this is not the initial namespace, stop here */
500 if (net != &init_net)
Karsten Graulfdff7042020-04-29 17:10:37 +0200501 return new_netdev ? 0 : -EEXIST;
Hans Wippel64e28b52019-02-21 13:01:02 +0100502
Eric Biggersd49baa72018-05-13 17:01:30 -0700503 rc = -EINVAL;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100504 if (tb[SMC_PNETID_IBNAME]) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200505 string = (char *)nla_data(tb[SMC_PNETID_IBNAME]);
506 string = strim(string);
507 if (tb[SMC_PNETID_IBPORT]) {
508 ibport = nla_get_u8(tb[SMC_PNETID_IBPORT]);
509 if (ibport < 1 || ibport > SMC_MAX_PORTS)
Hans Wippel890a2cb2019-02-21 13:01:00 +0100510 goto error;
511 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200512 rc = smc_pnet_add_ib(pnettable, string, ibport, pnet_name);
513 if (!rc)
514 new_ibdev = true;
515 else if (rc != -EEXIST)
516 goto error;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100517 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200518 return (new_netdev || new_ibdev) ? 0 : -EEXIST;
Thomas Richter6812baa2017-01-09 16:55:15 +0100519
520error:
Thomas Richter6812baa2017-01-09 16:55:15 +0100521 return rc;
522}
523
524/* Convert an smc_pnetentry to a netlink attribute sequence */
Hans Wippel890a2cb2019-02-21 13:01:00 +0100525static int smc_pnet_set_nla(struct sk_buff *msg,
Karsten Graulfdff7042020-04-29 17:10:37 +0200526 struct smc_pnetentry *pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100527{
Hans Wippel890a2cb2019-02-21 13:01:00 +0100528 if (nla_put_string(msg, SMC_PNETID_NAME, pnetelem->pnet_name))
Thomas Richter6812baa2017-01-09 16:55:15 +0100529 return -1;
Karsten Graulfdff7042020-04-29 17:10:37 +0200530 if (pnetelem->type == SMC_PNET_ETH) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100531 if (nla_put_string(msg, SMC_PNETID_ETHNAME,
Karsten Graulfdff7042020-04-29 17:10:37 +0200532 pnetelem->eth_name))
Hans Wippel890a2cb2019-02-21 13:01:00 +0100533 return -1;
534 } else {
535 if (nla_put_string(msg, SMC_PNETID_ETHNAME, "n/a"))
536 return -1;
537 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200538 if (pnetelem->type == SMC_PNET_IB) {
539 if (nla_put_string(msg, SMC_PNETID_IBNAME, pnetelem->ib_name) ||
Hans Wippel890a2cb2019-02-21 13:01:00 +0100540 nla_put_u8(msg, SMC_PNETID_IBPORT, pnetelem->ib_port))
541 return -1;
542 } else {
543 if (nla_put_string(msg, SMC_PNETID_IBNAME, "n/a") ||
544 nla_put_u8(msg, SMC_PNETID_IBPORT, 0xff))
545 return -1;
546 }
547
Thomas Richter6812baa2017-01-09 16:55:15 +0100548 return 0;
549}
550
Thomas Richter6812baa2017-01-09 16:55:15 +0100551static int smc_pnet_add(struct sk_buff *skb, struct genl_info *info)
552{
553 struct net *net = genl_info_net(info);
Thomas Richter6812baa2017-01-09 16:55:15 +0100554
Karsten Graulfdff7042020-04-29 17:10:37 +0200555 return smc_pnet_enter(net, info->attrs);
Thomas Richter6812baa2017-01-09 16:55:15 +0100556}
557
558static int smc_pnet_del(struct sk_buff *skb, struct genl_info *info)
559{
Hans Wippel64e28b52019-02-21 13:01:02 +0100560 struct net *net = genl_info_net(info);
561
Eric Biggersd49baa72018-05-13 17:01:30 -0700562 if (!info->attrs[SMC_PNETID_NAME])
563 return -EINVAL;
Hans Wippel64e28b52019-02-21 13:01:02 +0100564 return smc_pnet_remove_by_pnetid(net,
Thomas Richter6812baa2017-01-09 16:55:15 +0100565 (char *)nla_data(info->attrs[SMC_PNETID_NAME]));
566}
567
568static int smc_pnet_dump_start(struct netlink_callback *cb)
569{
570 cb->args[0] = 0;
571 return 0;
572}
573
574static int smc_pnet_dumpinfo(struct sk_buff *skb,
575 u32 portid, u32 seq, u32 flags,
Karsten Graulfdff7042020-04-29 17:10:37 +0200576 struct smc_pnetentry *pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100577{
578 void *hdr;
579
580 hdr = genlmsg_put(skb, portid, seq, &smc_pnet_nl_family,
581 flags, SMC_PNETID_GET);
582 if (!hdr)
583 return -ENOMEM;
584 if (smc_pnet_set_nla(skb, pnetelem) < 0) {
585 genlmsg_cancel(skb, hdr);
586 return -EMSGSIZE;
587 }
588 genlmsg_end(skb, hdr);
589 return 0;
590}
591
Hans Wippel64e28b52019-02-21 13:01:02 +0100592static int _smc_pnet_dump(struct net *net, struct sk_buff *skb, u32 portid,
593 u32 seq, u8 *pnetid, int start_idx)
Thomas Richter6812baa2017-01-09 16:55:15 +0100594{
Hans Wippel64e28b52019-02-21 13:01:02 +0100595 struct smc_pnettable *pnettable;
Thomas Richter6812baa2017-01-09 16:55:15 +0100596 struct smc_pnetentry *pnetelem;
Hans Wippel64e28b52019-02-21 13:01:02 +0100597 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100598 int idx = 0;
599
Hans Wippel64e28b52019-02-21 13:01:02 +0100600 /* get pnettable for namespace */
601 sn = net_generic(net, smc_net_id);
602 pnettable = &sn->pnettable;
603
Karsten Graulfdff7042020-04-29 17:10:37 +0200604 /* dump pnettable entries */
Hans Wippel64e28b52019-02-21 13:01:02 +0100605 read_lock(&pnettable->lock);
606 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100607 if (pnetid && !smc_pnet_match(pnetelem->pnet_name, pnetid))
Thomas Richter6812baa2017-01-09 16:55:15 +0100608 continue;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100609 if (idx++ < start_idx)
610 continue;
Karsten Graulfdff7042020-04-29 17:10:37 +0200611 /* if this is not the initial namespace, dump only netdev */
612 if (net != &init_net && pnetelem->type != SMC_PNET_ETH)
613 continue;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100614 if (smc_pnet_dumpinfo(skb, portid, seq, NLM_F_MULTI,
Karsten Graulfdff7042020-04-29 17:10:37 +0200615 pnetelem)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100616 --idx;
617 break;
618 }
619 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100620 read_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100621 return idx;
622}
623
624static int smc_pnet_dump(struct sk_buff *skb, struct netlink_callback *cb)
625{
Hans Wippel64e28b52019-02-21 13:01:02 +0100626 struct net *net = sock_net(skb->sk);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100627 int idx;
628
Hans Wippel64e28b52019-02-21 13:01:02 +0100629 idx = _smc_pnet_dump(net, skb, NETLINK_CB(cb->skb).portid,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100630 cb->nlh->nlmsg_seq, NULL, cb->args[0]);
631
632 cb->args[0] = idx;
Thomas Richter6812baa2017-01-09 16:55:15 +0100633 return skb->len;
634}
635
Hans Wippel890a2cb2019-02-21 13:01:00 +0100636/* Retrieve one PNETID entry */
637static int smc_pnet_get(struct sk_buff *skb, struct genl_info *info)
638{
Hans Wippel64e28b52019-02-21 13:01:02 +0100639 struct net *net = genl_info_net(info);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100640 struct sk_buff *msg;
641 void *hdr;
642
643 if (!info->attrs[SMC_PNETID_NAME])
644 return -EINVAL;
645
646 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
647 if (!msg)
648 return -ENOMEM;
649
Hans Wippel64e28b52019-02-21 13:01:02 +0100650 _smc_pnet_dump(net, msg, info->snd_portid, info->snd_seq,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100651 nla_data(info->attrs[SMC_PNETID_NAME]), 0);
652
653 /* finish multi part message and send it */
654 hdr = nlmsg_put(msg, info->snd_portid, info->snd_seq, NLMSG_DONE, 0,
655 NLM_F_MULTI);
656 if (!hdr) {
657 nlmsg_free(msg);
658 return -EMSGSIZE;
659 }
660 return genlmsg_reply(msg, info);
661}
662
Thomas Richter6812baa2017-01-09 16:55:15 +0100663/* Remove and delete all pnetids from pnet table.
664 */
665static int smc_pnet_flush(struct sk_buff *skb, struct genl_info *info)
666{
Hans Wippel64e28b52019-02-21 13:01:02 +0100667 struct net *net = genl_info_net(info);
668
Karsten Graul8ef659f2019-04-11 11:17:33 +0200669 smc_pnet_remove_by_pnetid(net, NULL);
670 return 0;
Thomas Richter6812baa2017-01-09 16:55:15 +0100671}
672
673/* SMC_PNETID generic netlink operation definition */
674static const struct genl_ops smc_pnet_ops[] = {
675 {
676 .cmd = SMC_PNETID_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +0200677 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Hans Wippel29237d22020-01-21 01:04:46 +0100678 /* can be retrieved by unprivileged users */
Thomas Richter6812baa2017-01-09 16:55:15 +0100679 .doit = smc_pnet_get,
680 .dumpit = smc_pnet_dump,
681 .start = smc_pnet_dump_start
682 },
683 {
684 .cmd = SMC_PNETID_ADD,
Johannes Bergef6243a2019-04-26 14:07:31 +0200685 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100686 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100687 .doit = smc_pnet_add
688 },
689 {
690 .cmd = SMC_PNETID_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +0200691 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100692 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100693 .doit = smc_pnet_del
694 },
695 {
696 .cmd = SMC_PNETID_FLUSH,
Johannes Bergef6243a2019-04-26 14:07:31 +0200697 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100698 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100699 .doit = smc_pnet_flush
700 }
701};
702
703/* SMC_PNETID family definition */
Johannes Berg56ce3c52018-09-20 09:27:30 +0200704static struct genl_family smc_pnet_nl_family __ro_after_init = {
Thomas Richter6812baa2017-01-09 16:55:15 +0100705 .hdrsize = 0,
706 .name = SMCR_GENL_FAMILY_NAME,
707 .version = SMCR_GENL_FAMILY_VERSION,
708 .maxattr = SMC_PNETID_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100709 .policy = smc_pnet_policy,
Thomas Richter6812baa2017-01-09 16:55:15 +0100710 .netnsok = true,
711 .module = THIS_MODULE,
712 .ops = smc_pnet_ops,
713 .n_ops = ARRAY_SIZE(smc_pnet_ops)
714};
715
Ursula Braune888a2e2020-09-26 12:44:26 +0200716bool smc_pnet_is_ndev_pnetid(struct net *net, u8 *pnetid)
717{
718 struct smc_net *sn = net_generic(net, smc_net_id);
719 struct smc_pnetids_ndev_entry *pe;
720 bool rc = false;
721
722 read_lock(&sn->pnetids_ndev.lock);
723 list_for_each_entry(pe, &sn->pnetids_ndev.list, list) {
724 if (smc_pnet_match(pnetid, pe->pnetid)) {
725 rc = true;
726 goto unlock;
727 }
728 }
729
730unlock:
731 read_unlock(&sn->pnetids_ndev.lock);
732 return rc;
733}
734
735static int smc_pnet_add_pnetid(struct net *net, u8 *pnetid)
736{
737 struct smc_net *sn = net_generic(net, smc_net_id);
738 struct smc_pnetids_ndev_entry *pe, *pi;
739
740 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
741 if (!pe)
742 return -ENOMEM;
743
744 write_lock(&sn->pnetids_ndev.lock);
745 list_for_each_entry(pi, &sn->pnetids_ndev.list, list) {
746 if (smc_pnet_match(pnetid, pe->pnetid)) {
747 refcount_inc(&pi->refcnt);
748 kfree(pe);
749 goto unlock;
750 }
751 }
752 refcount_set(&pe->refcnt, 1);
753 memcpy(pe->pnetid, pnetid, SMC_MAX_PNETID_LEN);
754 list_add_tail(&pe->list, &sn->pnetids_ndev.list);
755
756unlock:
757 write_unlock(&sn->pnetids_ndev.lock);
758 return 0;
759}
760
761static void smc_pnet_remove_pnetid(struct net *net, u8 *pnetid)
762{
763 struct smc_net *sn = net_generic(net, smc_net_id);
764 struct smc_pnetids_ndev_entry *pe, *pe2;
765
766 write_lock(&sn->pnetids_ndev.lock);
767 list_for_each_entry_safe(pe, pe2, &sn->pnetids_ndev.list, list) {
768 if (smc_pnet_match(pnetid, pe->pnetid)) {
769 if (refcount_dec_and_test(&pe->refcnt)) {
770 list_del(&pe->list);
771 kfree(pe);
772 }
773 break;
774 }
775 }
776 write_unlock(&sn->pnetids_ndev.lock);
777}
778
779static void smc_pnet_add_base_pnetid(struct net *net, struct net_device *dev,
780 u8 *ndev_pnetid)
781{
782 struct net_device *base_dev;
783
784 base_dev = __pnet_find_base_ndev(dev);
785 if (base_dev->flags & IFF_UP &&
786 !smc_pnetid_by_dev_port(base_dev->dev.parent, base_dev->dev_port,
787 ndev_pnetid)) {
788 /* add to PNETIDs list */
789 smc_pnet_add_pnetid(net, ndev_pnetid);
790 }
791}
792
793/* create initial list of netdevice pnetids */
794static void smc_pnet_create_pnetids_list(struct net *net)
795{
796 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
797 struct net_device *dev;
798
799 rtnl_lock();
800 for_each_netdev(net, dev)
801 smc_pnet_add_base_pnetid(net, dev, ndev_pnetid);
802 rtnl_unlock();
803}
804
805/* clean up list of netdevice pnetids */
806static void smc_pnet_destroy_pnetids_list(struct net *net)
807{
808 struct smc_net *sn = net_generic(net, smc_net_id);
809 struct smc_pnetids_ndev_entry *pe, *temp_pe;
810
811 write_lock(&sn->pnetids_ndev.lock);
812 list_for_each_entry_safe(pe, temp_pe, &sn->pnetids_ndev.list, list) {
813 list_del(&pe->list);
814 kfree(pe);
815 }
816 write_unlock(&sn->pnetids_ndev.lock);
817}
818
Thomas Richter6812baa2017-01-09 16:55:15 +0100819static int smc_pnet_netdev_event(struct notifier_block *this,
820 unsigned long event, void *ptr)
821{
822 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
Ursula Braune888a2e2020-09-26 12:44:26 +0200823 struct net *net = dev_net(event_dev);
824 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
Thomas Richter6812baa2017-01-09 16:55:15 +0100825
826 switch (event) {
827 case NETDEV_REBOOT:
828 case NETDEV_UNREGISTER:
829 smc_pnet_remove_by_ndev(event_dev);
Guvenc Gulce3d453f52020-12-01 20:20:40 +0100830 smc_ib_ndev_change(event_dev, event);
Ursula Braunbe6a3f32018-06-28 19:05:04 +0200831 return NOTIFY_OK;
Karsten Graulfdff7042020-04-29 17:10:37 +0200832 case NETDEV_REGISTER:
833 smc_pnet_add_by_ndev(event_dev);
Guvenc Gulce3d453f52020-12-01 20:20:40 +0100834 smc_ib_ndev_change(event_dev, event);
Karsten Graulfdff7042020-04-29 17:10:37 +0200835 return NOTIFY_OK;
Ursula Braune888a2e2020-09-26 12:44:26 +0200836 case NETDEV_UP:
837 smc_pnet_add_base_pnetid(net, event_dev, ndev_pnetid);
838 return NOTIFY_OK;
839 case NETDEV_DOWN:
840 event_dev = __pnet_find_base_ndev(event_dev);
841 if (!smc_pnetid_by_dev_port(event_dev->dev.parent,
842 event_dev->dev_port, ndev_pnetid)) {
843 /* remove from PNETIDs list */
844 smc_pnet_remove_pnetid(net, ndev_pnetid);
845 }
846 return NOTIFY_OK;
Thomas Richter6812baa2017-01-09 16:55:15 +0100847 default:
Ursula Braunbe6a3f32018-06-28 19:05:04 +0200848 return NOTIFY_DONE;
Thomas Richter6812baa2017-01-09 16:55:15 +0100849 }
Thomas Richter6812baa2017-01-09 16:55:15 +0100850}
851
852static struct notifier_block smc_netdev_notifier = {
853 .notifier_call = smc_pnet_netdev_event
854};
855
Hans Wippel64e28b52019-02-21 13:01:02 +0100856/* init network namespace */
857int smc_pnet_net_init(struct net *net)
858{
859 struct smc_net *sn = net_generic(net, smc_net_id);
860 struct smc_pnettable *pnettable = &sn->pnettable;
Ursula Braune888a2e2020-09-26 12:44:26 +0200861 struct smc_pnetids_ndev *pnetids_ndev = &sn->pnetids_ndev;
Hans Wippel64e28b52019-02-21 13:01:02 +0100862
863 INIT_LIST_HEAD(&pnettable->pnetlist);
864 rwlock_init(&pnettable->lock);
Ursula Braune888a2e2020-09-26 12:44:26 +0200865 INIT_LIST_HEAD(&pnetids_ndev->list);
866 rwlock_init(&pnetids_ndev->lock);
867
868 smc_pnet_create_pnetids_list(net);
Hans Wippel64e28b52019-02-21 13:01:02 +0100869
870 return 0;
871}
872
Thomas Richter6812baa2017-01-09 16:55:15 +0100873int __init smc_pnet_init(void)
874{
875 int rc;
876
877 rc = genl_register_family(&smc_pnet_nl_family);
878 if (rc)
879 return rc;
880 rc = register_netdevice_notifier(&smc_netdev_notifier);
881 if (rc)
882 genl_unregister_family(&smc_pnet_nl_family);
Ursula Braune888a2e2020-09-26 12:44:26 +0200883
Thomas Richter6812baa2017-01-09 16:55:15 +0100884 return rc;
885}
886
Hans Wippel64e28b52019-02-21 13:01:02 +0100887/* exit network namespace */
888void smc_pnet_net_exit(struct net *net)
889{
890 /* flush pnet table */
891 smc_pnet_remove_by_pnetid(net, NULL);
Ursula Braune888a2e2020-09-26 12:44:26 +0200892 smc_pnet_destroy_pnetids_list(net);
Hans Wippel64e28b52019-02-21 13:01:02 +0100893}
894
Thomas Richter6812baa2017-01-09 16:55:15 +0100895void smc_pnet_exit(void)
896{
Thomas Richter6812baa2017-01-09 16:55:15 +0100897 unregister_netdevice_notifier(&smc_netdev_notifier);
898 genl_unregister_family(&smc_pnet_nl_family);
899}
900
Ursula Braune888a2e2020-09-26 12:44:26 +0200901static struct net_device *__pnet_find_base_ndev(struct net_device *ndev)
Thomas Richter6812baa2017-01-09 16:55:15 +0100902{
Ursula Braun0afff912018-06-28 19:05:05 +0200903 int i, nest_lvl;
904
Ursula Braune888a2e2020-09-26 12:44:26 +0200905 ASSERT_RTNL();
Taehee Yoof3b0a182019-10-21 18:47:58 +0000906 nest_lvl = ndev->lower_level;
Ursula Braun0afff912018-06-28 19:05:05 +0200907 for (i = 0; i < nest_lvl; i++) {
908 struct list_head *lower = &ndev->adj_list.lower;
909
910 if (list_empty(lower))
911 break;
912 lower = lower->next;
913 ndev = netdev_lower_get_next(ndev, &lower);
914 }
Ursula Braune888a2e2020-09-26 12:44:26 +0200915 return ndev;
916}
917
918/* Determine one base device for stacked net devices.
919 * If the lower device level contains more than one devices
920 * (for instance with bonding slaves), just the first device
921 * is used to reach a base device.
922 */
923static struct net_device *pnet_find_base_ndev(struct net_device *ndev)
924{
925 rtnl_lock();
926 ndev = __pnet_find_base_ndev(ndev);
Ursula Braun0afff912018-06-28 19:05:05 +0200927 rtnl_unlock();
928 return ndev;
929}
930
Hans Wippel64e28b52019-02-21 13:01:02 +0100931static int smc_pnet_find_ndev_pnetid_by_table(struct net_device *ndev,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100932 u8 *pnetid)
933{
Hans Wippel64e28b52019-02-21 13:01:02 +0100934 struct smc_pnettable *pnettable;
935 struct net *net = dev_net(ndev);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100936 struct smc_pnetentry *pnetelem;
Hans Wippel64e28b52019-02-21 13:01:02 +0100937 struct smc_net *sn;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100938 int rc = -ENOENT;
939
Hans Wippel64e28b52019-02-21 13:01:02 +0100940 /* get pnettable for namespace */
941 sn = net_generic(net, smc_net_id);
942 pnettable = &sn->pnettable;
943
944 read_lock(&pnettable->lock);
945 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200946 if (pnetelem->type == SMC_PNET_ETH && ndev == pnetelem->ndev) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100947 /* get pnetid of netdev device */
948 memcpy(pnetid, pnetelem->pnet_name, SMC_MAX_PNETID_LEN);
949 rc = 0;
950 break;
951 }
952 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100953 read_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100954 return rc;
955}
956
Karsten Graul24fb6812021-10-16 11:37:48 +0200957static int smc_pnet_determine_gid(struct smc_ib_device *ibdev, int i,
958 struct smc_init_info *ini)
959{
960 if (!ini->check_smcrv2 &&
961 !smc_ib_determine_gid(ibdev, i, ini->vlan_id, ini->ib_gid, NULL,
962 NULL)) {
963 ini->ib_dev = ibdev;
964 ini->ib_port = i;
965 return 0;
966 }
967 if (ini->check_smcrv2 &&
968 !smc_ib_determine_gid(ibdev, i, ini->vlan_id, ini->smcrv2.ib_gid_v2,
969 NULL, &ini->smcrv2)) {
970 ini->smcrv2.ib_dev_v2 = ibdev;
971 ini->smcrv2.ib_port_v2 = i;
972 return 0;
973 }
974 return -ENODEV;
975}
976
Karsten Graulfdff7042020-04-29 17:10:37 +0200977/* find a roce device for the given pnetid */
978static void _smc_pnet_find_roce_by_pnetid(u8 *pnet_id,
Karsten Graul6c868a32020-05-01 12:48:11 +0200979 struct smc_init_info *ini,
Tony Lu0237a3a2021-12-28 21:06:09 +0800980 struct smc_ib_device *known_dev,
981 struct net *net)
Karsten Graulfdff7042020-04-29 17:10:37 +0200982{
983 struct smc_ib_device *ibdev;
984 int i;
985
Ursula Braun92f3cb02020-07-08 17:05:13 +0200986 mutex_lock(&smc_ib_devices.mutex);
Karsten Graulfdff7042020-04-29 17:10:37 +0200987 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
Tony Lu0237a3a2021-12-28 21:06:09 +0800988 if (ibdev == known_dev ||
989 !rdma_dev_access_netns(ibdev->ibdev, net))
Karsten Graul6c868a32020-05-01 12:48:11 +0200990 continue;
Karsten Graulfdff7042020-04-29 17:10:37 +0200991 for (i = 1; i <= SMC_MAX_PORTS; i++) {
992 if (!rdma_is_port_valid(ibdev->ibdev, i))
993 continue;
994 if (smc_pnet_match(ibdev->pnetid[i - 1], pnet_id) &&
995 smc_ib_port_active(ibdev, i) &&
Karsten Graul24fb6812021-10-16 11:37:48 +0200996 !test_bit(i - 1, ibdev->ports_going_away)) {
997 if (!smc_pnet_determine_gid(ibdev, i, ini))
998 goto out;
Karsten Graulfdff7042020-04-29 17:10:37 +0200999 }
1000 }
1001 }
1002out:
Ursula Braun92f3cb02020-07-08 17:05:13 +02001003 mutex_unlock(&smc_ib_devices.mutex);
Karsten Graulfdff7042020-04-29 17:10:37 +02001004}
1005
Tony Lu0237a3a2021-12-28 21:06:09 +08001006/* find alternate roce device with same pnet_id, vlan_id and net namespace */
Karsten Graul6c868a32020-05-01 12:48:11 +02001007void smc_pnet_find_alt_roce(struct smc_link_group *lgr,
1008 struct smc_init_info *ini,
1009 struct smc_ib_device *known_dev)
1010{
Tony Lu0237a3a2021-12-28 21:06:09 +08001011 struct net *net = lgr->net;
1012
1013 _smc_pnet_find_roce_by_pnetid(lgr->pnet_id, ini, known_dev, net);
Karsten Graul6c868a32020-05-01 12:48:11 +02001014}
1015
Ursula Braun54903572019-02-28 15:10:08 +01001016/* if handshake network device belongs to a roce device, return its
1017 * IB device and port
1018 */
1019static void smc_pnet_find_rdma_dev(struct net_device *netdev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001020 struct smc_init_info *ini)
Ursula Braun54903572019-02-28 15:10:08 +01001021{
Tony Lu0237a3a2021-12-28 21:06:09 +08001022 struct net *net = dev_net(netdev);
Ursula Braun54903572019-02-28 15:10:08 +01001023 struct smc_ib_device *ibdev;
1024
Ursula Braun92f3cb02020-07-08 17:05:13 +02001025 mutex_lock(&smc_ib_devices.mutex);
Ursula Braun54903572019-02-28 15:10:08 +01001026 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
1027 struct net_device *ndev;
1028 int i;
1029
Tony Lu0237a3a2021-12-28 21:06:09 +08001030 /* check rdma net namespace */
1031 if (!rdma_dev_access_netns(ibdev->ibdev, net))
1032 continue;
1033
Ursula Braun54903572019-02-28 15:10:08 +01001034 for (i = 1; i <= SMC_MAX_PORTS; i++) {
1035 if (!rdma_is_port_valid(ibdev->ibdev, i))
1036 continue;
1037 if (!ibdev->ibdev->ops.get_netdev)
1038 continue;
1039 ndev = ibdev->ibdev->ops.get_netdev(ibdev->ibdev, i);
1040 if (!ndev)
1041 continue;
1042 dev_put(ndev);
1043 if (netdev == ndev &&
1044 smc_ib_port_active(ibdev, i) &&
Karsten Graul24fb6812021-10-16 11:37:48 +02001045 !test_bit(i - 1, ibdev->ports_going_away)) {
1046 if (!smc_pnet_determine_gid(ibdev, i, ini))
1047 break;
Ursula Braun54903572019-02-28 15:10:08 +01001048 }
1049 }
1050 }
Ursula Braun92f3cb02020-07-08 17:05:13 +02001051 mutex_unlock(&smc_ib_devices.mutex);
Ursula Braun54903572019-02-28 15:10:08 +01001052}
1053
Ursula Braun0afff912018-06-28 19:05:05 +02001054/* Determine the corresponding IB device port based on the hardware PNETID.
Ursula Braun7005ada2018-07-25 16:35:31 +02001055 * Searching stops at the first matching active IB device port with vlan_id
1056 * configured.
Ursula Braun54903572019-02-28 15:10:08 +01001057 * If nothing found, check pnetid table.
1058 * If nothing found, try to use handshake device
Ursula Braun0afff912018-06-28 19:05:05 +02001059 */
1060static void smc_pnet_find_roce_by_pnetid(struct net_device *ndev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001061 struct smc_init_info *ini)
Ursula Braun0afff912018-06-28 19:05:05 +02001062{
1063 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
Tony Lu0237a3a2021-12-28 21:06:09 +08001064 struct net *net;
Ursula Braun0afff912018-06-28 19:05:05 +02001065
1066 ndev = pnet_find_base_ndev(ndev);
Tony Lu0237a3a2021-12-28 21:06:09 +08001067 net = dev_net(ndev);
Ursula Braun0afff912018-06-28 19:05:05 +02001068 if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
Hans Wippel890a2cb2019-02-21 13:01:00 +01001069 ndev_pnetid) &&
Ursula Braun54903572019-02-28 15:10:08 +01001070 smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid)) {
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001071 smc_pnet_find_rdma_dev(ndev, ini);
Ursula Braun0afff912018-06-28 19:05:05 +02001072 return; /* pnetid could not be determined */
Ursula Braun54903572019-02-28 15:10:08 +01001073 }
Tony Lu0237a3a2021-12-28 21:06:09 +08001074 _smc_pnet_find_roce_by_pnetid(ndev_pnetid, ini, NULL, net);
Ursula Braun0afff912018-06-28 19:05:05 +02001075}
1076
Hans Wippel1619f772018-06-28 19:05:08 +02001077static void smc_pnet_find_ism_by_pnetid(struct net_device *ndev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001078 struct smc_init_info *ini)
Hans Wippel1619f772018-06-28 19:05:08 +02001079{
1080 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
1081 struct smcd_dev *ismdev;
1082
1083 ndev = pnet_find_base_ndev(ndev);
1084 if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
Hans Wippelf3d74b22019-02-21 13:01:01 +01001085 ndev_pnetid) &&
1086 smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid))
Hans Wippel1619f772018-06-28 19:05:08 +02001087 return; /* pnetid could not be determined */
1088
Ursula Braun82087c02020-07-08 17:05:14 +02001089 mutex_lock(&smcd_dev_list.mutex);
Hans Wippel1619f772018-06-28 19:05:08 +02001090 list_for_each_entry(ismdev, &smcd_dev_list.list, list) {
Ursula Braunc3d94942019-10-09 10:07:46 +02001091 if (smc_pnet_match(ismdev->pnetid, ndev_pnetid) &&
Ursula Braun7b2977d2020-09-10 18:48:24 +02001092 !ismdev->going_away &&
Ursula Braun3fc64932020-09-26 12:44:23 +02001093 (!ini->ism_peer_gid[0] ||
1094 !smc_ism_cantalk(ini->ism_peer_gid[0], ini->vlan_id,
Ursula Braun7b2977d2020-09-10 18:48:24 +02001095 ismdev))) {
Ursula Braun3fc64932020-09-26 12:44:23 +02001096 ini->ism_dev[0] = ismdev;
Hans Wippel1619f772018-06-28 19:05:08 +02001097 break;
1098 }
1099 }
Ursula Braun82087c02020-07-08 17:05:14 +02001100 mutex_unlock(&smcd_dev_list.mutex);
Hans Wippel1619f772018-06-28 19:05:08 +02001101}
1102
Ursula Braun0afff912018-06-28 19:05:05 +02001103/* PNET table analysis for a given sock:
1104 * determine ib_device and port belonging to used internal TCP socket
1105 * ethernet interface.
1106 */
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001107void smc_pnet_find_roce_resource(struct sock *sk, struct smc_init_info *ini)
Ursula Braun0afff912018-06-28 19:05:05 +02001108{
1109 struct dst_entry *dst = sk_dst_get(sk);
1110
Ursula Braun0afff912018-06-28 19:05:05 +02001111 if (!dst)
1112 goto out;
1113 if (!dst->dev)
1114 goto out_rel;
1115
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001116 smc_pnet_find_roce_by_pnetid(dst->dev, ini);
Ursula Braun0afff912018-06-28 19:05:05 +02001117
Thomas Richter6812baa2017-01-09 16:55:15 +01001118out_rel:
1119 dst_release(dst);
Ursula Braun0afff912018-06-28 19:05:05 +02001120out:
1121 return;
Thomas Richter6812baa2017-01-09 16:55:15 +01001122}
Hans Wippel1619f772018-06-28 19:05:08 +02001123
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001124void smc_pnet_find_ism_resource(struct sock *sk, struct smc_init_info *ini)
Hans Wippel1619f772018-06-28 19:05:08 +02001125{
1126 struct dst_entry *dst = sk_dst_get(sk);
1127
Ursula Braun3fc64932020-09-26 12:44:23 +02001128 ini->ism_dev[0] = NULL;
Hans Wippel1619f772018-06-28 19:05:08 +02001129 if (!dst)
1130 goto out;
1131 if (!dst->dev)
1132 goto out_rel;
1133
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001134 smc_pnet_find_ism_by_pnetid(dst->dev, ini);
Hans Wippel1619f772018-06-28 19:05:08 +02001135
1136out_rel:
1137 dst_release(dst);
1138out:
1139 return;
1140}
Karsten Graulfdff7042020-04-29 17:10:37 +02001141
1142/* Lookup and apply a pnet table entry to the given ib device.
1143 */
1144int smc_pnetid_by_table_ib(struct smc_ib_device *smcibdev, u8 ib_port)
1145{
1146 char *ib_name = smcibdev->ibdev->name;
1147 struct smc_pnettable *pnettable;
1148 struct smc_pnetentry *tmp_pe;
1149 struct smc_net *sn;
1150 int rc = -ENOENT;
1151
1152 /* get pnettable for init namespace */
1153 sn = net_generic(&init_net, smc_net_id);
1154 pnettable = &sn->pnettable;
1155
1156 read_lock(&pnettable->lock);
1157 list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) {
1158 if (tmp_pe->type == SMC_PNET_IB &&
1159 !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX) &&
1160 tmp_pe->ib_port == ib_port) {
1161 smc_pnet_apply_ib(smcibdev, ib_port, tmp_pe->pnet_name);
1162 rc = 0;
1163 break;
1164 }
1165 }
1166 read_unlock(&pnettable->lock);
1167
1168 return rc;
1169}
1170
1171/* Lookup and apply a pnet table entry to the given smcd device.
1172 */
1173int smc_pnetid_by_table_smcd(struct smcd_dev *smcddev)
1174{
1175 const char *ib_name = dev_name(&smcddev->dev);
1176 struct smc_pnettable *pnettable;
1177 struct smc_pnetentry *tmp_pe;
1178 struct smc_net *sn;
1179 int rc = -ENOENT;
1180
1181 /* get pnettable for init namespace */
1182 sn = net_generic(&init_net, smc_net_id);
1183 pnettable = &sn->pnettable;
1184
1185 read_lock(&pnettable->lock);
1186 list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) {
1187 if (tmp_pe->type == SMC_PNET_IB &&
1188 !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX)) {
1189 smc_pnet_apply_smcd(smcddev, tmp_pe->pnet_name);
1190 rc = 0;
1191 break;
1192 }
1193 }
1194 read_unlock(&pnettable->lock);
1195
1196 return rc;
1197}