blob: 2a5ed47c3e081bc8a6b6109e2f30716c8b27d173 [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"
Karsten Graulbc36d2f2019-04-12 12:57:26 +020029#include "smc_core.h"
Thomas Richter6812baa2017-01-09 16:55:15 +010030
Hans Wippel890a2cb2019-02-21 13:01:00 +010031#define SMC_ASCII_BLANK 32
32
33static struct net_device *pnet_find_base_ndev(struct net_device *ndev);
34
Thomas Richter6812baa2017-01-09 16:55:15 +010035static struct nla_policy smc_pnet_policy[SMC_PNETID_MAX + 1] = {
36 [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
53/**
Hans Wippel890a2cb2019-02-21 13:01:00 +010054 * struct smc_user_pnetentry - pnet identifier name entry for/from user
Thomas Richter6812baa2017-01-09 16:55:15 +010055 * @list: List node.
56 * @pnet_name: Pnet identifier name
57 * @ndev: pointer to network device.
58 * @smcibdev: Pointer to IB device.
Hans Wippel890a2cb2019-02-21 13:01:00 +010059 * @ib_port: Port of IB device.
Hans Wippelf3d74b22019-02-21 13:01:01 +010060 * @smcd_dev: Pointer to smcd device.
Thomas Richter6812baa2017-01-09 16:55:15 +010061 */
Hans Wippel890a2cb2019-02-21 13:01:00 +010062struct smc_user_pnetentry {
Thomas Richter6812baa2017-01-09 16:55:15 +010063 struct list_head list;
Ursula Braun0afff912018-06-28 19:05:05 +020064 char pnet_name[SMC_MAX_PNETID_LEN + 1];
Thomas Richter6812baa2017-01-09 16:55:15 +010065 struct net_device *ndev;
66 struct smc_ib_device *smcibdev;
67 u8 ib_port;
Hans Wippelf3d74b22019-02-21 13:01:01 +010068 struct smcd_dev *smcd_dev;
Thomas Richter6812baa2017-01-09 16:55:15 +010069};
70
Hans Wippel890a2cb2019-02-21 13:01:00 +010071/* pnet entry stored in pnet table */
72struct smc_pnetentry {
73 struct list_head list;
74 char pnet_name[SMC_MAX_PNETID_LEN + 1];
75 struct net_device *ndev;
76};
Thomas Richter6812baa2017-01-09 16:55:15 +010077
Hans Wippel890a2cb2019-02-21 13:01:00 +010078/* Check if two given pnetids match */
79static bool smc_pnet_match(u8 *pnetid1, u8 *pnetid2)
Thomas Richter6812baa2017-01-09 16:55:15 +010080{
Hans Wippel890a2cb2019-02-21 13:01:00 +010081 int i;
Thomas Richter6812baa2017-01-09 16:55:15 +010082
Hans Wippel890a2cb2019-02-21 13:01:00 +010083 for (i = 0; i < SMC_MAX_PNETID_LEN; i++) {
84 if ((pnetid1[i] == 0 || pnetid1[i] == SMC_ASCII_BLANK) &&
85 (pnetid2[i] == 0 || pnetid2[i] == SMC_ASCII_BLANK))
Thomas Richter6812baa2017-01-09 16:55:15 +010086 break;
Hans Wippel890a2cb2019-02-21 13:01:00 +010087 if (pnetid1[i] != pnetid2[i])
88 return false;
Thomas Richter6812baa2017-01-09 16:55:15 +010089 }
Hans Wippel890a2cb2019-02-21 13:01:00 +010090 return true;
Thomas Richter6812baa2017-01-09 16:55:15 +010091}
92
93/* Remove a pnetid from the pnet table.
94 */
Hans Wippel64e28b52019-02-21 13:01:02 +010095static int smc_pnet_remove_by_pnetid(struct net *net, char *pnet_name)
Thomas Richter6812baa2017-01-09 16:55:15 +010096{
97 struct smc_pnetentry *pnetelem, *tmp_pe;
Hans Wippel64e28b52019-02-21 13:01:02 +010098 struct smc_pnettable *pnettable;
Hans Wippel890a2cb2019-02-21 13:01:00 +010099 struct smc_ib_device *ibdev;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100100 struct smcd_dev *smcd_dev;
Hans Wippel64e28b52019-02-21 13:01:02 +0100101 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100102 int rc = -ENOENT;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100103 int ibport;
Thomas Richter6812baa2017-01-09 16:55:15 +0100104
Hans Wippel64e28b52019-02-21 13:01:02 +0100105 /* get pnettable for namespace */
106 sn = net_generic(net, smc_net_id);
107 pnettable = &sn->pnettable;
108
Hans Wippel890a2cb2019-02-21 13:01:00 +0100109 /* remove netdevices */
Hans Wippel64e28b52019-02-21 13:01:02 +0100110 write_lock(&pnettable->lock);
111 list_for_each_entry_safe(pnetelem, tmp_pe, &pnettable->pnetlist,
Thomas Richter6812baa2017-01-09 16:55:15 +0100112 list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100113 if (!pnet_name ||
114 smc_pnet_match(pnetelem->pnet_name, pnet_name)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100115 list_del(&pnetelem->list);
116 dev_put(pnetelem->ndev);
117 kfree(pnetelem);
118 rc = 0;
Thomas Richter6812baa2017-01-09 16:55:15 +0100119 }
120 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100121 write_unlock(&pnettable->lock);
122
123 /* if this is not the initial namespace, stop here */
124 if (net != &init_net)
125 return rc;
126
Hans Wippel890a2cb2019-02-21 13:01:00 +0100127 /* remove ib devices */
128 spin_lock(&smc_ib_devices.lock);
129 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
130 for (ibport = 0; ibport < SMC_MAX_PORTS; ibport++) {
131 if (ibdev->pnetid_by_user[ibport] &&
132 (!pnet_name ||
133 smc_pnet_match(pnet_name,
134 ibdev->pnetid[ibport]))) {
135 memset(ibdev->pnetid[ibport], 0,
136 SMC_MAX_PNETID_LEN);
137 ibdev->pnetid_by_user[ibport] = false;
138 rc = 0;
139 }
140 }
141 }
142 spin_unlock(&smc_ib_devices.lock);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100143 /* remove smcd devices */
144 spin_lock(&smcd_dev_list.lock);
145 list_for_each_entry(smcd_dev, &smcd_dev_list.list, list) {
146 if (smcd_dev->pnetid_by_user &&
147 (!pnet_name ||
148 smc_pnet_match(pnet_name, smcd_dev->pnetid))) {
149 memset(smcd_dev->pnetid, 0, SMC_MAX_PNETID_LEN);
150 smcd_dev->pnetid_by_user = false;
151 rc = 0;
152 }
153 }
154 spin_unlock(&smcd_dev_list.lock);
Thomas Richter6812baa2017-01-09 16:55:15 +0100155 return rc;
156}
157
158/* Remove a pnet entry mentioning a given network device from the pnet table.
159 */
160static int smc_pnet_remove_by_ndev(struct net_device *ndev)
161{
162 struct smc_pnetentry *pnetelem, *tmp_pe;
Hans Wippel64e28b52019-02-21 13:01:02 +0100163 struct smc_pnettable *pnettable;
164 struct net *net = dev_net(ndev);
165 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100166 int rc = -ENOENT;
167
Hans Wippel64e28b52019-02-21 13:01:02 +0100168 /* get pnettable for namespace */
169 sn = net_generic(net, smc_net_id);
170 pnettable = &sn->pnettable;
171
172 write_lock(&pnettable->lock);
173 list_for_each_entry_safe(pnetelem, tmp_pe, &pnettable->pnetlist, list) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100174 if (pnetelem->ndev == ndev) {
175 list_del(&pnetelem->list);
176 dev_put(pnetelem->ndev);
177 kfree(pnetelem);
178 rc = 0;
179 break;
180 }
181 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100182 write_unlock(&pnettable->lock);
Thomas Richter6812baa2017-01-09 16:55:15 +0100183 return rc;
184}
185
Thomas Richter6812baa2017-01-09 16:55:15 +0100186/* Append a pnetid to the end of the pnet table if not already on this list.
187 */
Hans Wippel64e28b52019-02-21 13:01:02 +0100188static int smc_pnet_enter(struct smc_pnettable *pnettable,
189 struct smc_user_pnetentry *new_pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100190{
Hans Wippel890a2cb2019-02-21 13:01:00 +0100191 u8 pnet_null[SMC_MAX_PNETID_LEN] = {0};
192 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
193 struct smc_pnetentry *tmp_pnetelem;
Thomas Richter6812baa2017-01-09 16:55:15 +0100194 struct smc_pnetentry *pnetelem;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100195 bool new_smcddev = false;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100196 struct net_device *ndev;
197 bool new_netdev = true;
198 bool new_ibdev = false;
199
200 if (new_pnetelem->smcibdev) {
201 struct smc_ib_device *ib_dev = new_pnetelem->smcibdev;
202 int ib_port = new_pnetelem->ib_port;
203
204 spin_lock(&smc_ib_devices.lock);
205 if (smc_pnet_match(ib_dev->pnetid[ib_port - 1], pnet_null)) {
206 memcpy(ib_dev->pnetid[ib_port - 1],
207 new_pnetelem->pnet_name, SMC_MAX_PNETID_LEN);
208 ib_dev->pnetid_by_user[ib_port - 1] = true;
209 new_ibdev = true;
210 }
211 spin_unlock(&smc_ib_devices.lock);
212 }
Hans Wippelf3d74b22019-02-21 13:01:01 +0100213 if (new_pnetelem->smcd_dev) {
214 struct smcd_dev *smcd_dev = new_pnetelem->smcd_dev;
215
216 spin_lock(&smcd_dev_list.lock);
217 if (smc_pnet_match(smcd_dev->pnetid, pnet_null)) {
218 memcpy(smcd_dev->pnetid, new_pnetelem->pnet_name,
219 SMC_MAX_PNETID_LEN);
220 smcd_dev->pnetid_by_user = true;
221 new_smcddev = true;
222 }
223 spin_unlock(&smcd_dev_list.lock);
224 }
Hans Wippel890a2cb2019-02-21 13:01:00 +0100225
226 if (!new_pnetelem->ndev)
Hans Wippelf3d74b22019-02-21 13:01:01 +0100227 return (new_ibdev || new_smcddev) ? 0 : -EEXIST;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100228
229 /* check if (base) netdev already has a pnetid. If there is one, we do
230 * not want to add a pnet table entry
231 */
232 ndev = pnet_find_base_ndev(new_pnetelem->ndev);
233 if (!smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
234 ndev_pnetid))
Hans Wippelf3d74b22019-02-21 13:01:01 +0100235 return (new_ibdev || new_smcddev) ? 0 : -EEXIST;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100236
237 /* add a new netdev entry to the pnet table if there isn't one */
238 tmp_pnetelem = kzalloc(sizeof(*pnetelem), GFP_KERNEL);
239 if (!tmp_pnetelem)
240 return -ENOMEM;
241 memcpy(tmp_pnetelem->pnet_name, new_pnetelem->pnet_name,
242 SMC_MAX_PNETID_LEN);
243 tmp_pnetelem->ndev = new_pnetelem->ndev;
Thomas Richter6812baa2017-01-09 16:55:15 +0100244
Hans Wippel64e28b52019-02-21 13:01:02 +0100245 write_lock(&pnettable->lock);
246 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100247 if (pnetelem->ndev == new_pnetelem->ndev)
248 new_netdev = false;
Thomas Richter6812baa2017-01-09 16:55:15 +0100249 }
Hans Wippel890a2cb2019-02-21 13:01:00 +0100250 if (new_netdev) {
251 dev_hold(tmp_pnetelem->ndev);
Hans Wippel64e28b52019-02-21 13:01:02 +0100252 list_add_tail(&tmp_pnetelem->list, &pnettable->pnetlist);
253 write_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100254 } else {
Hans Wippel64e28b52019-02-21 13:01:02 +0100255 write_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100256 kfree(tmp_pnetelem);
257 }
258
Hans Wippelf3d74b22019-02-21 13:01:01 +0100259 return (new_netdev || new_ibdev || new_smcddev) ? 0 : -EEXIST;
Thomas Richter6812baa2017-01-09 16:55:15 +0100260}
261
262/* The limit for pnetid is 16 characters.
263 * Valid characters should be (single-byte character set) a-z, A-Z, 0-9.
264 * Lower case letters are converted to upper case.
265 * Interior blanks should not be used.
266 */
267static bool smc_pnetid_valid(const char *pnet_name, char *pnetid)
268{
269 char *bf = skip_spaces(pnet_name);
270 size_t len = strlen(bf);
271 char *end = bf + len;
272
273 if (!len)
274 return false;
275 while (--end >= bf && isspace(*end))
276 ;
Ursula Braun0afff912018-06-28 19:05:05 +0200277 if (end - bf >= SMC_MAX_PNETID_LEN)
Thomas Richter6812baa2017-01-09 16:55:15 +0100278 return false;
279 while (bf <= end) {
280 if (!isalnum(*bf))
281 return false;
282 *pnetid++ = islower(*bf) ? toupper(*bf) : *bf;
283 bf++;
284 }
285 *pnetid = '\0';
286 return true;
287}
288
289/* Find an infiniband device by a given name. The device might not exist. */
Ursula Braun249633a2017-04-10 14:57:57 +0200290static struct smc_ib_device *smc_pnet_find_ib(char *ib_name)
Thomas Richter6812baa2017-01-09 16:55:15 +0100291{
292 struct smc_ib_device *ibdev;
293
294 spin_lock(&smc_ib_devices.lock);
295 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
296 if (!strncmp(ibdev->ibdev->name, ib_name,
Hans Wippelaf5f60c2019-02-21 13:01:03 +0100297 sizeof(ibdev->ibdev->name)) ||
298 !strncmp(dev_name(ibdev->ibdev->dev.parent), ib_name,
299 IB_DEVICE_NAME_MAX - 1)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100300 goto out;
301 }
302 }
303 ibdev = NULL;
304out:
305 spin_unlock(&smc_ib_devices.lock);
306 return ibdev;
307}
308
Hans Wippelf3d74b22019-02-21 13:01:01 +0100309/* Find an smcd device by a given name. The device might not exist. */
310static struct smcd_dev *smc_pnet_find_smcd(char *smcd_name)
311{
312 struct smcd_dev *smcd_dev;
313
314 spin_lock(&smcd_dev_list.lock);
315 list_for_each_entry(smcd_dev, &smcd_dev_list.list, list) {
316 if (!strncmp(dev_name(&smcd_dev->dev), smcd_name,
317 IB_DEVICE_NAME_MAX - 1))
318 goto out;
319 }
320 smcd_dev = NULL;
321out:
322 spin_unlock(&smcd_dev_list.lock);
323 return smcd_dev;
324}
325
Thomas Richter6812baa2017-01-09 16:55:15 +0100326/* Parse the supplied netlink attributes and fill a pnetentry structure.
327 * For ethernet and infiniband device names verify that the devices exist.
328 */
Hans Wippel890a2cb2019-02-21 13:01:00 +0100329static int smc_pnet_fill_entry(struct net *net,
330 struct smc_user_pnetentry *pnetelem,
Thomas Richter6812baa2017-01-09 16:55:15 +0100331 struct nlattr *tb[])
332{
Eric Biggersd49baa72018-05-13 17:01:30 -0700333 char *string, *ibname;
334 int rc;
Thomas Richter6812baa2017-01-09 16:55:15 +0100335
336 memset(pnetelem, 0, sizeof(*pnetelem));
337 INIT_LIST_HEAD(&pnetelem->list);
Eric Biggersd49baa72018-05-13 17:01:30 -0700338
339 rc = -EINVAL;
340 if (!tb[SMC_PNETID_NAME])
341 goto error;
342 string = (char *)nla_data(tb[SMC_PNETID_NAME]);
343 if (!smc_pnetid_valid(string, pnetelem->pnet_name))
344 goto error;
345
346 rc = -EINVAL;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100347 if (tb[SMC_PNETID_ETHNAME]) {
348 string = (char *)nla_data(tb[SMC_PNETID_ETHNAME]);
349 pnetelem->ndev = dev_get_by_name(net, string);
350 if (!pnetelem->ndev)
351 goto error;
352 }
Eric Biggersd49baa72018-05-13 17:01:30 -0700353
Hans Wippel64e28b52019-02-21 13:01:02 +0100354 /* if this is not the initial namespace, stop here */
355 if (net != &init_net)
356 return 0;
357
Eric Biggersd49baa72018-05-13 17:01:30 -0700358 rc = -EINVAL;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100359 if (tb[SMC_PNETID_IBNAME]) {
360 ibname = (char *)nla_data(tb[SMC_PNETID_IBNAME]);
361 ibname = strim(ibname);
362 pnetelem->smcibdev = smc_pnet_find_ib(ibname);
Hans Wippelf3d74b22019-02-21 13:01:01 +0100363 pnetelem->smcd_dev = smc_pnet_find_smcd(ibname);
364 if (!pnetelem->smcibdev && !pnetelem->smcd_dev)
Hans Wippel890a2cb2019-02-21 13:01:00 +0100365 goto error;
366 if (pnetelem->smcibdev) {
367 if (!tb[SMC_PNETID_IBPORT])
368 goto error;
369 pnetelem->ib_port = nla_get_u8(tb[SMC_PNETID_IBPORT]);
370 if (pnetelem->ib_port < 1 ||
371 pnetelem->ib_port > SMC_MAX_PORTS)
372 goto error;
373 }
374 }
Eric Biggersd49baa72018-05-13 17:01:30 -0700375
Thomas Richter6812baa2017-01-09 16:55:15 +0100376 return 0;
377
378error:
Thomas Richter6812baa2017-01-09 16:55:15 +0100379 return rc;
380}
381
382/* Convert an smc_pnetentry to a netlink attribute sequence */
Hans Wippel890a2cb2019-02-21 13:01:00 +0100383static int smc_pnet_set_nla(struct sk_buff *msg,
384 struct smc_user_pnetentry *pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100385{
Hans Wippel890a2cb2019-02-21 13:01:00 +0100386 if (nla_put_string(msg, SMC_PNETID_NAME, pnetelem->pnet_name))
Thomas Richter6812baa2017-01-09 16:55:15 +0100387 return -1;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100388 if (pnetelem->ndev) {
389 if (nla_put_string(msg, SMC_PNETID_ETHNAME,
390 pnetelem->ndev->name))
391 return -1;
392 } else {
393 if (nla_put_string(msg, SMC_PNETID_ETHNAME, "n/a"))
394 return -1;
395 }
396 if (pnetelem->smcibdev) {
397 if (nla_put_string(msg, SMC_PNETID_IBNAME,
Hans Wippelaf5f60c2019-02-21 13:01:03 +0100398 dev_name(pnetelem->smcibdev->ibdev->dev.parent)) ||
Hans Wippel890a2cb2019-02-21 13:01:00 +0100399 nla_put_u8(msg, SMC_PNETID_IBPORT, pnetelem->ib_port))
400 return -1;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100401 } else if (pnetelem->smcd_dev) {
402 if (nla_put_string(msg, SMC_PNETID_IBNAME,
403 dev_name(&pnetelem->smcd_dev->dev)) ||
404 nla_put_u8(msg, SMC_PNETID_IBPORT, 1))
405 return -1;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100406 } else {
407 if (nla_put_string(msg, SMC_PNETID_IBNAME, "n/a") ||
408 nla_put_u8(msg, SMC_PNETID_IBPORT, 0xff))
409 return -1;
410 }
411
Thomas Richter6812baa2017-01-09 16:55:15 +0100412 return 0;
413}
414
Thomas Richter6812baa2017-01-09 16:55:15 +0100415static int smc_pnet_add(struct sk_buff *skb, struct genl_info *info)
416{
417 struct net *net = genl_info_net(info);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100418 struct smc_user_pnetentry pnetelem;
Hans Wippel64e28b52019-02-21 13:01:02 +0100419 struct smc_pnettable *pnettable;
420 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100421 int rc;
422
Hans Wippel64e28b52019-02-21 13:01:02 +0100423 /* get pnettable for namespace */
424 sn = net_generic(net, smc_net_id);
425 pnettable = &sn->pnettable;
426
Hans Wippel890a2cb2019-02-21 13:01:00 +0100427 rc = smc_pnet_fill_entry(net, &pnetelem, info->attrs);
Thomas Richter6812baa2017-01-09 16:55:15 +0100428 if (!rc)
Hans Wippel64e28b52019-02-21 13:01:02 +0100429 rc = smc_pnet_enter(pnettable, &pnetelem);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100430 if (pnetelem.ndev)
431 dev_put(pnetelem.ndev);
Thomas Richter6812baa2017-01-09 16:55:15 +0100432 return rc;
433}
434
435static int smc_pnet_del(struct sk_buff *skb, struct genl_info *info)
436{
Hans Wippel64e28b52019-02-21 13:01:02 +0100437 struct net *net = genl_info_net(info);
438
Eric Biggersd49baa72018-05-13 17:01:30 -0700439 if (!info->attrs[SMC_PNETID_NAME])
440 return -EINVAL;
Hans Wippel64e28b52019-02-21 13:01:02 +0100441 return smc_pnet_remove_by_pnetid(net,
Thomas Richter6812baa2017-01-09 16:55:15 +0100442 (char *)nla_data(info->attrs[SMC_PNETID_NAME]));
443}
444
445static int smc_pnet_dump_start(struct netlink_callback *cb)
446{
447 cb->args[0] = 0;
448 return 0;
449}
450
451static int smc_pnet_dumpinfo(struct sk_buff *skb,
452 u32 portid, u32 seq, u32 flags,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100453 struct smc_user_pnetentry *pnetelem)
Thomas Richter6812baa2017-01-09 16:55:15 +0100454{
455 void *hdr;
456
457 hdr = genlmsg_put(skb, portid, seq, &smc_pnet_nl_family,
458 flags, SMC_PNETID_GET);
459 if (!hdr)
460 return -ENOMEM;
461 if (smc_pnet_set_nla(skb, pnetelem) < 0) {
462 genlmsg_cancel(skb, hdr);
463 return -EMSGSIZE;
464 }
465 genlmsg_end(skb, hdr);
466 return 0;
467}
468
Hans Wippel64e28b52019-02-21 13:01:02 +0100469static int _smc_pnet_dump(struct net *net, struct sk_buff *skb, u32 portid,
470 u32 seq, u8 *pnetid, int start_idx)
Thomas Richter6812baa2017-01-09 16:55:15 +0100471{
Hans Wippel890a2cb2019-02-21 13:01:00 +0100472 struct smc_user_pnetentry tmp_entry;
Hans Wippel64e28b52019-02-21 13:01:02 +0100473 struct smc_pnettable *pnettable;
Thomas Richter6812baa2017-01-09 16:55:15 +0100474 struct smc_pnetentry *pnetelem;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100475 struct smc_ib_device *ibdev;
Hans Wippelf3d74b22019-02-21 13:01:01 +0100476 struct smcd_dev *smcd_dev;
Hans Wippel64e28b52019-02-21 13:01:02 +0100477 struct smc_net *sn;
Thomas Richter6812baa2017-01-09 16:55:15 +0100478 int idx = 0;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100479 int ibport;
Thomas Richter6812baa2017-01-09 16:55:15 +0100480
Hans Wippel64e28b52019-02-21 13:01:02 +0100481 /* get pnettable for namespace */
482 sn = net_generic(net, smc_net_id);
483 pnettable = &sn->pnettable;
484
Hans Wippel890a2cb2019-02-21 13:01:00 +0100485 /* dump netdevices */
Hans Wippel64e28b52019-02-21 13:01:02 +0100486 read_lock(&pnettable->lock);
487 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100488 if (pnetid && !smc_pnet_match(pnetelem->pnet_name, pnetid))
Thomas Richter6812baa2017-01-09 16:55:15 +0100489 continue;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100490 if (idx++ < start_idx)
491 continue;
492 memset(&tmp_entry, 0, sizeof(tmp_entry));
493 memcpy(&tmp_entry.pnet_name, pnetelem->pnet_name,
494 SMC_MAX_PNETID_LEN);
495 tmp_entry.ndev = pnetelem->ndev;
496 if (smc_pnet_dumpinfo(skb, portid, seq, NLM_F_MULTI,
497 &tmp_entry)) {
Thomas Richter6812baa2017-01-09 16:55:15 +0100498 --idx;
499 break;
500 }
501 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100502 read_unlock(&pnettable->lock);
503
504 /* if this is not the initial namespace, stop here */
505 if (net != &init_net)
506 return idx;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100507
508 /* dump ib devices */
509 spin_lock(&smc_ib_devices.lock);
510 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
511 for (ibport = 0; ibport < SMC_MAX_PORTS; ibport++) {
512 if (ibdev->pnetid_by_user[ibport]) {
513 if (pnetid &&
514 !smc_pnet_match(ibdev->pnetid[ibport],
515 pnetid))
516 continue;
517 if (idx++ < start_idx)
518 continue;
519 memset(&tmp_entry, 0, sizeof(tmp_entry));
520 memcpy(&tmp_entry.pnet_name,
521 ibdev->pnetid[ibport],
522 SMC_MAX_PNETID_LEN);
523 tmp_entry.smcibdev = ibdev;
524 tmp_entry.ib_port = ibport + 1;
525 if (smc_pnet_dumpinfo(skb, portid, seq,
526 NLM_F_MULTI,
527 &tmp_entry)) {
528 --idx;
529 break;
530 }
531 }
532 }
533 }
534 spin_unlock(&smc_ib_devices.lock);
535
Hans Wippelf3d74b22019-02-21 13:01:01 +0100536 /* dump smcd devices */
537 spin_lock(&smcd_dev_list.lock);
538 list_for_each_entry(smcd_dev, &smcd_dev_list.list, list) {
539 if (smcd_dev->pnetid_by_user) {
540 if (pnetid && !smc_pnet_match(smcd_dev->pnetid, pnetid))
541 continue;
542 if (idx++ < start_idx)
543 continue;
544 memset(&tmp_entry, 0, sizeof(tmp_entry));
545 memcpy(&tmp_entry.pnet_name, smcd_dev->pnetid,
546 SMC_MAX_PNETID_LEN);
547 tmp_entry.smcd_dev = smcd_dev;
548 if (smc_pnet_dumpinfo(skb, portid, seq, NLM_F_MULTI,
549 &tmp_entry)) {
550 --idx;
551 break;
552 }
553 }
554 }
555 spin_unlock(&smcd_dev_list.lock);
556
Hans Wippel890a2cb2019-02-21 13:01:00 +0100557 return idx;
558}
559
560static int smc_pnet_dump(struct sk_buff *skb, struct netlink_callback *cb)
561{
Hans Wippel64e28b52019-02-21 13:01:02 +0100562 struct net *net = sock_net(skb->sk);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100563 int idx;
564
Hans Wippel64e28b52019-02-21 13:01:02 +0100565 idx = _smc_pnet_dump(net, skb, NETLINK_CB(cb->skb).portid,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100566 cb->nlh->nlmsg_seq, NULL, cb->args[0]);
567
568 cb->args[0] = idx;
Thomas Richter6812baa2017-01-09 16:55:15 +0100569 return skb->len;
570}
571
Hans Wippel890a2cb2019-02-21 13:01:00 +0100572/* Retrieve one PNETID entry */
573static int smc_pnet_get(struct sk_buff *skb, struct genl_info *info)
574{
Hans Wippel64e28b52019-02-21 13:01:02 +0100575 struct net *net = genl_info_net(info);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100576 struct sk_buff *msg;
577 void *hdr;
578
579 if (!info->attrs[SMC_PNETID_NAME])
580 return -EINVAL;
581
582 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
583 if (!msg)
584 return -ENOMEM;
585
Hans Wippel64e28b52019-02-21 13:01:02 +0100586 _smc_pnet_dump(net, msg, info->snd_portid, info->snd_seq,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100587 nla_data(info->attrs[SMC_PNETID_NAME]), 0);
588
589 /* finish multi part message and send it */
590 hdr = nlmsg_put(msg, info->snd_portid, info->snd_seq, NLMSG_DONE, 0,
591 NLM_F_MULTI);
592 if (!hdr) {
593 nlmsg_free(msg);
594 return -EMSGSIZE;
595 }
596 return genlmsg_reply(msg, info);
597}
598
Thomas Richter6812baa2017-01-09 16:55:15 +0100599/* Remove and delete all pnetids from pnet table.
600 */
601static int smc_pnet_flush(struct sk_buff *skb, struct genl_info *info)
602{
Hans Wippel64e28b52019-02-21 13:01:02 +0100603 struct net *net = genl_info_net(info);
604
Karsten Graul8ef659f2019-04-11 11:17:33 +0200605 smc_pnet_remove_by_pnetid(net, NULL);
606 return 0;
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,
Johannes Bergef6243a2019-04-26 14:07:31 +0200613 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Hans Wippel29237d22020-01-21 01:04:46 +0100614 /* can be retrieved by unprivileged users */
Thomas Richter6812baa2017-01-09 16:55:15 +0100615 .doit = smc_pnet_get,
616 .dumpit = smc_pnet_dump,
617 .start = smc_pnet_dump_start
618 },
619 {
620 .cmd = SMC_PNETID_ADD,
Johannes Bergef6243a2019-04-26 14:07:31 +0200621 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100622 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100623 .doit = smc_pnet_add
624 },
625 {
626 .cmd = SMC_PNETID_DEL,
Johannes Bergef6243a2019-04-26 14:07:31 +0200627 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100628 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100629 .doit = smc_pnet_del
630 },
631 {
632 .cmd = SMC_PNETID_FLUSH,
Johannes Bergef6243a2019-04-26 14:07:31 +0200633 .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
Thomas Richter6812baa2017-01-09 16:55:15 +0100634 .flags = GENL_ADMIN_PERM,
Thomas Richter6812baa2017-01-09 16:55:15 +0100635 .doit = smc_pnet_flush
636 }
637};
638
639/* SMC_PNETID family definition */
Johannes Berg56ce3c52018-09-20 09:27:30 +0200640static struct genl_family smc_pnet_nl_family __ro_after_init = {
Thomas Richter6812baa2017-01-09 16:55:15 +0100641 .hdrsize = 0,
642 .name = SMCR_GENL_FAMILY_NAME,
643 .version = SMCR_GENL_FAMILY_VERSION,
644 .maxattr = SMC_PNETID_MAX,
Johannes Berg3b0f31f2019-03-21 22:51:02 +0100645 .policy = smc_pnet_policy,
Thomas Richter6812baa2017-01-09 16:55:15 +0100646 .netnsok = true,
647 .module = THIS_MODULE,
648 .ops = smc_pnet_ops,
649 .n_ops = ARRAY_SIZE(smc_pnet_ops)
650};
651
652static int smc_pnet_netdev_event(struct notifier_block *this,
653 unsigned long event, void *ptr)
654{
655 struct net_device *event_dev = netdev_notifier_info_to_dev(ptr);
656
657 switch (event) {
658 case NETDEV_REBOOT:
659 case NETDEV_UNREGISTER:
660 smc_pnet_remove_by_ndev(event_dev);
Ursula Braunbe6a3f32018-06-28 19:05:04 +0200661 return NOTIFY_OK;
Thomas Richter6812baa2017-01-09 16:55:15 +0100662 default:
Ursula Braunbe6a3f32018-06-28 19:05:04 +0200663 return NOTIFY_DONE;
Thomas Richter6812baa2017-01-09 16:55:15 +0100664 }
Thomas Richter6812baa2017-01-09 16:55:15 +0100665}
666
667static struct notifier_block smc_netdev_notifier = {
668 .notifier_call = smc_pnet_netdev_event
669};
670
Hans Wippel64e28b52019-02-21 13:01:02 +0100671/* init network namespace */
672int smc_pnet_net_init(struct net *net)
673{
674 struct smc_net *sn = net_generic(net, smc_net_id);
675 struct smc_pnettable *pnettable = &sn->pnettable;
676
677 INIT_LIST_HEAD(&pnettable->pnetlist);
678 rwlock_init(&pnettable->lock);
679
680 return 0;
681}
682
Thomas Richter6812baa2017-01-09 16:55:15 +0100683int __init smc_pnet_init(void)
684{
685 int rc;
686
687 rc = genl_register_family(&smc_pnet_nl_family);
688 if (rc)
689 return rc;
690 rc = register_netdevice_notifier(&smc_netdev_notifier);
691 if (rc)
692 genl_unregister_family(&smc_pnet_nl_family);
693 return rc;
694}
695
Hans Wippel64e28b52019-02-21 13:01:02 +0100696/* exit network namespace */
697void smc_pnet_net_exit(struct net *net)
698{
699 /* flush pnet table */
700 smc_pnet_remove_by_pnetid(net, NULL);
701}
702
Thomas Richter6812baa2017-01-09 16:55:15 +0100703void smc_pnet_exit(void)
704{
Thomas Richter6812baa2017-01-09 16:55:15 +0100705 unregister_netdevice_notifier(&smc_netdev_notifier);
706 genl_unregister_family(&smc_pnet_nl_family);
707}
708
Ursula Braun0afff912018-06-28 19:05:05 +0200709/* Determine one base device for stacked net devices.
710 * If the lower device level contains more than one devices
711 * (for instance with bonding slaves), just the first device
712 * is used to reach a base device.
Thomas Richter6812baa2017-01-09 16:55:15 +0100713 */
Ursula Braun0afff912018-06-28 19:05:05 +0200714static struct net_device *pnet_find_base_ndev(struct net_device *ndev)
Thomas Richter6812baa2017-01-09 16:55:15 +0100715{
Ursula Braun0afff912018-06-28 19:05:05 +0200716 int i, nest_lvl;
717
718 rtnl_lock();
Taehee Yoof3b0a182019-10-21 18:47:58 +0000719 nest_lvl = ndev->lower_level;
Ursula Braun0afff912018-06-28 19:05:05 +0200720 for (i = 0; i < nest_lvl; i++) {
721 struct list_head *lower = &ndev->adj_list.lower;
722
723 if (list_empty(lower))
724 break;
725 lower = lower->next;
726 ndev = netdev_lower_get_next(ndev, &lower);
727 }
728 rtnl_unlock();
729 return ndev;
730}
731
Hans Wippel64e28b52019-02-21 13:01:02 +0100732static int smc_pnet_find_ndev_pnetid_by_table(struct net_device *ndev,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100733 u8 *pnetid)
734{
Hans Wippel64e28b52019-02-21 13:01:02 +0100735 struct smc_pnettable *pnettable;
736 struct net *net = dev_net(ndev);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100737 struct smc_pnetentry *pnetelem;
Hans Wippel64e28b52019-02-21 13:01:02 +0100738 struct smc_net *sn;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100739 int rc = -ENOENT;
740
Hans Wippel64e28b52019-02-21 13:01:02 +0100741 /* get pnettable for namespace */
742 sn = net_generic(net, smc_net_id);
743 pnettable = &sn->pnettable;
744
745 read_lock(&pnettable->lock);
746 list_for_each_entry(pnetelem, &pnettable->pnetlist, list) {
747 if (ndev == pnetelem->ndev) {
Hans Wippel890a2cb2019-02-21 13:01:00 +0100748 /* get pnetid of netdev device */
749 memcpy(pnetid, pnetelem->pnet_name, SMC_MAX_PNETID_LEN);
750 rc = 0;
751 break;
752 }
753 }
Hans Wippel64e28b52019-02-21 13:01:02 +0100754 read_unlock(&pnettable->lock);
Hans Wippel890a2cb2019-02-21 13:01:00 +0100755 return rc;
756}
757
Ursula Braun54903572019-02-28 15:10:08 +0100758/* if handshake network device belongs to a roce device, return its
759 * IB device and port
760 */
761static void smc_pnet_find_rdma_dev(struct net_device *netdev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200762 struct smc_init_info *ini)
Ursula Braun54903572019-02-28 15:10:08 +0100763{
764 struct smc_ib_device *ibdev;
765
766 spin_lock(&smc_ib_devices.lock);
767 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
768 struct net_device *ndev;
769 int i;
770
771 for (i = 1; i <= SMC_MAX_PORTS; i++) {
772 if (!rdma_is_port_valid(ibdev->ibdev, i))
773 continue;
774 if (!ibdev->ibdev->ops.get_netdev)
775 continue;
776 ndev = ibdev->ibdev->ops.get_netdev(ibdev->ibdev, i);
777 if (!ndev)
778 continue;
779 dev_put(ndev);
780 if (netdev == ndev &&
781 smc_ib_port_active(ibdev, i) &&
Ursula Braunc3d94942019-10-09 10:07:46 +0200782 !test_bit(i - 1, ibdev->ports_going_away) &&
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200783 !smc_ib_determine_gid(ibdev, i, ini->vlan_id,
784 ini->ib_gid, NULL)) {
785 ini->ib_dev = ibdev;
786 ini->ib_port = i;
Ursula Braun54903572019-02-28 15:10:08 +0100787 break;
788 }
789 }
790 }
791 spin_unlock(&smc_ib_devices.lock);
792}
793
Ursula Braun0afff912018-06-28 19:05:05 +0200794/* Determine the corresponding IB device port based on the hardware PNETID.
Ursula Braun7005ada2018-07-25 16:35:31 +0200795 * Searching stops at the first matching active IB device port with vlan_id
796 * configured.
Ursula Braun54903572019-02-28 15:10:08 +0100797 * If nothing found, check pnetid table.
798 * If nothing found, try to use handshake device
Ursula Braun0afff912018-06-28 19:05:05 +0200799 */
800static void smc_pnet_find_roce_by_pnetid(struct net_device *ndev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200801 struct smc_init_info *ini)
Ursula Braun0afff912018-06-28 19:05:05 +0200802{
803 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
804 struct smc_ib_device *ibdev;
805 int i;
806
807 ndev = pnet_find_base_ndev(ndev);
808 if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
Hans Wippel890a2cb2019-02-21 13:01:00 +0100809 ndev_pnetid) &&
Ursula Braun54903572019-02-28 15:10:08 +0100810 smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid)) {
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200811 smc_pnet_find_rdma_dev(ndev, ini);
Ursula Braun0afff912018-06-28 19:05:05 +0200812 return; /* pnetid could not be determined */
Ursula Braun54903572019-02-28 15:10:08 +0100813 }
Ursula Braun0afff912018-06-28 19:05:05 +0200814
815 spin_lock(&smc_ib_devices.lock);
816 list_for_each_entry(ibdev, &smc_ib_devices.list, list) {
817 for (i = 1; i <= SMC_MAX_PORTS; i++) {
Ursula Braun7005ada2018-07-25 16:35:31 +0200818 if (!rdma_is_port_valid(ibdev->ibdev, i))
819 continue;
Hans Wippel890a2cb2019-02-21 13:01:00 +0100820 if (smc_pnet_match(ibdev->pnetid[i - 1], ndev_pnetid) &&
Ursula Braun7005ada2018-07-25 16:35:31 +0200821 smc_ib_port_active(ibdev, i) &&
Ursula Braunc3d94942019-10-09 10:07:46 +0200822 !test_bit(i - 1, ibdev->ports_going_away) &&
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200823 !smc_ib_determine_gid(ibdev, i, ini->vlan_id,
824 ini->ib_gid, NULL)) {
825 ini->ib_dev = ibdev;
826 ini->ib_port = i;
Ursula Braun7005ada2018-07-25 16:35:31 +0200827 goto out;
Ursula Braun0afff912018-06-28 19:05:05 +0200828 }
829 }
830 }
Ursula Braun7005ada2018-07-25 16:35:31 +0200831out:
Ursula Braun0afff912018-06-28 19:05:05 +0200832 spin_unlock(&smc_ib_devices.lock);
833}
834
Hans Wippel1619f772018-06-28 19:05:08 +0200835static void smc_pnet_find_ism_by_pnetid(struct net_device *ndev,
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200836 struct smc_init_info *ini)
Hans Wippel1619f772018-06-28 19:05:08 +0200837{
838 u8 ndev_pnetid[SMC_MAX_PNETID_LEN];
839 struct smcd_dev *ismdev;
840
841 ndev = pnet_find_base_ndev(ndev);
842 if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port,
Hans Wippelf3d74b22019-02-21 13:01:01 +0100843 ndev_pnetid) &&
844 smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid))
Hans Wippel1619f772018-06-28 19:05:08 +0200845 return; /* pnetid could not be determined */
846
847 spin_lock(&smcd_dev_list.lock);
848 list_for_each_entry(ismdev, &smcd_dev_list.list, list) {
Ursula Braunc3d94942019-10-09 10:07:46 +0200849 if (smc_pnet_match(ismdev->pnetid, ndev_pnetid) &&
850 !ismdev->going_away) {
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200851 ini->ism_dev = ismdev;
Hans Wippel1619f772018-06-28 19:05:08 +0200852 break;
853 }
854 }
855 spin_unlock(&smcd_dev_list.lock);
856}
857
Ursula Braun0afff912018-06-28 19:05:05 +0200858/* PNET table analysis for a given sock:
859 * determine ib_device and port belonging to used internal TCP socket
860 * ethernet interface.
861 */
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200862void smc_pnet_find_roce_resource(struct sock *sk, struct smc_init_info *ini)
Ursula Braun0afff912018-06-28 19:05:05 +0200863{
864 struct dst_entry *dst = sk_dst_get(sk);
865
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200866 ini->ib_dev = NULL;
867 ini->ib_port = 0;
Ursula Braun0afff912018-06-28 19:05:05 +0200868 if (!dst)
869 goto out;
870 if (!dst->dev)
871 goto out_rel;
872
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200873 smc_pnet_find_roce_by_pnetid(dst->dev, ini);
Ursula Braun0afff912018-06-28 19:05:05 +0200874
Thomas Richter6812baa2017-01-09 16:55:15 +0100875out_rel:
876 dst_release(dst);
Ursula Braun0afff912018-06-28 19:05:05 +0200877out:
878 return;
Thomas Richter6812baa2017-01-09 16:55:15 +0100879}
Hans Wippel1619f772018-06-28 19:05:08 +0200880
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200881void smc_pnet_find_ism_resource(struct sock *sk, struct smc_init_info *ini)
Hans Wippel1619f772018-06-28 19:05:08 +0200882{
883 struct dst_entry *dst = sk_dst_get(sk);
884
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200885 ini->ism_dev = NULL;
Hans Wippel1619f772018-06-28 19:05:08 +0200886 if (!dst)
887 goto out;
888 if (!dst->dev)
889 goto out_rel;
890
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200891 smc_pnet_find_ism_by_pnetid(dst->dev, ini);
Hans Wippel1619f772018-06-28 19:05:08 +0200892
893out_rel:
894 dst_release(dst);
895out:
896 return;
897}