blob: 0599246c037690b4b01813956e4af74519277bea [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);
Karsten Graulfdff7042020-04-29 17:10:37 +0200371 rc = -EEXIST;
372 new_netdev = true;
373 write_lock(&pnettable->lock);
374 list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) {
375 if (tmp_pe->type == SMC_PNET_ETH &&
376 !strncmp(tmp_pe->eth_name, eth_name, IFNAMSIZ)) {
377 new_netdev = false;
378 break;
379 }
380 }
381 if (new_netdev) {
Eric Dumazet28f92222022-02-05 21:05:16 -0800382 if (ndev) {
383 new_pe->ndev = ndev;
384 netdev_tracker_alloc(ndev, &new_pe->dev_tracker,
Eric Dumazet94fdd7c2022-02-06 06:33:48 -0800385 GFP_ATOMIC);
Eric Dumazet28f92222022-02-05 21:05:16 -0800386 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200387 list_add_tail(&new_pe->list, &pnettable->pnetlist);
388 write_unlock(&pnettable->lock);
389 } else {
390 write_unlock(&pnettable->lock);
391 kfree(new_pe);
392 goto out_put;
393 }
Karsten Graul0a99be42020-05-05 15:01:20 +0200394 if (ndev)
395 pr_warn_ratelimited("smc: net device %s "
396 "applied user defined pnetid %.16s\n",
397 new_pe->eth_name, new_pe->pnet_name);
Karsten Graulfdff7042020-04-29 17:10:37 +0200398 return 0;
399
400out_put:
Yajun Deng1160dfa2021-08-05 19:55:27 +0800401 dev_put(ndev);
Karsten Graulfdff7042020-04-29 17:10:37 +0200402 return rc;
403}
404
405static int smc_pnet_add_ib(struct smc_pnettable *pnettable, char *ib_name,
406 u8 ib_port, char *pnet_name)
407{
408 struct smc_pnetentry *tmp_pe, *new_pe;
409 struct smc_ib_device *ib_dev;
410 bool smcddev_applied = true;
411 bool ibdev_applied = true;
412 struct smcd_dev *smcd_dev;
413 bool new_ibdev;
414
415 /* try to apply the pnetid to active devices */
416 ib_dev = smc_pnet_find_ib(ib_name);
Karsten Graul0a99be42020-05-05 15:01:20 +0200417 if (ib_dev) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200418 ibdev_applied = smc_pnet_apply_ib(ib_dev, ib_port, pnet_name);
Karsten Graul0a99be42020-05-05 15:01:20 +0200419 if (ibdev_applied)
420 pr_warn_ratelimited("smc: ib device %s ibport %d "
421 "applied user defined pnetid "
422 "%.16s\n", ib_dev->ibdev->name,
423 ib_port,
424 ib_dev->pnetid[ib_port - 1]);
425 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200426 smcd_dev = smc_pnet_find_smcd(ib_name);
Karsten Graul0a99be42020-05-05 15:01:20 +0200427 if (smcd_dev) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200428 smcddev_applied = smc_pnet_apply_smcd(smcd_dev, pnet_name);
Karsten Graul0a99be42020-05-05 15:01:20 +0200429 if (smcddev_applied)
430 pr_warn_ratelimited("smc: smcd device %s "
431 "applied user defined pnetid "
432 "%.16s\n", dev_name(&smcd_dev->dev),
433 smcd_dev->pnetid);
434 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200435 /* Apply fails when a device has a hardware-defined pnetid set, do not
436 * add a pnet table entry in that case.
437 */
438 if (!ibdev_applied || !smcddev_applied)
439 return -EEXIST;
440
441 /* add a new ib entry to the pnet table if there isn't one */
442 new_pe = kzalloc(sizeof(*new_pe), GFP_KERNEL);
443 if (!new_pe)
444 return -ENOMEM;
445 new_pe->type = SMC_PNET_IB;
446 memcpy(new_pe->pnet_name, pnet_name, SMC_MAX_PNETID_LEN);
447 strncpy(new_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX);
448 new_pe->ib_port = ib_port;
449
450 new_ibdev = true;
451 write_lock(&pnettable->lock);
452 list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) {
453 if (tmp_pe->type == SMC_PNET_IB &&
454 !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX)) {
455 new_ibdev = false;
456 break;
457 }
458 }
459 if (new_ibdev) {
460 list_add_tail(&new_pe->list, &pnettable->pnetlist);
461 write_unlock(&pnettable->lock);
462 } else {
463 write_unlock(&pnettable->lock);
464 kfree(new_pe);
465 }
466 return (new_ibdev) ? 0 : -EEXIST;
467}
468
469/* Append a pnetid to the end of the pnet table if not already on this list.
470 */
471static int smc_pnet_enter(struct net *net, struct nlattr *tb[])
472{
473 char pnet_name[SMC_MAX_PNETID_LEN + 1];
474 struct smc_pnettable *pnettable;
475 bool new_netdev = false;
476 bool new_ibdev = false;
477 struct smc_net *sn;
478 u8 ibport = 1;
479 char *string;
480 int rc;
481
482 /* get pnettable for namespace */
483 sn = net_generic(net, smc_net_id);
484 pnettable = &sn->pnettable;
Eric Biggersd49baa72018-05-13 17:01:30 -0700485
486 rc = -EINVAL;
487 if (!tb[SMC_PNETID_NAME])
488 goto error;
489 string = (char *)nla_data(tb[SMC_PNETID_NAME]);
Karsten Graulfdff7042020-04-29 17:10:37 +0200490 if (!smc_pnetid_valid(string, pnet_name))
Eric Biggersd49baa72018-05-13 17:01:30 -0700491 goto error;
492
Hans Wippel890a2cb2019-02-21 13:01:00 +0100493 if (tb[SMC_PNETID_ETHNAME]) {
494 string = (char *)nla_data(tb[SMC_PNETID_ETHNAME]);
Karsten Graulfdff7042020-04-29 17:10:37 +0200495 rc = smc_pnet_add_eth(pnettable, net, string, pnet_name);
496 if (!rc)
497 new_netdev = true;
498 else if (rc != -EEXIST)
Hans Wippel890a2cb2019-02-21 13:01:00 +0100499 goto error;
500 }
Eric Biggersd49baa72018-05-13 17:01:30 -0700501
Hans Wippel64e28b52019-02-21 13:01:02 +0100502 /* if this is not the initial namespace, stop here */
503 if (net != &init_net)
Karsten Graulfdff7042020-04-29 17:10:37 +0200504 return new_netdev ? 0 : -EEXIST;
Hans Wippel64e28b52019-02-21 13:01:02 +0100505
Eric Biggersd49baa72018-05-13 17:01:30 -0700506 rc = -EINVAL;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100507 if (tb[SMC_PNETID_IBNAME]) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200508 string = (char *)nla_data(tb[SMC_PNETID_IBNAME]);
509 string = strim(string);
510 if (tb[SMC_PNETID_IBPORT]) {
511 ibport = nla_get_u8(tb[SMC_PNETID_IBPORT]);
512 if (ibport < 1 || ibport > SMC_MAX_PORTS)
Hans Wippel890a2cb2019-02-21 13:01:00 +0100513 goto error;
514 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200515 rc = smc_pnet_add_ib(pnettable, string, ibport, pnet_name);
516 if (!rc)
517 new_ibdev = true;
518 else if (rc != -EEXIST)
519 goto error;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100520 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200521 return (new_netdev || new_ibdev) ? 0 : -EEXIST;
Thomas Richter6812baa2017-01-09 16:55:15 +0100522
523error:
Thomas Richter6812baa2017-01-09 16:55:15 +0100524 return rc;
525}
526
527/* Convert an smc_pnetentry to a netlink attribute sequence */
Hans Wippel890a2cb2019-02-21 13:01:00 +0100528static int smc_pnet_set_nla(struct sk_buff *msg,
Karsten Graulfdff7042020-04-29 17:10:37 +0200529 struct smc_pnetentry *pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100530{
Hans Wippel890a2cb2019-02-21 13:01:00 +0100531 if (nla_put_string(msg, SMC_PNETID_NAME, pnetelem->pnet_name))
Thomas Richter6812baa2017-01-09 16:55:15 +0100532 return -1;
Karsten Graulfdff7042020-04-29 17:10:37 +0200533 if (pnetelem->type == SMC_PNET_ETH) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100534 if (nla_put_string(msg, SMC_PNETID_ETHNAME,
Karsten Graulfdff7042020-04-29 17:10:37 +0200535 pnetelem->eth_name))
Hans Wippel890a2cb2019-02-21 13:01:00 +0100536 return -1;
537 } else {
538 if (nla_put_string(msg, SMC_PNETID_ETHNAME, "n/a"))
539 return -1;
540 }
Karsten Graulfdff7042020-04-29 17:10:37 +0200541 if (pnetelem->type == SMC_PNET_IB) {
542 if (nla_put_string(msg, SMC_PNETID_IBNAME, pnetelem->ib_name) ||
Hans Wippel890a2cb2019-02-21 13:01:00 +0100543 nla_put_u8(msg, SMC_PNETID_IBPORT, pnetelem->ib_port))
544 return -1;
545 } else {
546 if (nla_put_string(msg, SMC_PNETID_IBNAME, "n/a") ||
547 nla_put_u8(msg, SMC_PNETID_IBPORT, 0xff))
548 return -1;
549 }
550
Thomas Richter6812baa2017-01-09 16:55:15 +0100551 return 0;
552}
553
Thomas Richter6812baa2017-01-09 16:55:15 +0100554static int smc_pnet_add(struct sk_buff *skb, struct genl_info *info)
555{
556 struct net *net = genl_info_net(info);
Thomas Richter6812baa2017-01-09 16:55:15 +0100557
Karsten Graulfdff7042020-04-29 17:10:37 +0200558 return smc_pnet_enter(net, info->attrs);
Thomas Richter6812baa2017-01-09 16:55:15 +0100559}
560
561static int smc_pnet_del(struct sk_buff *skb, struct genl_info *info)
562{
Hans Wippel64e28b52019-02-21 13:01:02 +0100563 struct net *net = genl_info_net(info);
564
Eric Biggersd49baa72018-05-13 17:01:30 -0700565 if (!info->attrs[SMC_PNETID_NAME])
566 return -EINVAL;
Hans Wippel64e28b52019-02-21 13:01:02 +0100567 return smc_pnet_remove_by_pnetid(net,
Thomas Richter6812baa2017-01-09 16:55:15 +0100568 (char *)nla_data(info->attrs[SMC_PNETID_NAME]));
569}
570
571static int smc_pnet_dump_start(struct netlink_callback *cb)
572{
573 cb->args[0] = 0;
574 return 0;
575}
576
577static int smc_pnet_dumpinfo(struct sk_buff *skb,
578 u32 portid, u32 seq, u32 flags,
Karsten Graulfdff7042020-04-29 17:10:37 +0200579 struct smc_pnetentry *pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100580{
581 void *hdr;
582
583 hdr = genlmsg_put(skb, portid, seq, &smc_pnet_nl_family,
584 flags, SMC_PNETID_GET);
585 if (!hdr)
586 return -ENOMEM;
587 if (smc_pnet_set_nla(skb, pnetelem) < 0) {
588 genlmsg_cancel(skb, hdr);
589 return -EMSGSIZE;
590 }
591 genlmsg_end(skb, hdr);
592 return 0;
593}
594
Hans Wippel64e28b52019-02-21 13:01:02 +0100595static int _smc_pnet_dump(struct net *net, struct sk_buff *skb, u32 portid,
596 u32 seq, u8 *pnetid, int start_idx)
Thomas Richter6812baa2017-01-09 16:55:15 +0100597{
Hans Wippel64e28b52019-02-21 13:01:02 +0100598 struct smc_pnettable *pnettable;
Thomas Richter6812baa2017-01-09 16:55:15 +0100599 struct smc_pnetentry *pnetelem;
Hans Wippel64e28b52019-02-21 13:01:02 +0100600 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100601 int idx = 0;
602
Hans Wippel64e28b52019-02-21 13:01:02 +0100603 /* get pnettable for namespace */
604 sn = net_generic(net, smc_net_id);
605 pnettable = &sn->pnettable;
606
Karsten Graulfdff7042020-04-29 17:10:37 +0200607 /* dump pnettable entries */
Hans Wippel64e28b52019-02-21 13:01:02 +0100608 read_lock(&pnettable->lock);
609 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100610 if (pnetid && !smc_pnet_match(pnetelem->pnet_name, pnetid))
Thomas Richter6812baa2017-01-09 16:55:15 +0100611 continue;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100612 if (idx++ < start_idx)
613 continue;
Karsten Graulfdff7042020-04-29 17:10:37 +0200614 /* if this is not the initial namespace, dump only netdev */
615 if (net != &init_net && pnetelem->type != SMC_PNET_ETH)
616 continue;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100617 if (smc_pnet_dumpinfo(skb, portid, seq, NLM_F_MULTI,
Karsten Graulfdff7042020-04-29 17:10:37 +0200618 pnetelem)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100619 --idx;
620 break;
621 }
622 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100623 read_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100624 return idx;
625}
626
627static int smc_pnet_dump(struct sk_buff *skb, struct netlink_callback *cb)
628{
Hans Wippel64e28b52019-02-21 13:01:02 +0100629 struct net *net = sock_net(skb->sk);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100630 int idx;
631
Hans Wippel64e28b52019-02-21 13:01:02 +0100632 idx = _smc_pnet_dump(net, skb, NETLINK_CB(cb->skb).portid,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100633 cb->nlh->nlmsg_seq, NULL, cb->args[0]);
634
635 cb->args[0] = idx;
Thomas Richter6812baa2017-01-09 16:55:15 +0100636 return skb->len;
637}
638
Hans Wippel890a2cb2019-02-21 13:01:00 +0100639/* Retrieve one PNETID entry */
640static int smc_pnet_get(struct sk_buff *skb, struct genl_info *info)
641{
Hans Wippel64e28b52019-02-21 13:01:02 +0100642 struct net *net = genl_info_net(info);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100643 struct sk_buff *msg;
644 void *hdr;
645
646 if (!info->attrs[SMC_PNETID_NAME])
647 return -EINVAL;
648
649 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
650 if (!msg)
651 return -ENOMEM;
652
Hans Wippel64e28b52019-02-21 13:01:02 +0100653 _smc_pnet_dump(net, msg, info->snd_portid, info->snd_seq,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100654 nla_data(info->attrs[SMC_PNETID_NAME]), 0);
655
656 /* finish multi part message and send it */
657 hdr = nlmsg_put(msg, info->snd_portid, info->snd_seq, NLMSG_DONE, 0,
658 NLM_F_MULTI);
659 if (!hdr) {
660 nlmsg_free(msg);
661 return -EMSGSIZE;
662 }
663 return genlmsg_reply(msg, info);
664}
665
Thomas Richter6812baa2017-01-09 16:55:15 +0100666/* Remove and delete all pnetids from pnet table.
667 */
668static int smc_pnet_flush(struct sk_buff *skb, struct genl_info *info)
669{
Hans Wippel64e28b52019-02-21 13:01:02 +0100670 struct net *net = genl_info_net(info);
671
Karsten Graul8ef659f2019-04-11 11:17:33 +0200672 smc_pnet_remove_by_pnetid(net, NULL);
673 return 0;
Thomas Richter6812baa2017-01-09 16:55:15 +0100674}
675
676/* SMC_PNETID generic netlink operation definition */
677static const struct genl_ops smc_pnet_ops[] = {
678 {
679 .cmd = SMC_PNETID_GET,
Johannes Bergef6243a2019-04-26 14:07:31 +0200680 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Hans Wippel29237d22020-01-21 01:04:46 +0100681 /* can be retrieved by unprivileged users */
Thomas Richter6812baa2017-01-09 16:55:15 +0100682 .doit = smc_pnet_get,
683 .dumpit = smc_pnet_dump,
684 .start = smc_pnet_dump_start
685 },
686 {
687 .cmd = SMC_PNETID_ADD,
Johannes Bergef6243a2019-04-26 14:07:31 +0200688 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100689 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100690 .doit = smc_pnet_add
691 },
692 {
693 .cmd = SMC_PNETID_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +0200694 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100695 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100696 .doit = smc_pnet_del
697 },
698 {
699 .cmd = SMC_PNETID_FLUSH,
Johannes Bergef6243a2019-04-26 14:07:31 +0200700 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100701 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100702 .doit = smc_pnet_flush
703 }
704};
705
706/* SMC_PNETID family definition */
Johannes Berg56ce3c52018-09-20 09:27:30 +0200707static struct genl_family smc_pnet_nl_family __ro_after_init = {
Thomas Richter6812baa2017-01-09 16:55:15 +0100708 .hdrsize = 0,
709 .name = SMCR_GENL_FAMILY_NAME,
710 .version = SMCR_GENL_FAMILY_VERSION,
711 .maxattr = SMC_PNETID_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100712 .policy = smc_pnet_policy,
Thomas Richter6812baa2017-01-09 16:55:15 +0100713 .netnsok = true,
714 .module = THIS_MODULE,
715 .ops = smc_pnet_ops,
716 .n_ops = ARRAY_SIZE(smc_pnet_ops)
717};
718
Ursula Braune888a2e2020-09-26 12:44:26 +0200719bool smc_pnet_is_ndev_pnetid(struct net *net, u8 *pnetid)
720{
721 struct smc_net *sn = net_generic(net, smc_net_id);
722 struct smc_pnetids_ndev_entry *pe;
723 bool rc = false;
724
725 read_lock(&sn->pnetids_ndev.lock);
726 list_for_each_entry(pe, &sn->pnetids_ndev.list, list) {
727 if (smc_pnet_match(pnetid, pe->pnetid)) {
728 rc = true;
729 goto unlock;
730 }
731 }
732
733unlock:
734 read_unlock(&sn->pnetids_ndev.lock);
735 return rc;
736}
737
738static int smc_pnet_add_pnetid(struct net *net, u8 *pnetid)
739{
740 struct smc_net *sn = net_generic(net, smc_net_id);
741 struct smc_pnetids_ndev_entry *pe, *pi;
742
743 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
744 if (!pe)
745 return -ENOMEM;
746
747 write_lock(&sn->pnetids_ndev.lock);
748 list_for_each_entry(pi, &sn->pnetids_ndev.list, list) {
749 if (smc_pnet_match(pnetid, pe->pnetid)) {
750 refcount_inc(&pi->refcnt);
751 kfree(pe);
752 goto unlock;
753 }
754 }
755 refcount_set(&pe->refcnt, 1);
756 memcpy(pe->pnetid, pnetid, SMC_MAX_PNETID_LEN);
757 list_add_tail(&pe->list, &sn->pnetids_ndev.list);
758
759unlock:
760 write_unlock(&sn->pnetids_ndev.lock);
761 return 0;
762}
763
764static void smc_pnet_remove_pnetid(struct net *net, u8 *pnetid)
765{
766 struct smc_net *sn = net_generic(net, smc_net_id);
767 struct smc_pnetids_ndev_entry *pe, *pe2;
768
769 write_lock(&sn->pnetids_ndev.lock);
770 list_for_each_entry_safe(pe, pe2, &sn->pnetids_ndev.list, list) {
771 if (smc_pnet_match(pnetid, pe->pnetid)) {
772 if (refcount_dec_and_test(&pe->refcnt)) {
773 list_del(&pe->list);
774 kfree(pe);
775 }
776 break;
777 }
778 }
779 write_unlock(&sn->pnetids_ndev.lock);
780}
781
782static void smc_pnet_add_base_pnetid(struct net *net, struct net_device *dev,
783 u8 *ndev_pnetid)
784{
785 struct net_device *base_dev;
786
787 base_dev = __pnet_find_base_ndev(dev);
788 if (base_dev->flags & IFF_UP &&
789 !smc_pnetid_by_dev_port(base_dev->dev.parent, base_dev->dev_port,
790 ndev_pnetid)) {
791 /* add to PNETIDs list */
792 smc_pnet_add_pnetid(net, ndev_pnetid);
793 }
794}
795
796/* create initial list of netdevice pnetids */
797static void smc_pnet_create_pnetids_list(struct net *net)
798{
799 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
800 struct net_device *dev;
801
802 rtnl_lock();
803 for_each_netdev(net, dev)
804 smc_pnet_add_base_pnetid(net, dev, ndev_pnetid);
805 rtnl_unlock();
806}
807
808/* clean up list of netdevice pnetids */
809static void smc_pnet_destroy_pnetids_list(struct net *net)
810{
811 struct smc_net *sn = net_generic(net, smc_net_id);
812 struct smc_pnetids_ndev_entry *pe, *temp_pe;
813
814 write_lock(&sn->pnetids_ndev.lock);
815 list_for_each_entry_safe(pe, temp_pe, &sn->pnetids_ndev.list, list) {
816 list_del(&pe->list);
817 kfree(pe);
818 }
819 write_unlock(&sn->pnetids_ndev.lock);
820}
821
Thomas Richter6812baa2017-01-09 16:55:15 +0100822static int smc_pnet_netdev_event(struct notifier_block *this,
823 unsigned long event, void *ptr)
824{
825 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
Ursula Braune888a2e2020-09-26 12:44:26 +0200826 struct net *net = dev_net(event_dev);
827 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
Thomas Richter6812baa2017-01-09 16:55:15 +0100828
829 switch (event) {
830 case NETDEV_REBOOT:
831 case NETDEV_UNREGISTER:
832 smc_pnet_remove_by_ndev(event_dev);
Guvenc Gulce3d453f52020-12-01 20:20:40 +0100833 smc_ib_ndev_change(event_dev, event);
Ursula Braunbe6a3f32018-06-28 19:05:04 +0200834 return NOTIFY_OK;
Karsten Graulfdff7042020-04-29 17:10:37 +0200835 case NETDEV_REGISTER:
836 smc_pnet_add_by_ndev(event_dev);
Guvenc Gulce3d453f52020-12-01 20:20:40 +0100837 smc_ib_ndev_change(event_dev, event);
Karsten Graulfdff7042020-04-29 17:10:37 +0200838 return NOTIFY_OK;
Ursula Braune888a2e2020-09-26 12:44:26 +0200839 case NETDEV_UP:
840 smc_pnet_add_base_pnetid(net, event_dev, ndev_pnetid);
841 return NOTIFY_OK;
842 case NETDEV_DOWN:
843 event_dev = __pnet_find_base_ndev(event_dev);
844 if (!smc_pnetid_by_dev_port(event_dev->dev.parent,
845 event_dev->dev_port, ndev_pnetid)) {
846 /* remove from PNETIDs list */
847 smc_pnet_remove_pnetid(net, ndev_pnetid);
848 }
849 return NOTIFY_OK;
Thomas Richter6812baa2017-01-09 16:55:15 +0100850 default:
Ursula Braunbe6a3f32018-06-28 19:05:04 +0200851 return NOTIFY_DONE;
Thomas Richter6812baa2017-01-09 16:55:15 +0100852 }
Thomas Richter6812baa2017-01-09 16:55:15 +0100853}
854
855static struct notifier_block smc_netdev_notifier = {
856 .notifier_call = smc_pnet_netdev_event
857};
858
Hans Wippel64e28b52019-02-21 13:01:02 +0100859/* init network namespace */
860int smc_pnet_net_init(struct net *net)
861{
862 struct smc_net *sn = net_generic(net, smc_net_id);
863 struct smc_pnettable *pnettable = &sn->pnettable;
Ursula Braune888a2e2020-09-26 12:44:26 +0200864 struct smc_pnetids_ndev *pnetids_ndev = &sn->pnetids_ndev;
Hans Wippel64e28b52019-02-21 13:01:02 +0100865
866 INIT_LIST_HEAD(&pnettable->pnetlist);
867 rwlock_init(&pnettable->lock);
Ursula Braune888a2e2020-09-26 12:44:26 +0200868 INIT_LIST_HEAD(&pnetids_ndev->list);
869 rwlock_init(&pnetids_ndev->lock);
870
871 smc_pnet_create_pnetids_list(net);
Hans Wippel64e28b52019-02-21 13:01:02 +0100872
873 return 0;
874}
875
Thomas Richter6812baa2017-01-09 16:55:15 +0100876int __init smc_pnet_init(void)
877{
878 int rc;
879
880 rc = genl_register_family(&smc_pnet_nl_family);
881 if (rc)
882 return rc;
883 rc = register_netdevice_notifier(&smc_netdev_notifier);
884 if (rc)
885 genl_unregister_family(&smc_pnet_nl_family);
Ursula Braune888a2e2020-09-26 12:44:26 +0200886
Thomas Richter6812baa2017-01-09 16:55:15 +0100887 return rc;
888}
889
Hans Wippel64e28b52019-02-21 13:01:02 +0100890/* exit network namespace */
891void smc_pnet_net_exit(struct net *net)
892{
893 /* flush pnet table */
894 smc_pnet_remove_by_pnetid(net, NULL);
Ursula Braune888a2e2020-09-26 12:44:26 +0200895 smc_pnet_destroy_pnetids_list(net);
Hans Wippel64e28b52019-02-21 13:01:02 +0100896}
897
Thomas Richter6812baa2017-01-09 16:55:15 +0100898void smc_pnet_exit(void)
899{
Thomas Richter6812baa2017-01-09 16:55:15 +0100900 unregister_netdevice_notifier(&smc_netdev_notifier);
901 genl_unregister_family(&smc_pnet_nl_family);
902}
903
Ursula Braune888a2e2020-09-26 12:44:26 +0200904static struct net_device *__pnet_find_base_ndev(struct net_device *ndev)
Thomas Richter6812baa2017-01-09 16:55:15 +0100905{
Ursula Braun0afff912018-06-28 19:05:05 +0200906 int i, nest_lvl;
907
Ursula Braune888a2e2020-09-26 12:44:26 +0200908 ASSERT_RTNL();
Taehee Yoof3b0a182019-10-21 18:47:58 +0000909 nest_lvl = ndev->lower_level;
Ursula Braun0afff912018-06-28 19:05:05 +0200910 for (i = 0; i < nest_lvl; i++) {
911 struct list_head *lower = &ndev->adj_list.lower;
912
913 if (list_empty(lower))
914 break;
915 lower = lower->next;
916 ndev = netdev_lower_get_next(ndev, &lower);
917 }
Ursula Braune888a2e2020-09-26 12:44:26 +0200918 return ndev;
919}
920
921/* Determine one base device for stacked net devices.
922 * If the lower device level contains more than one devices
923 * (for instance with bonding slaves), just the first device
924 * is used to reach a base device.
925 */
926static struct net_device *pnet_find_base_ndev(struct net_device *ndev)
927{
928 rtnl_lock();
929 ndev = __pnet_find_base_ndev(ndev);
Ursula Braun0afff912018-06-28 19:05:05 +0200930 rtnl_unlock();
931 return ndev;
932}
933
Hans Wippel64e28b52019-02-21 13:01:02 +0100934static int smc_pnet_find_ndev_pnetid_by_table(struct net_device *ndev,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100935 u8 *pnetid)
936{
Hans Wippel64e28b52019-02-21 13:01:02 +0100937 struct smc_pnettable *pnettable;
938 struct net *net = dev_net(ndev);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100939 struct smc_pnetentry *pnetelem;
Hans Wippel64e28b52019-02-21 13:01:02 +0100940 struct smc_net *sn;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100941 int rc = -ENOENT;
942
Hans Wippel64e28b52019-02-21 13:01:02 +0100943 /* get pnettable for namespace */
944 sn = net_generic(net, smc_net_id);
945 pnettable = &sn->pnettable;
946
947 read_lock(&pnettable->lock);
948 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
Karsten Graulfdff7042020-04-29 17:10:37 +0200949 if (pnetelem->type == SMC_PNET_ETH && ndev == pnetelem->ndev) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100950 /* get pnetid of netdev device */
951 memcpy(pnetid, pnetelem->pnet_name, SMC_MAX_PNETID_LEN);
952 rc = 0;
953 break;
954 }
955 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100956 read_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100957 return rc;
958}
959
Karsten Graul24fb6812021-10-16 11:37:48 +0200960static int smc_pnet_determine_gid(struct smc_ib_device *ibdev, int i,
961 struct smc_init_info *ini)
962{
963 if (!ini->check_smcrv2 &&
964 !smc_ib_determine_gid(ibdev, i, ini->vlan_id, ini->ib_gid, NULL,
965 NULL)) {
966 ini->ib_dev = ibdev;
967 ini->ib_port = i;
968 return 0;
969 }
970 if (ini->check_smcrv2 &&
971 !smc_ib_determine_gid(ibdev, i, ini->vlan_id, ini->smcrv2.ib_gid_v2,
972 NULL, &ini->smcrv2)) {
973 ini->smcrv2.ib_dev_v2 = ibdev;
974 ini->smcrv2.ib_port_v2 = i;
975 return 0;
976 }
977 return -ENODEV;
978}
979
Karsten Graulfdff7042020-04-29 17:10:37 +0200980/* find a roce device for the given pnetid */
981static void _smc_pnet_find_roce_by_pnetid(u8 *pnet_id,
Karsten Graul6c868a32020-05-01 12:48:11 +0200982 struct smc_init_info *ini,
Tony Lu0237a3a2021-12-28 21:06:09 +0800983 struct smc_ib_device *known_dev,
984 struct net *net)
Karsten Graulfdff7042020-04-29 17:10:37 +0200985{
986 struct smc_ib_device *ibdev;
987 int i;
988
Ursula Braun92f3cb02020-07-08 17:05:13 +0200989 mutex_lock(&smc_ib_devices.mutex);
Karsten Graulfdff7042020-04-29 17:10:37 +0200990 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
Tony Lu0237a3a2021-12-28 21:06:09 +0800991 if (ibdev == known_dev ||
992 !rdma_dev_access_netns(ibdev->ibdev, net))
Karsten Graul6c868a32020-05-01 12:48:11 +0200993 continue;
Karsten Graulfdff7042020-04-29 17:10:37 +0200994 for (i = 1; i <= SMC_MAX_PORTS; i++) {
995 if (!rdma_is_port_valid(ibdev->ibdev, i))
996 continue;
997 if (smc_pnet_match(ibdev->pnetid[i - 1], pnet_id) &&
998 smc_ib_port_active(ibdev, i) &&
Karsten Graul24fb6812021-10-16 11:37:48 +0200999 !test_bit(i - 1, ibdev->ports_going_away)) {
1000 if (!smc_pnet_determine_gid(ibdev, i, ini))
1001 goto out;
Karsten Graulfdff7042020-04-29 17:10:37 +02001002 }
1003 }
1004 }
1005out:
Ursula Braun92f3cb02020-07-08 17:05:13 +02001006 mutex_unlock(&smc_ib_devices.mutex);
Karsten Graulfdff7042020-04-29 17:10:37 +02001007}
1008
Tony Lu0237a3a2021-12-28 21:06:09 +08001009/* find alternate roce device with same pnet_id, vlan_id and net namespace */
Karsten Graul6c868a32020-05-01 12:48:11 +02001010void smc_pnet_find_alt_roce(struct smc_link_group *lgr,
1011 struct smc_init_info *ini,
1012 struct smc_ib_device *known_dev)
1013{
Tony Lu0237a3a2021-12-28 21:06:09 +08001014 struct net *net = lgr->net;
1015
1016 _smc_pnet_find_roce_by_pnetid(lgr->pnet_id, ini, known_dev, net);
Karsten Graul6c868a32020-05-01 12:48:11 +02001017}
1018
Ursula Braun54903572019-02-28 15:10:08 +01001019/* if handshake network device belongs to a roce device, return its
1020 * IB device and port
1021 */
1022static void smc_pnet_find_rdma_dev(struct net_device *netdev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001023 struct smc_init_info *ini)
Ursula Braun54903572019-02-28 15:10:08 +01001024{
Tony Lu0237a3a2021-12-28 21:06:09 +08001025 struct net *net = dev_net(netdev);
Ursula Braun54903572019-02-28 15:10:08 +01001026 struct smc_ib_device *ibdev;
1027
Ursula Braun92f3cb02020-07-08 17:05:13 +02001028 mutex_lock(&smc_ib_devices.mutex);
Ursula Braun54903572019-02-28 15:10:08 +01001029 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
1030 struct net_device *ndev;
1031 int i;
1032
Tony Lu0237a3a2021-12-28 21:06:09 +08001033 /* check rdma net namespace */
1034 if (!rdma_dev_access_netns(ibdev->ibdev, net))
1035 continue;
1036
Ursula Braun54903572019-02-28 15:10:08 +01001037 for (i = 1; i <= SMC_MAX_PORTS; i++) {
1038 if (!rdma_is_port_valid(ibdev->ibdev, i))
1039 continue;
1040 if (!ibdev->ibdev->ops.get_netdev)
1041 continue;
1042 ndev = ibdev->ibdev->ops.get_netdev(ibdev->ibdev, i);
1043 if (!ndev)
1044 continue;
1045 dev_put(ndev);
1046 if (netdev == ndev &&
1047 smc_ib_port_active(ibdev, i) &&
Karsten Graul24fb6812021-10-16 11:37:48 +02001048 !test_bit(i - 1, ibdev->ports_going_away)) {
1049 if (!smc_pnet_determine_gid(ibdev, i, ini))
1050 break;
Ursula Braun54903572019-02-28 15:10:08 +01001051 }
1052 }
1053 }
Ursula Braun92f3cb02020-07-08 17:05:13 +02001054 mutex_unlock(&smc_ib_devices.mutex);
Ursula Braun54903572019-02-28 15:10:08 +01001055}
1056
Ursula Braun0afff912018-06-28 19:05:05 +02001057/* Determine the corresponding IB device port based on the hardware PNETID.
Ursula Braun7005ada2018-07-25 16:35:31 +02001058 * Searching stops at the first matching active IB device port with vlan_id
1059 * configured.
Ursula Braun54903572019-02-28 15:10:08 +01001060 * If nothing found, check pnetid table.
1061 * If nothing found, try to use handshake device
Ursula Braun0afff912018-06-28 19:05:05 +02001062 */
1063static void smc_pnet_find_roce_by_pnetid(struct net_device *ndev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001064 struct smc_init_info *ini)
Ursula Braun0afff912018-06-28 19:05:05 +02001065{
1066 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
Tony Lu0237a3a2021-12-28 21:06:09 +08001067 struct net *net;
Ursula Braun0afff912018-06-28 19:05:05 +02001068
1069 ndev = pnet_find_base_ndev(ndev);
Tony Lu0237a3a2021-12-28 21:06:09 +08001070 net = dev_net(ndev);
Ursula Braun0afff912018-06-28 19:05:05 +02001071 if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
Hans Wippel890a2cb2019-02-21 13:01:00 +01001072 ndev_pnetid) &&
Ursula Braun54903572019-02-28 15:10:08 +01001073 smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid)) {
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001074 smc_pnet_find_rdma_dev(ndev, ini);
Ursula Braun0afff912018-06-28 19:05:05 +02001075 return; /* pnetid could not be determined */
Ursula Braun54903572019-02-28 15:10:08 +01001076 }
Tony Lu0237a3a2021-12-28 21:06:09 +08001077 _smc_pnet_find_roce_by_pnetid(ndev_pnetid, ini, NULL, net);
Ursula Braun0afff912018-06-28 19:05:05 +02001078}
1079
Hans Wippel1619f772018-06-28 19:05:08 +02001080static void smc_pnet_find_ism_by_pnetid(struct net_device *ndev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001081 struct smc_init_info *ini)
Hans Wippel1619f772018-06-28 19:05:08 +02001082{
1083 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
1084 struct smcd_dev *ismdev;
1085
1086 ndev = pnet_find_base_ndev(ndev);
1087 if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
Hans Wippelf3d74b22019-02-21 13:01:01 +01001088 ndev_pnetid) &&
1089 smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid))
Hans Wippel1619f772018-06-28 19:05:08 +02001090 return; /* pnetid could not be determined */
1091
Ursula Braun82087c02020-07-08 17:05:14 +02001092 mutex_lock(&smcd_dev_list.mutex);
Hans Wippel1619f772018-06-28 19:05:08 +02001093 list_for_each_entry(ismdev, &smcd_dev_list.list, list) {
Ursula Braunc3d94942019-10-09 10:07:46 +02001094 if (smc_pnet_match(ismdev->pnetid, ndev_pnetid) &&
Ursula Braun7b2977d2020-09-10 18:48:24 +02001095 !ismdev->going_away &&
Ursula Braun3fc64932020-09-26 12:44:23 +02001096 (!ini->ism_peer_gid[0] ||
1097 !smc_ism_cantalk(ini->ism_peer_gid[0], ini->vlan_id,
Ursula Braun7b2977d2020-09-10 18:48:24 +02001098 ismdev))) {
Ursula Braun3fc64932020-09-26 12:44:23 +02001099 ini->ism_dev[0] = ismdev;
Hans Wippel1619f772018-06-28 19:05:08 +02001100 break;
1101 }
1102 }
Ursula Braun82087c02020-07-08 17:05:14 +02001103 mutex_unlock(&smcd_dev_list.mutex);
Hans Wippel1619f772018-06-28 19:05:08 +02001104}
1105
Ursula Braun0afff912018-06-28 19:05:05 +02001106/* PNET table analysis for a given sock:
1107 * determine ib_device and port belonging to used internal TCP socket
1108 * ethernet interface.
1109 */
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001110void smc_pnet_find_roce_resource(struct sock *sk, struct smc_init_info *ini)
Ursula Braun0afff912018-06-28 19:05:05 +02001111{
1112 struct dst_entry *dst = sk_dst_get(sk);
1113
Ursula Braun0afff912018-06-28 19:05:05 +02001114 if (!dst)
1115 goto out;
1116 if (!dst->dev)
1117 goto out_rel;
1118
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001119 smc_pnet_find_roce_by_pnetid(dst->dev, ini);
Ursula Braun0afff912018-06-28 19:05:05 +02001120
Thomas Richter6812baa2017-01-09 16:55:15 +01001121out_rel:
1122 dst_release(dst);
Ursula Braun0afff912018-06-28 19:05:05 +02001123out:
1124 return;
Thomas Richter6812baa2017-01-09 16:55:15 +01001125}
Hans Wippel1619f772018-06-28 19:05:08 +02001126
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001127void smc_pnet_find_ism_resource(struct sock *sk, struct smc_init_info *ini)
Hans Wippel1619f772018-06-28 19:05:08 +02001128{
1129 struct dst_entry *dst = sk_dst_get(sk);
1130
Ursula Braun3fc64932020-09-26 12:44:23 +02001131 ini->ism_dev[0] = NULL;
Hans Wippel1619f772018-06-28 19:05:08 +02001132 if (!dst)
1133 goto out;
1134 if (!dst->dev)
1135 goto out_rel;
1136
Karsten Graulbc36d2f2019-04-12 12:57:26 +02001137 smc_pnet_find_ism_by_pnetid(dst->dev, ini);
Hans Wippel1619f772018-06-28 19:05:08 +02001138
1139out_rel:
1140 dst_release(dst);
1141out:
1142 return;
1143}
Karsten Graulfdff7042020-04-29 17:10:37 +02001144
1145/* Lookup and apply a pnet table entry to the given ib device.
1146 */
1147int smc_pnetid_by_table_ib(struct smc_ib_device *smcibdev, u8 ib_port)
1148{
1149 char *ib_name = smcibdev->ibdev->name;
1150 struct smc_pnettable *pnettable;
1151 struct smc_pnetentry *tmp_pe;
1152 struct smc_net *sn;
1153 int rc = -ENOENT;
1154
1155 /* get pnettable for init namespace */
1156 sn = net_generic(&init_net, smc_net_id);
1157 pnettable = &sn->pnettable;
1158
1159 read_lock(&pnettable->lock);
1160 list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) {
1161 if (tmp_pe->type == SMC_PNET_IB &&
1162 !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX) &&
1163 tmp_pe->ib_port == ib_port) {
1164 smc_pnet_apply_ib(smcibdev, ib_port, tmp_pe->pnet_name);
1165 rc = 0;
1166 break;
1167 }
1168 }
1169 read_unlock(&pnettable->lock);
1170
1171 return rc;
1172}
1173
1174/* Lookup and apply a pnet table entry to the given smcd device.
1175 */
1176int smc_pnetid_by_table_smcd(struct smcd_dev *smcddev)
1177{
1178 const char *ib_name = dev_name(&smcddev->dev);
1179 struct smc_pnettable *pnettable;
1180 struct smc_pnetentry *tmp_pe;
1181 struct smc_net *sn;
1182 int rc = -ENOENT;
1183
1184 /* get pnettable for init namespace */
1185 sn = net_generic(&init_net, smc_net_id);
1186 pnettable = &sn->pnettable;
1187
1188 read_lock(&pnettable->lock);
1189 list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) {
1190 if (tmp_pe->type == SMC_PNET_IB &&
1191 !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX)) {
1192 smc_pnet_apply_smcd(smcddev, tmp_pe->pnet_name);
1193 rc = 0;
1194 break;
1195 }
1196 }
1197 read_unlock(&pnettable->lock);
1198
1199 return rc;
1200}