blob: 3cdf81cf97a346250ea4d408ecd14caff053afe8 [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>
15#include <net/netlink.h>
16#include <net/genetlink.h>
17
18#include <uapi/linux/if.h>
19#include <uapi/linux/smc.h>
20
21#include <rdma/ib_verbs.h>
22
Hans Wippel64e28b52019-02-21 13:01:02 +010023#include <net/netns/generic.h>
24#include "smc_netns.h"
25
Thomas Richter6812baa2017-01-09 16:55:15 +010026#include "smc_pnet.h"
27#include "smc_ib.h"
Hans Wippel1619f772018-06-28 19:05:08 +020028#include "smc_ism.h"
Thomas Richter6812baa2017-01-09 16:55:15 +010029
Hans Wippel890a2cb2019-02-21 13:01:00 +010030#define SMC_ASCII_BLANK 32
31
32static struct net_device *pnet_find_base_ndev(struct net_device *ndev);
33
Thomas Richter6812baa2017-01-09 16:55:15 +010034static struct nla_policy smc_pnet_policy[SMC_PNETID_MAX + 1] = {
35 [SMC_PNETID_NAME] = {
36 .type = NLA_NUL_STRING,
Hans Wippelca8dc132019-01-30 18:51:01 +010037 .len = SMC_MAX_PNETID_LEN
Thomas Richter6812baa2017-01-09 16:55:15 +010038 },
39 [SMC_PNETID_ETHNAME] = {
40 .type = NLA_NUL_STRING,
41 .len = IFNAMSIZ - 1
42 },
43 [SMC_PNETID_IBNAME] = {
44 .type = NLA_NUL_STRING,
45 .len = IB_DEVICE_NAME_MAX - 1
46 },
47 [SMC_PNETID_IBPORT] = { .type = NLA_U8 }
48};
49
50static struct genl_family smc_pnet_nl_family;
51
52/**
Hans Wippel890a2cb2019-02-21 13:01:00 +010053 * struct smc_user_pnetentry - pnet identifier name entry for/from user
Thomas Richter6812baa2017-01-09 16:55:15 +010054 * @list: List node.
55 * @pnet_name: Pnet identifier name
56 * @ndev: pointer to network device.
57 * @smcibdev: Pointer to IB device.
Hans Wippel890a2cb2019-02-21 13:01:00 +010058 * @ib_port: Port of IB device.
Hans Wippelf3d74b22019-02-21 13:01:01 +010059 * @smcd_dev: Pointer to smcd device.
Thomas Richter6812baa2017-01-09 16:55:15 +010060 */
Hans Wippel890a2cb2019-02-21 13:01:00 +010061struct smc_user_pnetentry {
Thomas Richter6812baa2017-01-09 16:55:15 +010062 struct list_head list;
Ursula Braun0afff912018-06-28 19:05:05 +020063 char pnet_name[SMC_MAX_PNETID_LEN + 1];
Thomas Richter6812baa2017-01-09 16:55:15 +010064 struct net_device *ndev;
65 struct smc_ib_device *smcibdev;
66 u8 ib_port;
Hans Wippelf3d74b22019-02-21 13:01:01 +010067 struct smcd_dev *smcd_dev;
Thomas Richter6812baa2017-01-09 16:55:15 +010068};
69
Hans Wippel890a2cb2019-02-21 13:01:00 +010070/* pnet entry stored in pnet table */
71struct smc_pnetentry {
72 struct list_head list;
73 char pnet_name[SMC_MAX_PNETID_LEN + 1];
74 struct net_device *ndev;
75};
Thomas Richter6812baa2017-01-09 16:55:15 +010076
Hans Wippel890a2cb2019-02-21 13:01:00 +010077/* Check if two given pnetids match */
78static bool smc_pnet_match(u8 *pnetid1, u8 *pnetid2)
Thomas Richter6812baa2017-01-09 16:55:15 +010079{
Hans Wippel890a2cb2019-02-21 13:01:00 +010080 int i;
Thomas Richter6812baa2017-01-09 16:55:15 +010081
Hans Wippel890a2cb2019-02-21 13:01:00 +010082 for (i = 0; i < SMC_MAX_PNETID_LEN; i++) {
83 if ((pnetid1[i] == 0 || pnetid1[i] == SMC_ASCII_BLANK) &&
84 (pnetid2[i] == 0 || pnetid2[i] == SMC_ASCII_BLANK))
Thomas Richter6812baa2017-01-09 16:55:15 +010085 break;
Hans Wippel890a2cb2019-02-21 13:01:00 +010086 if (pnetid1[i] != pnetid2[i])
87 return false;
Thomas Richter6812baa2017-01-09 16:55:15 +010088 }
Hans Wippel890a2cb2019-02-21 13:01:00 +010089 return true;
Thomas Richter6812baa2017-01-09 16:55:15 +010090}
91
92/* Remove a pnetid from the pnet table.
93 */
Hans Wippel64e28b52019-02-21 13:01:02 +010094static int smc_pnet_remove_by_pnetid(struct net *net, char *pnet_name)
Thomas Richter6812baa2017-01-09 16:55:15 +010095{
96 struct smc_pnetentry *pnetelem, *tmp_pe;
Hans Wippel64e28b52019-02-21 13:01:02 +010097 struct smc_pnettable *pnettable;
Hans Wippel890a2cb2019-02-21 13:01:00 +010098 struct smc_ib_device *ibdev;
Hans Wippelf3d74b22019-02-21 13:01:01 +010099 struct smcd_dev *smcd_dev;
Hans Wippel64e28b52019-02-21 13:01:02 +0100100 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100101 int rc = -ENOENT;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100102 int ibport;
Thomas Richter6812baa2017-01-09 16:55:15 +0100103
Hans Wippel64e28b52019-02-21 13:01:02 +0100104 /* get pnettable for namespace */
105 sn = net_generic(net, smc_net_id);
106 pnettable = &sn->pnettable;
107
Hans Wippel890a2cb2019-02-21 13:01:00 +0100108 /* remove netdevices */
Hans Wippel64e28b52019-02-21 13:01:02 +0100109 write_lock(&pnettable->lock);
110 list_for_each_entry_safe(pnetelem, tmp_pe, &pnettable->pnetlist,
Thomas Richter6812baa2017-01-09 16:55:15 +0100111 list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100112 if (!pnet_name ||
113 smc_pnet_match(pnetelem->pnet_name, pnet_name)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100114 list_del(&pnetelem->list);
115 dev_put(pnetelem->ndev);
116 kfree(pnetelem);
117 rc = 0;
Thomas Richter6812baa2017-01-09 16:55:15 +0100118 }
119 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100120 write_unlock(&pnettable->lock);
121
122 /* if this is not the initial namespace, stop here */
123 if (net != &init_net)
124 return rc;
125
Hans Wippel890a2cb2019-02-21 13:01:00 +0100126 /* remove ib devices */
127 spin_lock(&smc_ib_devices.lock);
128 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
129 for (ibport = 0; ibport < SMC_MAX_PORTS; ibport++) {
130 if (ibdev->pnetid_by_user[ibport] &&
131 (!pnet_name ||
132 smc_pnet_match(pnet_name,
133 ibdev->pnetid[ibport]))) {
134 memset(ibdev->pnetid[ibport], 0,
135 SMC_MAX_PNETID_LEN);
136 ibdev->pnetid_by_user[ibport] = false;
137 rc = 0;
138 }
139 }
140 }
141 spin_unlock(&smc_ib_devices.lock);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100142 /* remove smcd devices */
143 spin_lock(&smcd_dev_list.lock);
144 list_for_each_entry(smcd_dev, &smcd_dev_list.list, list) {
145 if (smcd_dev->pnetid_by_user &&
146 (!pnet_name ||
147 smc_pnet_match(pnet_name, smcd_dev->pnetid))) {
148 memset(smcd_dev->pnetid, 0, SMC_MAX_PNETID_LEN);
149 smcd_dev->pnetid_by_user = false;
150 rc = 0;
151 }
152 }
153 spin_unlock(&smcd_dev_list.lock);
Thomas Richter6812baa2017-01-09 16:55:15 +0100154 return rc;
155}
156
157/* Remove a pnet entry mentioning a given network device from the pnet table.
158 */
159static int smc_pnet_remove_by_ndev(struct net_device *ndev)
160{
161 struct smc_pnetentry *pnetelem, *tmp_pe;
Hans Wippel64e28b52019-02-21 13:01:02 +0100162 struct smc_pnettable *pnettable;
163 struct net *net = dev_net(ndev);
164 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100165 int rc = -ENOENT;
166
Hans Wippel64e28b52019-02-21 13:01:02 +0100167 /* get pnettable for namespace */
168 sn = net_generic(net, smc_net_id);
169 pnettable = &sn->pnettable;
170
171 write_lock(&pnettable->lock);
172 list_for_each_entry_safe(pnetelem, tmp_pe, &pnettable->pnetlist, list) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100173 if (pnetelem->ndev == ndev) {
174 list_del(&pnetelem->list);
175 dev_put(pnetelem->ndev);
176 kfree(pnetelem);
177 rc = 0;
178 break;
179 }
180 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100181 write_unlock(&pnettable->lock);
Thomas Richter6812baa2017-01-09 16:55:15 +0100182 return rc;
183}
184
Thomas Richter6812baa2017-01-09 16:55:15 +0100185/* Append a pnetid to the end of the pnet table if not already on this list.
186 */
Hans Wippel64e28b52019-02-21 13:01:02 +0100187static int smc_pnet_enter(struct smc_pnettable *pnettable,
188 struct smc_user_pnetentry *new_pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100189{
Hans Wippel890a2cb2019-02-21 13:01:00 +0100190 u8 pnet_null[SMC_MAX_PNETID_LEN] = {0};
191 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
192 struct smc_pnetentry *tmp_pnetelem;
Thomas Richter6812baa2017-01-09 16:55:15 +0100193 struct smc_pnetentry *pnetelem;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100194 bool new_smcddev = false;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100195 struct net_device *ndev;
196 bool new_netdev = true;
197 bool new_ibdev = false;
198
199 if (new_pnetelem->smcibdev) {
200 struct smc_ib_device *ib_dev = new_pnetelem->smcibdev;
201 int ib_port = new_pnetelem->ib_port;
202
203 spin_lock(&smc_ib_devices.lock);
204 if (smc_pnet_match(ib_dev->pnetid[ib_port - 1], pnet_null)) {
205 memcpy(ib_dev->pnetid[ib_port - 1],
206 new_pnetelem->pnet_name, SMC_MAX_PNETID_LEN);
207 ib_dev->pnetid_by_user[ib_port - 1] = true;
208 new_ibdev = true;
209 }
210 spin_unlock(&smc_ib_devices.lock);
211 }
Hans Wippelf3d74b22019-02-21 13:01:01 +0100212 if (new_pnetelem->smcd_dev) {
213 struct smcd_dev *smcd_dev = new_pnetelem->smcd_dev;
214
215 spin_lock(&smcd_dev_list.lock);
216 if (smc_pnet_match(smcd_dev->pnetid, pnet_null)) {
217 memcpy(smcd_dev->pnetid, new_pnetelem->pnet_name,
218 SMC_MAX_PNETID_LEN);
219 smcd_dev->pnetid_by_user = true;
220 new_smcddev = true;
221 }
222 spin_unlock(&smcd_dev_list.lock);
223 }
Hans Wippel890a2cb2019-02-21 13:01:00 +0100224
225 if (!new_pnetelem->ndev)
Hans Wippelf3d74b22019-02-21 13:01:01 +0100226 return (new_ibdev || new_smcddev) ? 0 : -EEXIST;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100227
228 /* check if (base) netdev already has a pnetid. If there is one, we do
229 * not want to add a pnet table entry
230 */
231 ndev = pnet_find_base_ndev(new_pnetelem->ndev);
232 if (!smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
233 ndev_pnetid))
Hans Wippelf3d74b22019-02-21 13:01:01 +0100234 return (new_ibdev || new_smcddev) ? 0 : -EEXIST;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100235
236 /* add a new netdev entry to the pnet table if there isn't one */
237 tmp_pnetelem = kzalloc(sizeof(*pnetelem), GFP_KERNEL);
238 if (!tmp_pnetelem)
239 return -ENOMEM;
240 memcpy(tmp_pnetelem->pnet_name, new_pnetelem->pnet_name,
241 SMC_MAX_PNETID_LEN);
242 tmp_pnetelem->ndev = new_pnetelem->ndev;
Thomas Richter6812baa2017-01-09 16:55:15 +0100243
Hans Wippel64e28b52019-02-21 13:01:02 +0100244 write_lock(&pnettable->lock);
245 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100246 if (pnetelem->ndev == new_pnetelem->ndev)
247 new_netdev = false;
Thomas Richter6812baa2017-01-09 16:55:15 +0100248 }
Hans Wippel890a2cb2019-02-21 13:01:00 +0100249 if (new_netdev) {
250 dev_hold(tmp_pnetelem->ndev);
Hans Wippel64e28b52019-02-21 13:01:02 +0100251 list_add_tail(&tmp_pnetelem->list, &pnettable->pnetlist);
252 write_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100253 } else {
Hans Wippel64e28b52019-02-21 13:01:02 +0100254 write_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100255 kfree(tmp_pnetelem);
256 }
257
Hans Wippelf3d74b22019-02-21 13:01:01 +0100258 return (new_netdev || new_ibdev || new_smcddev) ? 0 : -EEXIST;
Thomas Richter6812baa2017-01-09 16:55:15 +0100259}
260
261/* The limit for pnetid is 16 characters.
262 * Valid characters should be (single-byte character set) a-z, A-Z, 0-9.
263 * Lower case letters are converted to upper case.
264 * Interior blanks should not be used.
265 */
266static bool smc_pnetid_valid(const char *pnet_name, char *pnetid)
267{
268 char *bf = skip_spaces(pnet_name);
269 size_t len = strlen(bf);
270 char *end = bf + len;
271
272 if (!len)
273 return false;
274 while (--end >= bf && isspace(*end))
275 ;
Ursula Braun0afff912018-06-28 19:05:05 +0200276 if (end - bf >= SMC_MAX_PNETID_LEN)
Thomas Richter6812baa2017-01-09 16:55:15 +0100277 return false;
278 while (bf <= end) {
279 if (!isalnum(*bf))
280 return false;
281 *pnetid++ = islower(*bf) ? toupper(*bf) : *bf;
282 bf++;
283 }
284 *pnetid = '\0';
285 return true;
286}
287
288/* Find an infiniband device by a given name. The device might not exist. */
Ursula Braun249633a2017-04-10 14:57:57 +0200289static struct smc_ib_device *smc_pnet_find_ib(char *ib_name)
Thomas Richter6812baa2017-01-09 16:55:15 +0100290{
291 struct smc_ib_device *ibdev;
292
293 spin_lock(&smc_ib_devices.lock);
294 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
295 if (!strncmp(ibdev->ibdev->name, ib_name,
Hans Wippelaf5f60c2019-02-21 13:01:03 +0100296 sizeof(ibdev->ibdev->name)) ||
297 !strncmp(dev_name(ibdev->ibdev->dev.parent), ib_name,
298 IB_DEVICE_NAME_MAX - 1)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100299 goto out;
300 }
301 }
302 ibdev = NULL;
303out:
304 spin_unlock(&smc_ib_devices.lock);
305 return ibdev;
306}
307
Hans Wippelf3d74b22019-02-21 13:01:01 +0100308/* Find an smcd device by a given name. The device might not exist. */
309static struct smcd_dev *smc_pnet_find_smcd(char *smcd_name)
310{
311 struct smcd_dev *smcd_dev;
312
313 spin_lock(&smcd_dev_list.lock);
314 list_for_each_entry(smcd_dev, &smcd_dev_list.list, list) {
315 if (!strncmp(dev_name(&smcd_dev->dev), smcd_name,
316 IB_DEVICE_NAME_MAX - 1))
317 goto out;
318 }
319 smcd_dev = NULL;
320out:
321 spin_unlock(&smcd_dev_list.lock);
322 return smcd_dev;
323}
324
Thomas Richter6812baa2017-01-09 16:55:15 +0100325/* Parse the supplied netlink attributes and fill a pnetentry structure.
326 * For ethernet and infiniband device names verify that the devices exist.
327 */
Hans Wippel890a2cb2019-02-21 13:01:00 +0100328static int smc_pnet_fill_entry(struct net *net,
329 struct smc_user_pnetentry *pnetelem,
Thomas Richter6812baa2017-01-09 16:55:15 +0100330 struct nlattr *tb[])
331{
Eric Biggersd49baa72018-05-13 17:01:30 -0700332 char *string, *ibname;
333 int rc;
Thomas Richter6812baa2017-01-09 16:55:15 +0100334
335 memset(pnetelem, 0, sizeof(*pnetelem));
336 INIT_LIST_HEAD(&pnetelem->list);
Eric Biggersd49baa72018-05-13 17:01:30 -0700337
338 rc = -EINVAL;
339 if (!tb[SMC_PNETID_NAME])
340 goto error;
341 string = (char *)nla_data(tb[SMC_PNETID_NAME]);
342 if (!smc_pnetid_valid(string, pnetelem->pnet_name))
343 goto error;
344
345 rc = -EINVAL;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100346 if (tb[SMC_PNETID_ETHNAME]) {
347 string = (char *)nla_data(tb[SMC_PNETID_ETHNAME]);
348 pnetelem->ndev = dev_get_by_name(net, string);
349 if (!pnetelem->ndev)
350 goto error;
351 }
Eric Biggersd49baa72018-05-13 17:01:30 -0700352
Hans Wippel64e28b52019-02-21 13:01:02 +0100353 /* if this is not the initial namespace, stop here */
354 if (net != &init_net)
355 return 0;
356
Eric Biggersd49baa72018-05-13 17:01:30 -0700357 rc = -EINVAL;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100358 if (tb[SMC_PNETID_IBNAME]) {
359 ibname = (char *)nla_data(tb[SMC_PNETID_IBNAME]);
360 ibname = strim(ibname);
361 pnetelem->smcibdev = smc_pnet_find_ib(ibname);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100362 pnetelem->smcd_dev = smc_pnet_find_smcd(ibname);
363 if (!pnetelem->smcibdev && !pnetelem->smcd_dev)
Hans Wippel890a2cb2019-02-21 13:01:00 +0100364 goto error;
365 if (pnetelem->smcibdev) {
366 if (!tb[SMC_PNETID_IBPORT])
367 goto error;
368 pnetelem->ib_port = nla_get_u8(tb[SMC_PNETID_IBPORT]);
369 if (pnetelem->ib_port < 1 ||
370 pnetelem->ib_port > SMC_MAX_PORTS)
371 goto error;
372 }
373 }
Eric Biggersd49baa72018-05-13 17:01:30 -0700374
Thomas Richter6812baa2017-01-09 16:55:15 +0100375 return 0;
376
377error:
378 if (pnetelem->ndev)
379 dev_put(pnetelem->ndev);
380 return rc;
381}
382
383/* Convert an smc_pnetentry to a netlink attribute sequence */
Hans Wippel890a2cb2019-02-21 13:01:00 +0100384static int smc_pnet_set_nla(struct sk_buff *msg,
385 struct smc_user_pnetentry *pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100386{
Hans Wippel890a2cb2019-02-21 13:01:00 +0100387 if (nla_put_string(msg, SMC_PNETID_NAME, pnetelem->pnet_name))
Thomas Richter6812baa2017-01-09 16:55:15 +0100388 return -1;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100389 if (pnetelem->ndev) {
390 if (nla_put_string(msg, SMC_PNETID_ETHNAME,
391 pnetelem->ndev->name))
392 return -1;
393 } else {
394 if (nla_put_string(msg, SMC_PNETID_ETHNAME, "n/a"))
395 return -1;
396 }
397 if (pnetelem->smcibdev) {
398 if (nla_put_string(msg, SMC_PNETID_IBNAME,
Hans Wippelaf5f60c2019-02-21 13:01:03 +0100399 dev_name(pnetelem->smcibdev->ibdev->dev.parent)) ||
Hans Wippel890a2cb2019-02-21 13:01:00 +0100400 nla_put_u8(msg, SMC_PNETID_IBPORT, pnetelem->ib_port))
401 return -1;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100402 } else if (pnetelem->smcd_dev) {
403 if (nla_put_string(msg, SMC_PNETID_IBNAME,
404 dev_name(&pnetelem->smcd_dev->dev)) ||
405 nla_put_u8(msg, SMC_PNETID_IBPORT, 1))
406 return -1;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100407 } else {
408 if (nla_put_string(msg, SMC_PNETID_IBNAME, "n/a") ||
409 nla_put_u8(msg, SMC_PNETID_IBPORT, 0xff))
410 return -1;
411 }
412
Thomas Richter6812baa2017-01-09 16:55:15 +0100413 return 0;
414}
415
Thomas Richter6812baa2017-01-09 16:55:15 +0100416static int smc_pnet_add(struct sk_buff *skb, struct genl_info *info)
417{
418 struct net *net = genl_info_net(info);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100419 struct smc_user_pnetentry pnetelem;
Hans Wippel64e28b52019-02-21 13:01:02 +0100420 struct smc_pnettable *pnettable;
421 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100422 int rc;
423
Hans Wippel64e28b52019-02-21 13:01:02 +0100424 /* get pnettable for namespace */
425 sn = net_generic(net, smc_net_id);
426 pnettable = &sn->pnettable;
427
Hans Wippel890a2cb2019-02-21 13:01:00 +0100428 rc = smc_pnet_fill_entry(net, &pnetelem, info->attrs);
Thomas Richter6812baa2017-01-09 16:55:15 +0100429 if (!rc)
Hans Wippel64e28b52019-02-21 13:01:02 +0100430 rc = smc_pnet_enter(pnettable, &pnetelem);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100431 if (pnetelem.ndev)
432 dev_put(pnetelem.ndev);
Thomas Richter6812baa2017-01-09 16:55:15 +0100433 return rc;
434}
435
436static int smc_pnet_del(struct sk_buff *skb, struct genl_info *info)
437{
Hans Wippel64e28b52019-02-21 13:01:02 +0100438 struct net *net = genl_info_net(info);
439
Eric Biggersd49baa72018-05-13 17:01:30 -0700440 if (!info->attrs[SMC_PNETID_NAME])
441 return -EINVAL;
Hans Wippel64e28b52019-02-21 13:01:02 +0100442 return smc_pnet_remove_by_pnetid(net,
Thomas Richter6812baa2017-01-09 16:55:15 +0100443 (char *)nla_data(info->attrs[SMC_PNETID_NAME]));
444}
445
446static int smc_pnet_dump_start(struct netlink_callback *cb)
447{
448 cb->args[0] = 0;
449 return 0;
450}
451
452static int smc_pnet_dumpinfo(struct sk_buff *skb,
453 u32 portid, u32 seq, u32 flags,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100454 struct smc_user_pnetentry *pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100455{
456 void *hdr;
457
458 hdr = genlmsg_put(skb, portid, seq, &smc_pnet_nl_family,
459 flags, SMC_PNETID_GET);
460 if (!hdr)
461 return -ENOMEM;
462 if (smc_pnet_set_nla(skb, pnetelem) < 0) {
463 genlmsg_cancel(skb, hdr);
464 return -EMSGSIZE;
465 }
466 genlmsg_end(skb, hdr);
467 return 0;
468}
469
Hans Wippel64e28b52019-02-21 13:01:02 +0100470static int _smc_pnet_dump(struct net *net, struct sk_buff *skb, u32 portid,
471 u32 seq, u8 *pnetid, int start_idx)
Thomas Richter6812baa2017-01-09 16:55:15 +0100472{
Hans Wippel890a2cb2019-02-21 13:01:00 +0100473 struct smc_user_pnetentry tmp_entry;
Hans Wippel64e28b52019-02-21 13:01:02 +0100474 struct smc_pnettable *pnettable;
Thomas Richter6812baa2017-01-09 16:55:15 +0100475 struct smc_pnetentry *pnetelem;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100476 struct smc_ib_device *ibdev;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100477 struct smcd_dev *smcd_dev;
Hans Wippel64e28b52019-02-21 13:01:02 +0100478 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100479 int idx = 0;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100480 int ibport;
Thomas Richter6812baa2017-01-09 16:55:15 +0100481
Hans Wippel64e28b52019-02-21 13:01:02 +0100482 /* get pnettable for namespace */
483 sn = net_generic(net, smc_net_id);
484 pnettable = &sn->pnettable;
485
Hans Wippel890a2cb2019-02-21 13:01:00 +0100486 /* dump netdevices */
Hans Wippel64e28b52019-02-21 13:01:02 +0100487 read_lock(&pnettable->lock);
488 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100489 if (pnetid && !smc_pnet_match(pnetelem->pnet_name, pnetid))
Thomas Richter6812baa2017-01-09 16:55:15 +0100490 continue;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100491 if (idx++ < start_idx)
492 continue;
493 memset(&tmp_entry, 0, sizeof(tmp_entry));
494 memcpy(&tmp_entry.pnet_name, pnetelem->pnet_name,
495 SMC_MAX_PNETID_LEN);
496 tmp_entry.ndev = pnetelem->ndev;
497 if (smc_pnet_dumpinfo(skb, portid, seq, NLM_F_MULTI,
498 &tmp_entry)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100499 --idx;
500 break;
501 }
502 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100503 read_unlock(&pnettable->lock);
504
505 /* if this is not the initial namespace, stop here */
506 if (net != &init_net)
507 return idx;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100508
509 /* dump ib devices */
510 spin_lock(&smc_ib_devices.lock);
511 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
512 for (ibport = 0; ibport < SMC_MAX_PORTS; ibport++) {
513 if (ibdev->pnetid_by_user[ibport]) {
514 if (pnetid &&
515 !smc_pnet_match(ibdev->pnetid[ibport],
516 pnetid))
517 continue;
518 if (idx++ < start_idx)
519 continue;
520 memset(&tmp_entry, 0, sizeof(tmp_entry));
521 memcpy(&tmp_entry.pnet_name,
522 ibdev->pnetid[ibport],
523 SMC_MAX_PNETID_LEN);
524 tmp_entry.smcibdev = ibdev;
525 tmp_entry.ib_port = ibport + 1;
526 if (smc_pnet_dumpinfo(skb, portid, seq,
527 NLM_F_MULTI,
528 &tmp_entry)) {
529 --idx;
530 break;
531 }
532 }
533 }
534 }
535 spin_unlock(&smc_ib_devices.lock);
536
Hans Wippelf3d74b22019-02-21 13:01:01 +0100537 /* dump smcd devices */
538 spin_lock(&smcd_dev_list.lock);
539 list_for_each_entry(smcd_dev, &smcd_dev_list.list, list) {
540 if (smcd_dev->pnetid_by_user) {
541 if (pnetid && !smc_pnet_match(smcd_dev->pnetid, pnetid))
542 continue;
543 if (idx++ < start_idx)
544 continue;
545 memset(&tmp_entry, 0, sizeof(tmp_entry));
546 memcpy(&tmp_entry.pnet_name, smcd_dev->pnetid,
547 SMC_MAX_PNETID_LEN);
548 tmp_entry.smcd_dev = smcd_dev;
549 if (smc_pnet_dumpinfo(skb, portid, seq, NLM_F_MULTI,
550 &tmp_entry)) {
551 --idx;
552 break;
553 }
554 }
555 }
556 spin_unlock(&smcd_dev_list.lock);
557
Hans Wippel890a2cb2019-02-21 13:01:00 +0100558 return idx;
559}
560
561static int smc_pnet_dump(struct sk_buff *skb, struct netlink_callback *cb)
562{
Hans Wippel64e28b52019-02-21 13:01:02 +0100563 struct net *net = sock_net(skb->sk);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100564 int idx;
565
Hans Wippel64e28b52019-02-21 13:01:02 +0100566 idx = _smc_pnet_dump(net, skb, NETLINK_CB(cb->skb).portid,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100567 cb->nlh->nlmsg_seq, NULL, cb->args[0]);
568
569 cb->args[0] = idx;
Thomas Richter6812baa2017-01-09 16:55:15 +0100570 return skb->len;
571}
572
Hans Wippel890a2cb2019-02-21 13:01:00 +0100573/* Retrieve one PNETID entry */
574static int smc_pnet_get(struct sk_buff *skb, struct genl_info *info)
575{
Hans Wippel64e28b52019-02-21 13:01:02 +0100576 struct net *net = genl_info_net(info);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100577 struct sk_buff *msg;
578 void *hdr;
579
580 if (!info->attrs[SMC_PNETID_NAME])
581 return -EINVAL;
582
583 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
584 if (!msg)
585 return -ENOMEM;
586
Hans Wippel64e28b52019-02-21 13:01:02 +0100587 _smc_pnet_dump(net, msg, info->snd_portid, info->snd_seq,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100588 nla_data(info->attrs[SMC_PNETID_NAME]), 0);
589
590 /* finish multi part message and send it */
591 hdr = nlmsg_put(msg, info->snd_portid, info->snd_seq, NLMSG_DONE, 0,
592 NLM_F_MULTI);
593 if (!hdr) {
594 nlmsg_free(msg);
595 return -EMSGSIZE;
596 }
597 return genlmsg_reply(msg, info);
598}
599
Thomas Richter6812baa2017-01-09 16:55:15 +0100600/* Remove and delete all pnetids from pnet table.
601 */
602static int smc_pnet_flush(struct sk_buff *skb, struct genl_info *info)
603{
Hans Wippel64e28b52019-02-21 13:01:02 +0100604 struct net *net = genl_info_net(info);
605
606 return smc_pnet_remove_by_pnetid(net, NULL);
Thomas Richter6812baa2017-01-09 16:55:15 +0100607}
608
609/* SMC_PNETID generic netlink operation definition */
610static const struct genl_ops smc_pnet_ops[] = {
611 {
612 .cmd = SMC_PNETID_GET,
613 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100614 .doit = smc_pnet_get,
615 .dumpit = smc_pnet_dump,
616 .start = smc_pnet_dump_start
617 },
618 {
619 .cmd = SMC_PNETID_ADD,
620 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100621 .doit = smc_pnet_add
622 },
623 {
624 .cmd = SMC_PNETID_DEL,
625 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100626 .doit = smc_pnet_del
627 },
628 {
629 .cmd = SMC_PNETID_FLUSH,
630 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100631 .doit = smc_pnet_flush
632 }
633};
634
635/* SMC_PNETID family definition */
Johannes Berg56ce3c52018-09-20 09:27:30 +0200636static struct genl_family smc_pnet_nl_family __ro_after_init = {
Thomas Richter6812baa2017-01-09 16:55:15 +0100637 .hdrsize = 0,
638 .name = SMCR_GENL_FAMILY_NAME,
639 .version = SMCR_GENL_FAMILY_VERSION,
640 .maxattr = SMC_PNETID_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100641 .policy = smc_pnet_policy,
Thomas Richter6812baa2017-01-09 16:55:15 +0100642 .netnsok = true,
643 .module = THIS_MODULE,
644 .ops = smc_pnet_ops,
645 .n_ops = ARRAY_SIZE(smc_pnet_ops)
646};
647
648static int smc_pnet_netdev_event(struct notifier_block *this,
649 unsigned long event, void *ptr)
650{
651 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
652
653 switch (event) {
654 case NETDEV_REBOOT:
655 case NETDEV_UNREGISTER:
656 smc_pnet_remove_by_ndev(event_dev);
Ursula Braunbe6a3f32018-06-28 19:05:04 +0200657 return NOTIFY_OK;
Thomas Richter6812baa2017-01-09 16:55:15 +0100658 default:
Ursula Braunbe6a3f32018-06-28 19:05:04 +0200659 return NOTIFY_DONE;
Thomas Richter6812baa2017-01-09 16:55:15 +0100660 }
Thomas Richter6812baa2017-01-09 16:55:15 +0100661}
662
663static struct notifier_block smc_netdev_notifier = {
664 .notifier_call = smc_pnet_netdev_event
665};
666
Hans Wippel64e28b52019-02-21 13:01:02 +0100667/* init network namespace */
668int smc_pnet_net_init(struct net *net)
669{
670 struct smc_net *sn = net_generic(net, smc_net_id);
671 struct smc_pnettable *pnettable = &sn->pnettable;
672
673 INIT_LIST_HEAD(&pnettable->pnetlist);
674 rwlock_init(&pnettable->lock);
675
676 return 0;
677}
678
Thomas Richter6812baa2017-01-09 16:55:15 +0100679int __init smc_pnet_init(void)
680{
681 int rc;
682
683 rc = genl_register_family(&smc_pnet_nl_family);
684 if (rc)
685 return rc;
686 rc = register_netdevice_notifier(&smc_netdev_notifier);
687 if (rc)
688 genl_unregister_family(&smc_pnet_nl_family);
689 return rc;
690}
691
Hans Wippel64e28b52019-02-21 13:01:02 +0100692/* exit network namespace */
693void smc_pnet_net_exit(struct net *net)
694{
695 /* flush pnet table */
696 smc_pnet_remove_by_pnetid(net, NULL);
697}
698
Thomas Richter6812baa2017-01-09 16:55:15 +0100699void smc_pnet_exit(void)
700{
Thomas Richter6812baa2017-01-09 16:55:15 +0100701 unregister_netdevice_notifier(&smc_netdev_notifier);
702 genl_unregister_family(&smc_pnet_nl_family);
703}
704
Ursula Braun0afff912018-06-28 19:05:05 +0200705/* Determine one base device for stacked net devices.
706 * If the lower device level contains more than one devices
707 * (for instance with bonding slaves), just the first device
708 * is used to reach a base device.
Thomas Richter6812baa2017-01-09 16:55:15 +0100709 */
Ursula Braun0afff912018-06-28 19:05:05 +0200710static struct net_device *pnet_find_base_ndev(struct net_device *ndev)
Thomas Richter6812baa2017-01-09 16:55:15 +0100711{
Ursula Braun0afff912018-06-28 19:05:05 +0200712 int i, nest_lvl;
713
714 rtnl_lock();
715 nest_lvl = dev_get_nest_level(ndev);
716 for (i = 0; i < nest_lvl; i++) {
717 struct list_head *lower = &ndev->adj_list.lower;
718
719 if (list_empty(lower))
720 break;
721 lower = lower->next;
722 ndev = netdev_lower_get_next(ndev, &lower);
723 }
724 rtnl_unlock();
725 return ndev;
726}
727
Hans Wippel64e28b52019-02-21 13:01:02 +0100728static int smc_pnet_find_ndev_pnetid_by_table(struct net_device *ndev,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100729 u8 *pnetid)
730{
Hans Wippel64e28b52019-02-21 13:01:02 +0100731 struct smc_pnettable *pnettable;
732 struct net *net = dev_net(ndev);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100733 struct smc_pnetentry *pnetelem;
Hans Wippel64e28b52019-02-21 13:01:02 +0100734 struct smc_net *sn;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100735 int rc = -ENOENT;
736
Hans Wippel64e28b52019-02-21 13:01:02 +0100737 /* get pnettable for namespace */
738 sn = net_generic(net, smc_net_id);
739 pnettable = &sn->pnettable;
740
741 read_lock(&pnettable->lock);
742 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
743 if (ndev == pnetelem->ndev) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100744 /* get pnetid of netdev device */
745 memcpy(pnetid, pnetelem->pnet_name, SMC_MAX_PNETID_LEN);
746 rc = 0;
747 break;
748 }
749 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100750 read_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100751 return rc;
752}
753
Ursula Braun54903572019-02-28 15:10:08 +0100754/* if handshake network device belongs to a roce device, return its
755 * IB device and port
756 */
757static void smc_pnet_find_rdma_dev(struct net_device *netdev,
758 struct smc_ib_device **smcibdev,
759 u8 *ibport, unsigned short vlan_id, u8 gid[])
760{
761 struct smc_ib_device *ibdev;
762
763 spin_lock(&smc_ib_devices.lock);
764 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
765 struct net_device *ndev;
766 int i;
767
768 for (i = 1; i <= SMC_MAX_PORTS; i++) {
769 if (!rdma_is_port_valid(ibdev->ibdev, i))
770 continue;
771 if (!ibdev->ibdev->ops.get_netdev)
772 continue;
773 ndev = ibdev->ibdev->ops.get_netdev(ibdev->ibdev, i);
774 if (!ndev)
775 continue;
776 dev_put(ndev);
777 if (netdev == ndev &&
778 smc_ib_port_active(ibdev, i) &&
779 !smc_ib_determine_gid(ibdev, i, vlan_id, gid,
780 NULL)) {
781 *smcibdev = ibdev;
782 *ibport = i;
783 break;
784 }
785 }
786 }
787 spin_unlock(&smc_ib_devices.lock);
788}
789
Ursula Braun0afff912018-06-28 19:05:05 +0200790/* Determine the corresponding IB device port based on the hardware PNETID.
Ursula Braun7005ada2018-07-25 16:35:31 +0200791 * Searching stops at the first matching active IB device port with vlan_id
792 * configured.
Ursula Braun54903572019-02-28 15:10:08 +0100793 * If nothing found, check pnetid table.
794 * If nothing found, try to use handshake device
Ursula Braun0afff912018-06-28 19:05:05 +0200795 */
796static void smc_pnet_find_roce_by_pnetid(struct net_device *ndev,
797 struct smc_ib_device **smcibdev,
Ursula Braun7005ada2018-07-25 16:35:31 +0200798 u8 *ibport, unsigned short vlan_id,
799 u8 gid[])
Ursula Braun0afff912018-06-28 19:05:05 +0200800{
801 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
802 struct smc_ib_device *ibdev;
803 int i;
804
805 ndev = pnet_find_base_ndev(ndev);
806 if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100807 ndev_pnetid) &&
Ursula Braun54903572019-02-28 15:10:08 +0100808 smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid)) {
809 smc_pnet_find_rdma_dev(ndev, smcibdev, ibport, vlan_id, gid);
Ursula Braun0afff912018-06-28 19:05:05 +0200810 return; /* pnetid could not be determined */
Ursula Braun54903572019-02-28 15:10:08 +0100811 }
Ursula Braun0afff912018-06-28 19:05:05 +0200812
813 spin_lock(&smc_ib_devices.lock);
814 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
815 for (i = 1; i <= SMC_MAX_PORTS; i++) {
Ursula Braun7005ada2018-07-25 16:35:31 +0200816 if (!rdma_is_port_valid(ibdev->ibdev, i))
817 continue;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100818 if (smc_pnet_match(ibdev->pnetid[i - 1], ndev_pnetid) &&
Ursula Braun7005ada2018-07-25 16:35:31 +0200819 smc_ib_port_active(ibdev, i) &&
820 !smc_ib_determine_gid(ibdev, i, vlan_id, gid,
821 NULL)) {
Ursula Braun0afff912018-06-28 19:05:05 +0200822 *smcibdev = ibdev;
823 *ibport = i;
Ursula Braun7005ada2018-07-25 16:35:31 +0200824 goto out;
Ursula Braun0afff912018-06-28 19:05:05 +0200825 }
826 }
827 }
Ursula Braun7005ada2018-07-25 16:35:31 +0200828out:
Ursula Braun0afff912018-06-28 19:05:05 +0200829 spin_unlock(&smc_ib_devices.lock);
830}
831
Hans Wippel1619f772018-06-28 19:05:08 +0200832static void smc_pnet_find_ism_by_pnetid(struct net_device *ndev,
833 struct smcd_dev **smcismdev)
834{
835 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
836 struct smcd_dev *ismdev;
837
838 ndev = pnet_find_base_ndev(ndev);
839 if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
Hans Wippelf3d74b22019-02-21 13:01:01 +0100840 ndev_pnetid) &&
841 smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid))
Hans Wippel1619f772018-06-28 19:05:08 +0200842 return; /* pnetid could not be determined */
843
844 spin_lock(&smcd_dev_list.lock);
845 list_for_each_entry(ismdev, &smcd_dev_list.list, list) {
Hans Wippelf3d74b22019-02-21 13:01:01 +0100846 if (smc_pnet_match(ismdev->pnetid, ndev_pnetid)) {
Hans Wippel1619f772018-06-28 19:05:08 +0200847 *smcismdev = ismdev;
848 break;
849 }
850 }
851 spin_unlock(&smcd_dev_list.lock);
852}
853
Ursula Braun0afff912018-06-28 19:05:05 +0200854/* PNET table analysis for a given sock:
855 * determine ib_device and port belonging to used internal TCP socket
856 * ethernet interface.
857 */
858void smc_pnet_find_roce_resource(struct sock *sk,
Ursula Braun7005ada2018-07-25 16:35:31 +0200859 struct smc_ib_device **smcibdev, u8 *ibport,
860 unsigned short vlan_id, u8 gid[])
Ursula Braun0afff912018-06-28 19:05:05 +0200861{
862 struct dst_entry *dst = sk_dst_get(sk);
863
864 *smcibdev = NULL;
865 *ibport = 0;
866
867 if (!dst)
868 goto out;
869 if (!dst->dev)
870 goto out_rel;
871
Ursula Braun7005ada2018-07-25 16:35:31 +0200872 smc_pnet_find_roce_by_pnetid(dst->dev, smcibdev, ibport, vlan_id, gid);
Ursula Braun0afff912018-06-28 19:05:05 +0200873
Thomas Richter6812baa2017-01-09 16:55:15 +0100874out_rel:
875 dst_release(dst);
Ursula Braun0afff912018-06-28 19:05:05 +0200876out:
877 return;
Thomas Richter6812baa2017-01-09 16:55:15 +0100878}
Hans Wippel1619f772018-06-28 19:05:08 +0200879
880void smc_pnet_find_ism_resource(struct sock *sk, struct smcd_dev **smcismdev)
881{
882 struct dst_entry *dst = sk_dst_get(sk);
883
884 *smcismdev = NULL;
885 if (!dst)
886 goto out;
887 if (!dst->dev)
888 goto out_rel;
889
Hans Wippel1619f772018-06-28 19:05:08 +0200890 smc_pnet_find_ism_by_pnetid(dst->dev, smcismdev);
891
892out_rel:
893 dst_release(dst);
894out:
895 return;
896}