Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 2 | /* |
| 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 Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 15 | #include <linux/mutex.h> |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 16 | #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 Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 24 | #include <net/netns/generic.h> |
| 25 | #include "smc_netns.h" |
| 26 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 27 | #include "smc_pnet.h" |
| 28 | #include "smc_ib.h" |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 29 | #include "smc_ism.h" |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 30 | #include "smc_core.h" |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 31 | |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 32 | static struct net_device *__pnet_find_base_ndev(struct net_device *ndev); |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 33 | static struct net_device *pnet_find_base_ndev(struct net_device *ndev); |
| 34 | |
Dmitry Vyukov | 09d0310 | 2020-05-25 17:31:58 +0200 | [diff] [blame] | 35 | static const struct nla_policy smc_pnet_policy[SMC_PNETID_MAX + 1] = { |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 36 | [SMC_PNETID_NAME] = { |
| 37 | .type = NLA_NUL_STRING, |
Hans Wippel | ca8dc13 | 2019-01-30 18:51:01 +0100 | [diff] [blame] | 38 | .len = SMC_MAX_PNETID_LEN |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 39 | }, |
| 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 | |
| 51 | static struct genl_family smc_pnet_nl_family; |
| 52 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 53 | enum smc_pnet_nametype { |
| 54 | SMC_PNET_ETH = 1, |
| 55 | SMC_PNET_IB = 2, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 58 | /* pnet entry stored in pnet table */ |
| 59 | struct smc_pnetentry { |
| 60 | struct list_head list; |
| 61 | char pnet_name[SMC_MAX_PNETID_LEN + 1]; |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 62 | enum smc_pnet_nametype type; |
| 63 | union { |
| 64 | struct { |
| 65 | char eth_name[IFNAMSIZ + 1]; |
| 66 | struct net_device *ndev; |
Eric Dumazet | b606452 | 2021-12-06 17:30:36 -0800 | [diff] [blame] | 67 | netdevice_tracker dev_tracker; |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 68 | }; |
| 69 | struct { |
| 70 | char ib_name[IB_DEVICE_NAME_MAX + 1]; |
| 71 | u8 ib_port; |
| 72 | }; |
| 73 | }; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 74 | }; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 75 | |
Karsten Graul | a304e29 | 2020-09-26 12:44:19 +0200 | [diff] [blame] | 76 | /* Check if the pnetid is set */ |
Ursula Braun | d70bf4f | 2020-09-26 12:44:27 +0200 | [diff] [blame] | 77 | bool smc_pnet_is_pnetid_set(u8 *pnetid) |
Karsten Graul | a304e29 | 2020-09-26 12:44:19 +0200 | [diff] [blame] | 78 | { |
| 79 | if (pnetid[0] == 0 || pnetid[0] == _S) |
| 80 | return false; |
| 81 | return true; |
| 82 | } |
| 83 | |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 84 | /* Check if two given pnetids match */ |
| 85 | static bool smc_pnet_match(u8 *pnetid1, u8 *pnetid2) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 86 | { |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 87 | int i; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 88 | |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 89 | for (i = 0; i < SMC_MAX_PNETID_LEN; i++) { |
Karsten Graul | a304e29 | 2020-09-26 12:44:19 +0200 | [diff] [blame] | 90 | if ((pnetid1[i] == 0 || pnetid1[i] == _S) && |
| 91 | (pnetid2[i] == 0 || pnetid2[i] == _S)) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 92 | break; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 93 | if (pnetid1[i] != pnetid2[i]) |
| 94 | return false; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 95 | } |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 96 | return true; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /* Remove a pnetid from the pnet table. |
| 100 | */ |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 101 | static int smc_pnet_remove_by_pnetid(struct net *net, char *pnet_name) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 102 | { |
| 103 | struct smc_pnetentry *pnetelem, *tmp_pe; |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 104 | struct smc_pnettable *pnettable; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 105 | struct smc_ib_device *ibdev; |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 106 | struct smcd_dev *smcd_dev; |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 107 | struct smc_net *sn; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 108 | int rc = -ENOENT; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 109 | int ibport; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 110 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 111 | /* get pnettable for namespace */ |
| 112 | sn = net_generic(net, smc_net_id); |
| 113 | pnettable = &sn->pnettable; |
| 114 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 115 | /* remove table entry */ |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 116 | write_lock(&pnettable->lock); |
| 117 | list_for_each_entry_safe(pnetelem, tmp_pe, &pnettable->pnetlist, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 118 | list) { |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 119 | if (!pnet_name || |
| 120 | smc_pnet_match(pnetelem->pnet_name, pnet_name)) { |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 121 | list_del(&pnetelem->list); |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 122 | if (pnetelem->type == SMC_PNET_ETH && pnetelem->ndev) { |
Eric Dumazet | b606452 | 2021-12-06 17:30:36 -0800 | [diff] [blame] | 123 | dev_put_track(pnetelem->ndev, &pnetelem->dev_tracker); |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 124 | 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 Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 130 | kfree(pnetelem); |
| 131 | rc = 0; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 132 | } |
| 133 | } |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 134 | 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 Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 140 | /* remove ib devices */ |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 141 | mutex_lock(&smc_ib_devices.mutex); |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 142 | 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 Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 148 | 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 Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 154 | memset(ibdev->pnetid[ibport], 0, |
| 155 | SMC_MAX_PNETID_LEN); |
| 156 | ibdev->pnetid_by_user[ibport] = false; |
| 157 | rc = 0; |
| 158 | } |
| 159 | } |
| 160 | } |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 161 | mutex_unlock(&smc_ib_devices.mutex); |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 162 | /* remove smcd devices */ |
Ursula Braun | 82087c0 | 2020-07-08 17:05:14 +0200 | [diff] [blame] | 163 | mutex_lock(&smcd_dev_list.mutex); |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 164 | 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 Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 168 | 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 Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 172 | memset(smcd_dev->pnetid, 0, SMC_MAX_PNETID_LEN); |
| 173 | smcd_dev->pnetid_by_user = false; |
| 174 | rc = 0; |
| 175 | } |
| 176 | } |
Ursula Braun | 82087c0 | 2020-07-08 17:05:14 +0200 | [diff] [blame] | 177 | mutex_unlock(&smcd_dev_list.mutex); |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 178 | return rc; |
| 179 | } |
| 180 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 181 | /* Add the reference to a given network device to the pnet table. |
| 182 | */ |
| 183 | static 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 Dumazet | b606452 | 2021-12-06 17:30:36 -0800 | [diff] [blame] | 199 | dev_hold_track(ndev, &pnetelem->dev_tracker, GFP_ATOMIC); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 200 | pnetelem->ndev = ndev; |
| 201 | rc = 0; |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 202 | pr_warn_ratelimited("smc: adding net device %s with " |
| 203 | "user defined pnetid %.16s\n", |
| 204 | pnetelem->eth_name, |
| 205 | pnetelem->pnet_name); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 206 | 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 Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 214 | */ |
| 215 | static int smc_pnet_remove_by_ndev(struct net_device *ndev) |
| 216 | { |
| 217 | struct smc_pnetentry *pnetelem, *tmp_pe; |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 218 | struct smc_pnettable *pnettable; |
| 219 | struct net *net = dev_net(ndev); |
| 220 | struct smc_net *sn; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 221 | int rc = -ENOENT; |
| 222 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 223 | /* 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 Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 229 | if (pnetelem->type == SMC_PNET_ETH && pnetelem->ndev == ndev) { |
Eric Dumazet | b606452 | 2021-12-06 17:30:36 -0800 | [diff] [blame] | 230 | dev_put_track(pnetelem->ndev, &pnetelem->dev_tracker); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 231 | pnetelem->ndev = NULL; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 232 | rc = 0; |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 233 | pr_warn_ratelimited("smc: removing net device %s with " |
| 234 | "user defined pnetid %.16s\n", |
| 235 | pnetelem->eth_name, |
| 236 | pnetelem->pnet_name); |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 237 | break; |
| 238 | } |
| 239 | } |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 240 | write_unlock(&pnettable->lock); |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 241 | return rc; |
| 242 | } |
| 243 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 244 | /* Apply pnetid to ib device when no pnetid is set. |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 245 | */ |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 246 | static bool smc_pnet_apply_ib(struct smc_ib_device *ib_dev, u8 ib_port, |
| 247 | char *pnet_name) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 248 | { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 249 | bool applied = false; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 250 | |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 251 | mutex_lock(&smc_ib_devices.mutex); |
Karsten Graul | a304e29 | 2020-09-26 12:44:19 +0200 | [diff] [blame] | 252 | if (!smc_pnet_is_pnetid_set(ib_dev->pnetid[ib_port - 1])) { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 253 | 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 Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 257 | } |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 258 | mutex_unlock(&smc_ib_devices.mutex); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 259 | return applied; |
| 260 | } |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 261 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 262 | /* Apply pnetid to smcd device when no pnetid is set. |
| 263 | */ |
| 264 | static bool smc_pnet_apply_smcd(struct smcd_dev *smcd_dev, char *pnet_name) |
| 265 | { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 266 | bool applied = false; |
| 267 | |
Ursula Braun | 82087c0 | 2020-07-08 17:05:14 +0200 | [diff] [blame] | 268 | mutex_lock(&smcd_dev_list.mutex); |
Karsten Graul | a304e29 | 2020-09-26 12:44:19 +0200 | [diff] [blame] | 269 | if (!smc_pnet_is_pnetid_set(smcd_dev->pnetid)) { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 270 | memcpy(smcd_dev->pnetid, pnet_name, SMC_MAX_PNETID_LEN); |
| 271 | smcd_dev->pnetid_by_user = true; |
| 272 | applied = true; |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 273 | } |
Ursula Braun | 82087c0 | 2020-07-08 17:05:14 +0200 | [diff] [blame] | 274 | mutex_unlock(&smcd_dev_list.mutex); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 275 | return applied; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 276 | } |
| 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 | */ |
| 283 | static 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 Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 293 | if (end - bf >= SMC_MAX_PNETID_LEN) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 294 | 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 Braun | 249633a | 2017-04-10 14:57:57 +0200 | [diff] [blame] | 306 | static struct smc_ib_device *smc_pnet_find_ib(char *ib_name) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 307 | { |
| 308 | struct smc_ib_device *ibdev; |
| 309 | |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 310 | mutex_lock(&smc_ib_devices.mutex); |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 311 | list_for_each_entry(ibdev, &smc_ib_devices.list, list) { |
| 312 | if (!strncmp(ibdev->ibdev->name, ib_name, |
Hans Wippel | af5f60c | 2019-02-21 13:01:03 +0100 | [diff] [blame] | 313 | sizeof(ibdev->ibdev->name)) || |
| 314 | !strncmp(dev_name(ibdev->ibdev->dev.parent), ib_name, |
| 315 | IB_DEVICE_NAME_MAX - 1)) { |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 316 | goto out; |
| 317 | } |
| 318 | } |
| 319 | ibdev = NULL; |
| 320 | out: |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 321 | mutex_unlock(&smc_ib_devices.mutex); |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 322 | return ibdev; |
| 323 | } |
| 324 | |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 325 | /* Find an smcd device by a given name. The device might not exist. */ |
| 326 | static struct smcd_dev *smc_pnet_find_smcd(char *smcd_name) |
| 327 | { |
| 328 | struct smcd_dev *smcd_dev; |
| 329 | |
Ursula Braun | 82087c0 | 2020-07-08 17:05:14 +0200 | [diff] [blame] | 330 | mutex_lock(&smcd_dev_list.mutex); |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 331 | 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; |
| 337 | out: |
Ursula Braun | 82087c0 | 2020-07-08 17:05:14 +0200 | [diff] [blame] | 338 | mutex_unlock(&smcd_dev_list.mutex); |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 339 | return smcd_dev; |
| 340 | } |
| 341 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 342 | static int smc_pnet_add_eth(struct smc_pnettable *pnettable, struct net *net, |
| 343 | char *eth_name, char *pnet_name) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 344 | { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 345 | 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 Biggers | d49baa7 | 2018-05-13 17:01:30 -0700 | [diff] [blame] | 349 | int rc; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 350 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 351 | /* check if (base) netdev already has a pnetid. If there is one, we do |
| 352 | * not want to add a pnet table entry |
| 353 | */ |
| 354 | rc = -EEXIST; |
| 355 | ndev = dev_get_by_name(net, eth_name); /* dev_hold() */ |
| 356 | if (ndev) { |
| 357 | base_ndev = pnet_find_base_ndev(ndev); |
| 358 | if (!smc_pnetid_by_dev_port(base_ndev->dev.parent, |
| 359 | base_ndev->dev_port, ndev_pnetid)) |
| 360 | goto out_put; |
| 361 | } |
| 362 | |
| 363 | /* add a new netdev entry to the pnet table if there isn't one */ |
| 364 | rc = -ENOMEM; |
| 365 | new_pe = kzalloc(sizeof(*new_pe), GFP_KERNEL); |
| 366 | if (!new_pe) |
| 367 | goto out_put; |
| 368 | new_pe->type = SMC_PNET_ETH; |
| 369 | memcpy(new_pe->pnet_name, pnet_name, SMC_MAX_PNETID_LEN); |
| 370 | strncpy(new_pe->eth_name, eth_name, IFNAMSIZ); |
| 371 | new_pe->ndev = ndev; |
Eric Dumazet | 7b9b1d4 | 2022-01-12 04:59:39 -0800 | [diff] [blame] | 372 | if (ndev) |
| 373 | netdev_tracker_alloc(ndev, &new_pe->dev_tracker, GFP_KERNEL); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 374 | rc = -EEXIST; |
| 375 | new_netdev = true; |
| 376 | write_lock(&pnettable->lock); |
| 377 | list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) { |
| 378 | if (tmp_pe->type == SMC_PNET_ETH && |
| 379 | !strncmp(tmp_pe->eth_name, eth_name, IFNAMSIZ)) { |
| 380 | new_netdev = false; |
| 381 | break; |
| 382 | } |
| 383 | } |
| 384 | if (new_netdev) { |
| 385 | list_add_tail(&new_pe->list, &pnettable->pnetlist); |
| 386 | write_unlock(&pnettable->lock); |
| 387 | } else { |
| 388 | write_unlock(&pnettable->lock); |
| 389 | kfree(new_pe); |
| 390 | goto out_put; |
| 391 | } |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 392 | if (ndev) |
| 393 | pr_warn_ratelimited("smc: net device %s " |
| 394 | "applied user defined pnetid %.16s\n", |
| 395 | new_pe->eth_name, new_pe->pnet_name); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 396 | return 0; |
| 397 | |
| 398 | out_put: |
Yajun Deng | 1160dfa | 2021-08-05 19:55:27 +0800 | [diff] [blame] | 399 | dev_put(ndev); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 400 | return rc; |
| 401 | } |
| 402 | |
| 403 | static int smc_pnet_add_ib(struct smc_pnettable *pnettable, char *ib_name, |
| 404 | u8 ib_port, char *pnet_name) |
| 405 | { |
| 406 | struct smc_pnetentry *tmp_pe, *new_pe; |
| 407 | struct smc_ib_device *ib_dev; |
| 408 | bool smcddev_applied = true; |
| 409 | bool ibdev_applied = true; |
| 410 | struct smcd_dev *smcd_dev; |
| 411 | bool new_ibdev; |
| 412 | |
| 413 | /* try to apply the pnetid to active devices */ |
| 414 | ib_dev = smc_pnet_find_ib(ib_name); |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 415 | if (ib_dev) { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 416 | ibdev_applied = smc_pnet_apply_ib(ib_dev, ib_port, pnet_name); |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 417 | if (ibdev_applied) |
| 418 | pr_warn_ratelimited("smc: ib device %s ibport %d " |
| 419 | "applied user defined pnetid " |
| 420 | "%.16s\n", ib_dev->ibdev->name, |
| 421 | ib_port, |
| 422 | ib_dev->pnetid[ib_port - 1]); |
| 423 | } |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 424 | smcd_dev = smc_pnet_find_smcd(ib_name); |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 425 | if (smcd_dev) { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 426 | smcddev_applied = smc_pnet_apply_smcd(smcd_dev, pnet_name); |
Karsten Graul | 0a99be4 | 2020-05-05 15:01:20 +0200 | [diff] [blame] | 427 | if (smcddev_applied) |
| 428 | pr_warn_ratelimited("smc: smcd device %s " |
| 429 | "applied user defined pnetid " |
| 430 | "%.16s\n", dev_name(&smcd_dev->dev), |
| 431 | smcd_dev->pnetid); |
| 432 | } |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 433 | /* Apply fails when a device has a hardware-defined pnetid set, do not |
| 434 | * add a pnet table entry in that case. |
| 435 | */ |
| 436 | if (!ibdev_applied || !smcddev_applied) |
| 437 | return -EEXIST; |
| 438 | |
| 439 | /* add a new ib entry to the pnet table if there isn't one */ |
| 440 | new_pe = kzalloc(sizeof(*new_pe), GFP_KERNEL); |
| 441 | if (!new_pe) |
| 442 | return -ENOMEM; |
| 443 | new_pe->type = SMC_PNET_IB; |
| 444 | memcpy(new_pe->pnet_name, pnet_name, SMC_MAX_PNETID_LEN); |
| 445 | strncpy(new_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX); |
| 446 | new_pe->ib_port = ib_port; |
| 447 | |
| 448 | new_ibdev = true; |
| 449 | write_lock(&pnettable->lock); |
| 450 | list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) { |
| 451 | if (tmp_pe->type == SMC_PNET_IB && |
| 452 | !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX)) { |
| 453 | new_ibdev = false; |
| 454 | break; |
| 455 | } |
| 456 | } |
| 457 | if (new_ibdev) { |
| 458 | list_add_tail(&new_pe->list, &pnettable->pnetlist); |
| 459 | write_unlock(&pnettable->lock); |
| 460 | } else { |
| 461 | write_unlock(&pnettable->lock); |
| 462 | kfree(new_pe); |
| 463 | } |
| 464 | return (new_ibdev) ? 0 : -EEXIST; |
| 465 | } |
| 466 | |
| 467 | /* Append a pnetid to the end of the pnet table if not already on this list. |
| 468 | */ |
| 469 | static int smc_pnet_enter(struct net *net, struct nlattr *tb[]) |
| 470 | { |
| 471 | char pnet_name[SMC_MAX_PNETID_LEN + 1]; |
| 472 | struct smc_pnettable *pnettable; |
| 473 | bool new_netdev = false; |
| 474 | bool new_ibdev = false; |
| 475 | struct smc_net *sn; |
| 476 | u8 ibport = 1; |
| 477 | char *string; |
| 478 | int rc; |
| 479 | |
| 480 | /* get pnettable for namespace */ |
| 481 | sn = net_generic(net, smc_net_id); |
| 482 | pnettable = &sn->pnettable; |
Eric Biggers | d49baa7 | 2018-05-13 17:01:30 -0700 | [diff] [blame] | 483 | |
| 484 | rc = -EINVAL; |
| 485 | if (!tb[SMC_PNETID_NAME]) |
| 486 | goto error; |
| 487 | string = (char *)nla_data(tb[SMC_PNETID_NAME]); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 488 | if (!smc_pnetid_valid(string, pnet_name)) |
Eric Biggers | d49baa7 | 2018-05-13 17:01:30 -0700 | [diff] [blame] | 489 | goto error; |
| 490 | |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 491 | if (tb[SMC_PNETID_ETHNAME]) { |
| 492 | string = (char *)nla_data(tb[SMC_PNETID_ETHNAME]); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 493 | rc = smc_pnet_add_eth(pnettable, net, string, pnet_name); |
| 494 | if (!rc) |
| 495 | new_netdev = true; |
| 496 | else if (rc != -EEXIST) |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 497 | goto error; |
| 498 | } |
Eric Biggers | d49baa7 | 2018-05-13 17:01:30 -0700 | [diff] [blame] | 499 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 500 | /* if this is not the initial namespace, stop here */ |
| 501 | if (net != &init_net) |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 502 | return new_netdev ? 0 : -EEXIST; |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 503 | |
Eric Biggers | d49baa7 | 2018-05-13 17:01:30 -0700 | [diff] [blame] | 504 | rc = -EINVAL; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 505 | if (tb[SMC_PNETID_IBNAME]) { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 506 | string = (char *)nla_data(tb[SMC_PNETID_IBNAME]); |
| 507 | string = strim(string); |
| 508 | if (tb[SMC_PNETID_IBPORT]) { |
| 509 | ibport = nla_get_u8(tb[SMC_PNETID_IBPORT]); |
| 510 | if (ibport < 1 || ibport > SMC_MAX_PORTS) |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 511 | goto error; |
| 512 | } |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 513 | rc = smc_pnet_add_ib(pnettable, string, ibport, pnet_name); |
| 514 | if (!rc) |
| 515 | new_ibdev = true; |
| 516 | else if (rc != -EEXIST) |
| 517 | goto error; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 518 | } |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 519 | return (new_netdev || new_ibdev) ? 0 : -EEXIST; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 520 | |
| 521 | error: |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 522 | return rc; |
| 523 | } |
| 524 | |
| 525 | /* Convert an smc_pnetentry to a netlink attribute sequence */ |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 526 | static int smc_pnet_set_nla(struct sk_buff *msg, |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 527 | struct smc_pnetentry *pnetelem) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 528 | { |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 529 | if (nla_put_string(msg, SMC_PNETID_NAME, pnetelem->pnet_name)) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 530 | return -1; |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 531 | if (pnetelem->type == SMC_PNET_ETH) { |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 532 | if (nla_put_string(msg, SMC_PNETID_ETHNAME, |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 533 | pnetelem->eth_name)) |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 534 | return -1; |
| 535 | } else { |
| 536 | if (nla_put_string(msg, SMC_PNETID_ETHNAME, "n/a")) |
| 537 | return -1; |
| 538 | } |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 539 | if (pnetelem->type == SMC_PNET_IB) { |
| 540 | if (nla_put_string(msg, SMC_PNETID_IBNAME, pnetelem->ib_name) || |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 541 | nla_put_u8(msg, SMC_PNETID_IBPORT, pnetelem->ib_port)) |
| 542 | return -1; |
| 543 | } else { |
| 544 | if (nla_put_string(msg, SMC_PNETID_IBNAME, "n/a") || |
| 545 | nla_put_u8(msg, SMC_PNETID_IBPORT, 0xff)) |
| 546 | return -1; |
| 547 | } |
| 548 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 549 | return 0; |
| 550 | } |
| 551 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 552 | static int smc_pnet_add(struct sk_buff *skb, struct genl_info *info) |
| 553 | { |
| 554 | struct net *net = genl_info_net(info); |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 555 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 556 | return smc_pnet_enter(net, info->attrs); |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | static int smc_pnet_del(struct sk_buff *skb, struct genl_info *info) |
| 560 | { |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 561 | struct net *net = genl_info_net(info); |
| 562 | |
Eric Biggers | d49baa7 | 2018-05-13 17:01:30 -0700 | [diff] [blame] | 563 | if (!info->attrs[SMC_PNETID_NAME]) |
| 564 | return -EINVAL; |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 565 | return smc_pnet_remove_by_pnetid(net, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 566 | (char *)nla_data(info->attrs[SMC_PNETID_NAME])); |
| 567 | } |
| 568 | |
| 569 | static int smc_pnet_dump_start(struct netlink_callback *cb) |
| 570 | { |
| 571 | cb->args[0] = 0; |
| 572 | return 0; |
| 573 | } |
| 574 | |
| 575 | static int smc_pnet_dumpinfo(struct sk_buff *skb, |
| 576 | u32 portid, u32 seq, u32 flags, |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 577 | struct smc_pnetentry *pnetelem) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 578 | { |
| 579 | void *hdr; |
| 580 | |
| 581 | hdr = genlmsg_put(skb, portid, seq, &smc_pnet_nl_family, |
| 582 | flags, SMC_PNETID_GET); |
| 583 | if (!hdr) |
| 584 | return -ENOMEM; |
| 585 | if (smc_pnet_set_nla(skb, pnetelem) < 0) { |
| 586 | genlmsg_cancel(skb, hdr); |
| 587 | return -EMSGSIZE; |
| 588 | } |
| 589 | genlmsg_end(skb, hdr); |
| 590 | return 0; |
| 591 | } |
| 592 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 593 | static int _smc_pnet_dump(struct net *net, struct sk_buff *skb, u32 portid, |
| 594 | u32 seq, u8 *pnetid, int start_idx) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 595 | { |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 596 | struct smc_pnettable *pnettable; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 597 | struct smc_pnetentry *pnetelem; |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 598 | struct smc_net *sn; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 599 | int idx = 0; |
| 600 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 601 | /* get pnettable for namespace */ |
| 602 | sn = net_generic(net, smc_net_id); |
| 603 | pnettable = &sn->pnettable; |
| 604 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 605 | /* dump pnettable entries */ |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 606 | read_lock(&pnettable->lock); |
| 607 | list_for_each_entry(pnetelem, &pnettable->pnetlist, list) { |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 608 | if (pnetid && !smc_pnet_match(pnetelem->pnet_name, pnetid)) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 609 | continue; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 610 | if (idx++ < start_idx) |
| 611 | continue; |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 612 | /* if this is not the initial namespace, dump only netdev */ |
| 613 | if (net != &init_net && pnetelem->type != SMC_PNET_ETH) |
| 614 | continue; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 615 | if (smc_pnet_dumpinfo(skb, portid, seq, NLM_F_MULTI, |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 616 | pnetelem)) { |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 617 | --idx; |
| 618 | break; |
| 619 | } |
| 620 | } |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 621 | read_unlock(&pnettable->lock); |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 622 | return idx; |
| 623 | } |
| 624 | |
| 625 | static int smc_pnet_dump(struct sk_buff *skb, struct netlink_callback *cb) |
| 626 | { |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 627 | struct net *net = sock_net(skb->sk); |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 628 | int idx; |
| 629 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 630 | idx = _smc_pnet_dump(net, skb, NETLINK_CB(cb->skb).portid, |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 631 | cb->nlh->nlmsg_seq, NULL, cb->args[0]); |
| 632 | |
| 633 | cb->args[0] = idx; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 634 | return skb->len; |
| 635 | } |
| 636 | |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 637 | /* Retrieve one PNETID entry */ |
| 638 | static int smc_pnet_get(struct sk_buff *skb, struct genl_info *info) |
| 639 | { |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 640 | struct net *net = genl_info_net(info); |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 641 | struct sk_buff *msg; |
| 642 | void *hdr; |
| 643 | |
| 644 | if (!info->attrs[SMC_PNETID_NAME]) |
| 645 | return -EINVAL; |
| 646 | |
| 647 | msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 648 | if (!msg) |
| 649 | return -ENOMEM; |
| 650 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 651 | _smc_pnet_dump(net, msg, info->snd_portid, info->snd_seq, |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 652 | nla_data(info->attrs[SMC_PNETID_NAME]), 0); |
| 653 | |
| 654 | /* finish multi part message and send it */ |
| 655 | hdr = nlmsg_put(msg, info->snd_portid, info->snd_seq, NLMSG_DONE, 0, |
| 656 | NLM_F_MULTI); |
| 657 | if (!hdr) { |
| 658 | nlmsg_free(msg); |
| 659 | return -EMSGSIZE; |
| 660 | } |
| 661 | return genlmsg_reply(msg, info); |
| 662 | } |
| 663 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 664 | /* Remove and delete all pnetids from pnet table. |
| 665 | */ |
| 666 | static int smc_pnet_flush(struct sk_buff *skb, struct genl_info *info) |
| 667 | { |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 668 | struct net *net = genl_info_net(info); |
| 669 | |
Karsten Graul | 8ef659f | 2019-04-11 11:17:33 +0200 | [diff] [blame] | 670 | smc_pnet_remove_by_pnetid(net, NULL); |
| 671 | return 0; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | /* SMC_PNETID generic netlink operation definition */ |
| 675 | static const struct genl_ops smc_pnet_ops[] = { |
| 676 | { |
| 677 | .cmd = SMC_PNETID_GET, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 678 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Hans Wippel | 29237d2 | 2020-01-21 01:04:46 +0100 | [diff] [blame] | 679 | /* can be retrieved by unprivileged users */ |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 680 | .doit = smc_pnet_get, |
| 681 | .dumpit = smc_pnet_dump, |
| 682 | .start = smc_pnet_dump_start |
| 683 | }, |
| 684 | { |
| 685 | .cmd = SMC_PNETID_ADD, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 686 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 687 | .flags = GENL_ADMIN_PERM, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 688 | .doit = smc_pnet_add |
| 689 | }, |
| 690 | { |
| 691 | .cmd = SMC_PNETID_DEL, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 692 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 693 | .flags = GENL_ADMIN_PERM, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 694 | .doit = smc_pnet_del |
| 695 | }, |
| 696 | { |
| 697 | .cmd = SMC_PNETID_FLUSH, |
Johannes Berg | ef6243a | 2019-04-26 14:07:31 +0200 | [diff] [blame] | 698 | .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 699 | .flags = GENL_ADMIN_PERM, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 700 | .doit = smc_pnet_flush |
| 701 | } |
| 702 | }; |
| 703 | |
| 704 | /* SMC_PNETID family definition */ |
Johannes Berg | 56ce3c5 | 2018-09-20 09:27:30 +0200 | [diff] [blame] | 705 | static struct genl_family smc_pnet_nl_family __ro_after_init = { |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 706 | .hdrsize = 0, |
| 707 | .name = SMCR_GENL_FAMILY_NAME, |
| 708 | .version = SMCR_GENL_FAMILY_VERSION, |
| 709 | .maxattr = SMC_PNETID_MAX, |
Johannes Berg | 3b0f31f | 2019-03-21 22:51:02 +0100 | [diff] [blame] | 710 | .policy = smc_pnet_policy, |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 711 | .netnsok = true, |
| 712 | .module = THIS_MODULE, |
| 713 | .ops = smc_pnet_ops, |
| 714 | .n_ops = ARRAY_SIZE(smc_pnet_ops) |
| 715 | }; |
| 716 | |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 717 | bool smc_pnet_is_ndev_pnetid(struct net *net, u8 *pnetid) |
| 718 | { |
| 719 | struct smc_net *sn = net_generic(net, smc_net_id); |
| 720 | struct smc_pnetids_ndev_entry *pe; |
| 721 | bool rc = false; |
| 722 | |
| 723 | read_lock(&sn->pnetids_ndev.lock); |
| 724 | list_for_each_entry(pe, &sn->pnetids_ndev.list, list) { |
| 725 | if (smc_pnet_match(pnetid, pe->pnetid)) { |
| 726 | rc = true; |
| 727 | goto unlock; |
| 728 | } |
| 729 | } |
| 730 | |
| 731 | unlock: |
| 732 | read_unlock(&sn->pnetids_ndev.lock); |
| 733 | return rc; |
| 734 | } |
| 735 | |
| 736 | static int smc_pnet_add_pnetid(struct net *net, u8 *pnetid) |
| 737 | { |
| 738 | struct smc_net *sn = net_generic(net, smc_net_id); |
| 739 | struct smc_pnetids_ndev_entry *pe, *pi; |
| 740 | |
| 741 | pe = kzalloc(sizeof(*pe), GFP_KERNEL); |
| 742 | if (!pe) |
| 743 | return -ENOMEM; |
| 744 | |
| 745 | write_lock(&sn->pnetids_ndev.lock); |
| 746 | list_for_each_entry(pi, &sn->pnetids_ndev.list, list) { |
| 747 | if (smc_pnet_match(pnetid, pe->pnetid)) { |
| 748 | refcount_inc(&pi->refcnt); |
| 749 | kfree(pe); |
| 750 | goto unlock; |
| 751 | } |
| 752 | } |
| 753 | refcount_set(&pe->refcnt, 1); |
| 754 | memcpy(pe->pnetid, pnetid, SMC_MAX_PNETID_LEN); |
| 755 | list_add_tail(&pe->list, &sn->pnetids_ndev.list); |
| 756 | |
| 757 | unlock: |
| 758 | write_unlock(&sn->pnetids_ndev.lock); |
| 759 | return 0; |
| 760 | } |
| 761 | |
| 762 | static void smc_pnet_remove_pnetid(struct net *net, u8 *pnetid) |
| 763 | { |
| 764 | struct smc_net *sn = net_generic(net, smc_net_id); |
| 765 | struct smc_pnetids_ndev_entry *pe, *pe2; |
| 766 | |
| 767 | write_lock(&sn->pnetids_ndev.lock); |
| 768 | list_for_each_entry_safe(pe, pe2, &sn->pnetids_ndev.list, list) { |
| 769 | if (smc_pnet_match(pnetid, pe->pnetid)) { |
| 770 | if (refcount_dec_and_test(&pe->refcnt)) { |
| 771 | list_del(&pe->list); |
| 772 | kfree(pe); |
| 773 | } |
| 774 | break; |
| 775 | } |
| 776 | } |
| 777 | write_unlock(&sn->pnetids_ndev.lock); |
| 778 | } |
| 779 | |
| 780 | static void smc_pnet_add_base_pnetid(struct net *net, struct net_device *dev, |
| 781 | u8 *ndev_pnetid) |
| 782 | { |
| 783 | struct net_device *base_dev; |
| 784 | |
| 785 | base_dev = __pnet_find_base_ndev(dev); |
| 786 | if (base_dev->flags & IFF_UP && |
| 787 | !smc_pnetid_by_dev_port(base_dev->dev.parent, base_dev->dev_port, |
| 788 | ndev_pnetid)) { |
| 789 | /* add to PNETIDs list */ |
| 790 | smc_pnet_add_pnetid(net, ndev_pnetid); |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | /* create initial list of netdevice pnetids */ |
| 795 | static void smc_pnet_create_pnetids_list(struct net *net) |
| 796 | { |
| 797 | u8 ndev_pnetid[SMC_MAX_PNETID_LEN]; |
| 798 | struct net_device *dev; |
| 799 | |
| 800 | rtnl_lock(); |
| 801 | for_each_netdev(net, dev) |
| 802 | smc_pnet_add_base_pnetid(net, dev, ndev_pnetid); |
| 803 | rtnl_unlock(); |
| 804 | } |
| 805 | |
| 806 | /* clean up list of netdevice pnetids */ |
| 807 | static void smc_pnet_destroy_pnetids_list(struct net *net) |
| 808 | { |
| 809 | struct smc_net *sn = net_generic(net, smc_net_id); |
| 810 | struct smc_pnetids_ndev_entry *pe, *temp_pe; |
| 811 | |
| 812 | write_lock(&sn->pnetids_ndev.lock); |
| 813 | list_for_each_entry_safe(pe, temp_pe, &sn->pnetids_ndev.list, list) { |
| 814 | list_del(&pe->list); |
| 815 | kfree(pe); |
| 816 | } |
| 817 | write_unlock(&sn->pnetids_ndev.lock); |
| 818 | } |
| 819 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 820 | static int smc_pnet_netdev_event(struct notifier_block *this, |
| 821 | unsigned long event, void *ptr) |
| 822 | { |
| 823 | struct net_device *event_dev = netdev_notifier_info_to_dev(ptr); |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 824 | struct net *net = dev_net(event_dev); |
| 825 | u8 ndev_pnetid[SMC_MAX_PNETID_LEN]; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 826 | |
| 827 | switch (event) { |
| 828 | case NETDEV_REBOOT: |
| 829 | case NETDEV_UNREGISTER: |
| 830 | smc_pnet_remove_by_ndev(event_dev); |
Guvenc Gulce | 3d453f5 | 2020-12-01 20:20:40 +0100 | [diff] [blame] | 831 | smc_ib_ndev_change(event_dev, event); |
Ursula Braun | be6a3f3 | 2018-06-28 19:05:04 +0200 | [diff] [blame] | 832 | return NOTIFY_OK; |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 833 | case NETDEV_REGISTER: |
| 834 | smc_pnet_add_by_ndev(event_dev); |
Guvenc Gulce | 3d453f5 | 2020-12-01 20:20:40 +0100 | [diff] [blame] | 835 | smc_ib_ndev_change(event_dev, event); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 836 | return NOTIFY_OK; |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 837 | case NETDEV_UP: |
| 838 | smc_pnet_add_base_pnetid(net, event_dev, ndev_pnetid); |
| 839 | return NOTIFY_OK; |
| 840 | case NETDEV_DOWN: |
| 841 | event_dev = __pnet_find_base_ndev(event_dev); |
| 842 | if (!smc_pnetid_by_dev_port(event_dev->dev.parent, |
| 843 | event_dev->dev_port, ndev_pnetid)) { |
| 844 | /* remove from PNETIDs list */ |
| 845 | smc_pnet_remove_pnetid(net, ndev_pnetid); |
| 846 | } |
| 847 | return NOTIFY_OK; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 848 | default: |
Ursula Braun | be6a3f3 | 2018-06-28 19:05:04 +0200 | [diff] [blame] | 849 | return NOTIFY_DONE; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 850 | } |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | static struct notifier_block smc_netdev_notifier = { |
| 854 | .notifier_call = smc_pnet_netdev_event |
| 855 | }; |
| 856 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 857 | /* init network namespace */ |
| 858 | int smc_pnet_net_init(struct net *net) |
| 859 | { |
| 860 | struct smc_net *sn = net_generic(net, smc_net_id); |
| 861 | struct smc_pnettable *pnettable = &sn->pnettable; |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 862 | struct smc_pnetids_ndev *pnetids_ndev = &sn->pnetids_ndev; |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 863 | |
| 864 | INIT_LIST_HEAD(&pnettable->pnetlist); |
| 865 | rwlock_init(&pnettable->lock); |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 866 | INIT_LIST_HEAD(&pnetids_ndev->list); |
| 867 | rwlock_init(&pnetids_ndev->lock); |
| 868 | |
| 869 | smc_pnet_create_pnetids_list(net); |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 870 | |
| 871 | return 0; |
| 872 | } |
| 873 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 874 | int __init smc_pnet_init(void) |
| 875 | { |
| 876 | int rc; |
| 877 | |
| 878 | rc = genl_register_family(&smc_pnet_nl_family); |
| 879 | if (rc) |
| 880 | return rc; |
| 881 | rc = register_netdevice_notifier(&smc_netdev_notifier); |
| 882 | if (rc) |
| 883 | genl_unregister_family(&smc_pnet_nl_family); |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 884 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 885 | return rc; |
| 886 | } |
| 887 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 888 | /* exit network namespace */ |
| 889 | void smc_pnet_net_exit(struct net *net) |
| 890 | { |
| 891 | /* flush pnet table */ |
| 892 | smc_pnet_remove_by_pnetid(net, NULL); |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 893 | smc_pnet_destroy_pnetids_list(net); |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 894 | } |
| 895 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 896 | void smc_pnet_exit(void) |
| 897 | { |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 898 | unregister_netdevice_notifier(&smc_netdev_notifier); |
| 899 | genl_unregister_family(&smc_pnet_nl_family); |
| 900 | } |
| 901 | |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 902 | static struct net_device *__pnet_find_base_ndev(struct net_device *ndev) |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 903 | { |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 904 | int i, nest_lvl; |
| 905 | |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 906 | ASSERT_RTNL(); |
Taehee Yoo | f3b0a18 | 2019-10-21 18:47:58 +0000 | [diff] [blame] | 907 | nest_lvl = ndev->lower_level; |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 908 | for (i = 0; i < nest_lvl; i++) { |
| 909 | struct list_head *lower = &ndev->adj_list.lower; |
| 910 | |
| 911 | if (list_empty(lower)) |
| 912 | break; |
| 913 | lower = lower->next; |
| 914 | ndev = netdev_lower_get_next(ndev, &lower); |
| 915 | } |
Ursula Braun | e888a2e | 2020-09-26 12:44:26 +0200 | [diff] [blame] | 916 | return ndev; |
| 917 | } |
| 918 | |
| 919 | /* Determine one base device for stacked net devices. |
| 920 | * If the lower device level contains more than one devices |
| 921 | * (for instance with bonding slaves), just the first device |
| 922 | * is used to reach a base device. |
| 923 | */ |
| 924 | static struct net_device *pnet_find_base_ndev(struct net_device *ndev) |
| 925 | { |
| 926 | rtnl_lock(); |
| 927 | ndev = __pnet_find_base_ndev(ndev); |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 928 | rtnl_unlock(); |
| 929 | return ndev; |
| 930 | } |
| 931 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 932 | static int smc_pnet_find_ndev_pnetid_by_table(struct net_device *ndev, |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 933 | u8 *pnetid) |
| 934 | { |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 935 | struct smc_pnettable *pnettable; |
| 936 | struct net *net = dev_net(ndev); |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 937 | struct smc_pnetentry *pnetelem; |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 938 | struct smc_net *sn; |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 939 | int rc = -ENOENT; |
| 940 | |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 941 | /* get pnettable for namespace */ |
| 942 | sn = net_generic(net, smc_net_id); |
| 943 | pnettable = &sn->pnettable; |
| 944 | |
| 945 | read_lock(&pnettable->lock); |
| 946 | list_for_each_entry(pnetelem, &pnettable->pnetlist, list) { |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 947 | if (pnetelem->type == SMC_PNET_ETH && ndev == pnetelem->ndev) { |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 948 | /* get pnetid of netdev device */ |
| 949 | memcpy(pnetid, pnetelem->pnet_name, SMC_MAX_PNETID_LEN); |
| 950 | rc = 0; |
| 951 | break; |
| 952 | } |
| 953 | } |
Hans Wippel | 64e28b5 | 2019-02-21 13:01:02 +0100 | [diff] [blame] | 954 | read_unlock(&pnettable->lock); |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 955 | return rc; |
| 956 | } |
| 957 | |
Karsten Graul | 24fb681 | 2021-10-16 11:37:48 +0200 | [diff] [blame] | 958 | static int smc_pnet_determine_gid(struct smc_ib_device *ibdev, int i, |
| 959 | struct smc_init_info *ini) |
| 960 | { |
| 961 | if (!ini->check_smcrv2 && |
| 962 | !smc_ib_determine_gid(ibdev, i, ini->vlan_id, ini->ib_gid, NULL, |
| 963 | NULL)) { |
| 964 | ini->ib_dev = ibdev; |
| 965 | ini->ib_port = i; |
| 966 | return 0; |
| 967 | } |
| 968 | if (ini->check_smcrv2 && |
| 969 | !smc_ib_determine_gid(ibdev, i, ini->vlan_id, ini->smcrv2.ib_gid_v2, |
| 970 | NULL, &ini->smcrv2)) { |
| 971 | ini->smcrv2.ib_dev_v2 = ibdev; |
| 972 | ini->smcrv2.ib_port_v2 = i; |
| 973 | return 0; |
| 974 | } |
| 975 | return -ENODEV; |
| 976 | } |
| 977 | |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 978 | /* find a roce device for the given pnetid */ |
| 979 | static void _smc_pnet_find_roce_by_pnetid(u8 *pnet_id, |
Karsten Graul | 6c868a3 | 2020-05-01 12:48:11 +0200 | [diff] [blame] | 980 | struct smc_init_info *ini, |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 981 | struct smc_ib_device *known_dev, |
| 982 | struct net *net) |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 983 | { |
| 984 | struct smc_ib_device *ibdev; |
| 985 | int i; |
| 986 | |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 987 | mutex_lock(&smc_ib_devices.mutex); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 988 | list_for_each_entry(ibdev, &smc_ib_devices.list, list) { |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 989 | if (ibdev == known_dev || |
| 990 | !rdma_dev_access_netns(ibdev->ibdev, net)) |
Karsten Graul | 6c868a3 | 2020-05-01 12:48:11 +0200 | [diff] [blame] | 991 | continue; |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 992 | for (i = 1; i <= SMC_MAX_PORTS; i++) { |
| 993 | if (!rdma_is_port_valid(ibdev->ibdev, i)) |
| 994 | continue; |
| 995 | if (smc_pnet_match(ibdev->pnetid[i - 1], pnet_id) && |
| 996 | smc_ib_port_active(ibdev, i) && |
Karsten Graul | 24fb681 | 2021-10-16 11:37:48 +0200 | [diff] [blame] | 997 | !test_bit(i - 1, ibdev->ports_going_away)) { |
| 998 | if (!smc_pnet_determine_gid(ibdev, i, ini)) |
| 999 | goto out; |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 1000 | } |
| 1001 | } |
| 1002 | } |
| 1003 | out: |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 1004 | mutex_unlock(&smc_ib_devices.mutex); |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 1005 | } |
| 1006 | |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 1007 | /* find alternate roce device with same pnet_id, vlan_id and net namespace */ |
Karsten Graul | 6c868a3 | 2020-05-01 12:48:11 +0200 | [diff] [blame] | 1008 | void smc_pnet_find_alt_roce(struct smc_link_group *lgr, |
| 1009 | struct smc_init_info *ini, |
| 1010 | struct smc_ib_device *known_dev) |
| 1011 | { |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 1012 | struct net *net = lgr->net; |
| 1013 | |
| 1014 | _smc_pnet_find_roce_by_pnetid(lgr->pnet_id, ini, known_dev, net); |
Karsten Graul | 6c868a3 | 2020-05-01 12:48:11 +0200 | [diff] [blame] | 1015 | } |
| 1016 | |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1017 | /* if handshake network device belongs to a roce device, return its |
| 1018 | * IB device and port |
| 1019 | */ |
| 1020 | static void smc_pnet_find_rdma_dev(struct net_device *netdev, |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 1021 | struct smc_init_info *ini) |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1022 | { |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 1023 | struct net *net = dev_net(netdev); |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1024 | struct smc_ib_device *ibdev; |
| 1025 | |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 1026 | mutex_lock(&smc_ib_devices.mutex); |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1027 | list_for_each_entry(ibdev, &smc_ib_devices.list, list) { |
| 1028 | struct net_device *ndev; |
| 1029 | int i; |
| 1030 | |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 1031 | /* check rdma net namespace */ |
| 1032 | if (!rdma_dev_access_netns(ibdev->ibdev, net)) |
| 1033 | continue; |
| 1034 | |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1035 | for (i = 1; i <= SMC_MAX_PORTS; i++) { |
| 1036 | if (!rdma_is_port_valid(ibdev->ibdev, i)) |
| 1037 | continue; |
| 1038 | if (!ibdev->ibdev->ops.get_netdev) |
| 1039 | continue; |
| 1040 | ndev = ibdev->ibdev->ops.get_netdev(ibdev->ibdev, i); |
| 1041 | if (!ndev) |
| 1042 | continue; |
| 1043 | dev_put(ndev); |
| 1044 | if (netdev == ndev && |
| 1045 | smc_ib_port_active(ibdev, i) && |
Karsten Graul | 24fb681 | 2021-10-16 11:37:48 +0200 | [diff] [blame] | 1046 | !test_bit(i - 1, ibdev->ports_going_away)) { |
| 1047 | if (!smc_pnet_determine_gid(ibdev, i, ini)) |
| 1048 | break; |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1049 | } |
| 1050 | } |
| 1051 | } |
Ursula Braun | 92f3cb0 | 2020-07-08 17:05:13 +0200 | [diff] [blame] | 1052 | mutex_unlock(&smc_ib_devices.mutex); |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1053 | } |
| 1054 | |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1055 | /* Determine the corresponding IB device port based on the hardware PNETID. |
Ursula Braun | 7005ada | 2018-07-25 16:35:31 +0200 | [diff] [blame] | 1056 | * Searching stops at the first matching active IB device port with vlan_id |
| 1057 | * configured. |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1058 | * If nothing found, check pnetid table. |
| 1059 | * If nothing found, try to use handshake device |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1060 | */ |
| 1061 | static void smc_pnet_find_roce_by_pnetid(struct net_device *ndev, |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 1062 | struct smc_init_info *ini) |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1063 | { |
| 1064 | u8 ndev_pnetid[SMC_MAX_PNETID_LEN]; |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 1065 | struct net *net; |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1066 | |
| 1067 | ndev = pnet_find_base_ndev(ndev); |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 1068 | net = dev_net(ndev); |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1069 | if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port, |
Hans Wippel | 890a2cb | 2019-02-21 13:01:00 +0100 | [diff] [blame] | 1070 | ndev_pnetid) && |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1071 | smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid)) { |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 1072 | smc_pnet_find_rdma_dev(ndev, ini); |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1073 | return; /* pnetid could not be determined */ |
Ursula Braun | 5490357 | 2019-02-28 15:10:08 +0100 | [diff] [blame] | 1074 | } |
Tony Lu | 0237a3a | 2021-12-28 21:06:09 +0800 | [diff] [blame] | 1075 | _smc_pnet_find_roce_by_pnetid(ndev_pnetid, ini, NULL, net); |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1076 | } |
| 1077 | |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1078 | static void smc_pnet_find_ism_by_pnetid(struct net_device *ndev, |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 1079 | struct smc_init_info *ini) |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1080 | { |
| 1081 | u8 ndev_pnetid[SMC_MAX_PNETID_LEN]; |
| 1082 | struct smcd_dev *ismdev; |
| 1083 | |
| 1084 | ndev = pnet_find_base_ndev(ndev); |
| 1085 | if (smc_pnetid_by_dev_port(ndev->dev.parent, ndev->dev_port, |
Hans Wippel | f3d74b2 | 2019-02-21 13:01:01 +0100 | [diff] [blame] | 1086 | ndev_pnetid) && |
| 1087 | smc_pnet_find_ndev_pnetid_by_table(ndev, ndev_pnetid)) |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1088 | return; /* pnetid could not be determined */ |
| 1089 | |
Ursula Braun | 82087c0 | 2020-07-08 17:05:14 +0200 | [diff] [blame] | 1090 | mutex_lock(&smcd_dev_list.mutex); |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1091 | list_for_each_entry(ismdev, &smcd_dev_list.list, list) { |
Ursula Braun | c3d9494 | 2019-10-09 10:07:46 +0200 | [diff] [blame] | 1092 | if (smc_pnet_match(ismdev->pnetid, ndev_pnetid) && |
Ursula Braun | 7b2977d | 2020-09-10 18:48:24 +0200 | [diff] [blame] | 1093 | !ismdev->going_away && |
Ursula Braun | 3fc6493 | 2020-09-26 12:44:23 +0200 | [diff] [blame] | 1094 | (!ini->ism_peer_gid[0] || |
| 1095 | !smc_ism_cantalk(ini->ism_peer_gid[0], ini->vlan_id, |
Ursula Braun | 7b2977d | 2020-09-10 18:48:24 +0200 | [diff] [blame] | 1096 | ismdev))) { |
Ursula Braun | 3fc6493 | 2020-09-26 12:44:23 +0200 | [diff] [blame] | 1097 | ini->ism_dev[0] = ismdev; |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1098 | break; |
| 1099 | } |
| 1100 | } |
Ursula Braun | 82087c0 | 2020-07-08 17:05:14 +0200 | [diff] [blame] | 1101 | mutex_unlock(&smcd_dev_list.mutex); |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1102 | } |
| 1103 | |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1104 | /* PNET table analysis for a given sock: |
| 1105 | * determine ib_device and port belonging to used internal TCP socket |
| 1106 | * ethernet interface. |
| 1107 | */ |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 1108 | void smc_pnet_find_roce_resource(struct sock *sk, struct smc_init_info *ini) |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1109 | { |
| 1110 | struct dst_entry *dst = sk_dst_get(sk); |
| 1111 | |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1112 | if (!dst) |
| 1113 | goto out; |
| 1114 | if (!dst->dev) |
| 1115 | goto out_rel; |
| 1116 | |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 1117 | smc_pnet_find_roce_by_pnetid(dst->dev, ini); |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1118 | |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 1119 | out_rel: |
| 1120 | dst_release(dst); |
Ursula Braun | 0afff91 | 2018-06-28 19:05:05 +0200 | [diff] [blame] | 1121 | out: |
| 1122 | return; |
Thomas Richter | 6812baa | 2017-01-09 16:55:15 +0100 | [diff] [blame] | 1123 | } |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1124 | |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 1125 | void smc_pnet_find_ism_resource(struct sock *sk, struct smc_init_info *ini) |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1126 | { |
| 1127 | struct dst_entry *dst = sk_dst_get(sk); |
| 1128 | |
Ursula Braun | 3fc6493 | 2020-09-26 12:44:23 +0200 | [diff] [blame] | 1129 | ini->ism_dev[0] = NULL; |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1130 | if (!dst) |
| 1131 | goto out; |
| 1132 | if (!dst->dev) |
| 1133 | goto out_rel; |
| 1134 | |
Karsten Graul | bc36d2f | 2019-04-12 12:57:26 +0200 | [diff] [blame] | 1135 | smc_pnet_find_ism_by_pnetid(dst->dev, ini); |
Hans Wippel | 1619f77 | 2018-06-28 19:05:08 +0200 | [diff] [blame] | 1136 | |
| 1137 | out_rel: |
| 1138 | dst_release(dst); |
| 1139 | out: |
| 1140 | return; |
| 1141 | } |
Karsten Graul | fdff704 | 2020-04-29 17:10:37 +0200 | [diff] [blame] | 1142 | |
| 1143 | /* Lookup and apply a pnet table entry to the given ib device. |
| 1144 | */ |
| 1145 | int smc_pnetid_by_table_ib(struct smc_ib_device *smcibdev, u8 ib_port) |
| 1146 | { |
| 1147 | char *ib_name = smcibdev->ibdev->name; |
| 1148 | struct smc_pnettable *pnettable; |
| 1149 | struct smc_pnetentry *tmp_pe; |
| 1150 | struct smc_net *sn; |
| 1151 | int rc = -ENOENT; |
| 1152 | |
| 1153 | /* get pnettable for init namespace */ |
| 1154 | sn = net_generic(&init_net, smc_net_id); |
| 1155 | pnettable = &sn->pnettable; |
| 1156 | |
| 1157 | read_lock(&pnettable->lock); |
| 1158 | list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) { |
| 1159 | if (tmp_pe->type == SMC_PNET_IB && |
| 1160 | !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX) && |
| 1161 | tmp_pe->ib_port == ib_port) { |
| 1162 | smc_pnet_apply_ib(smcibdev, ib_port, tmp_pe->pnet_name); |
| 1163 | rc = 0; |
| 1164 | break; |
| 1165 | } |
| 1166 | } |
| 1167 | read_unlock(&pnettable->lock); |
| 1168 | |
| 1169 | return rc; |
| 1170 | } |
| 1171 | |
| 1172 | /* Lookup and apply a pnet table entry to the given smcd device. |
| 1173 | */ |
| 1174 | int smc_pnetid_by_table_smcd(struct smcd_dev *smcddev) |
| 1175 | { |
| 1176 | const char *ib_name = dev_name(&smcddev->dev); |
| 1177 | struct smc_pnettable *pnettable; |
| 1178 | struct smc_pnetentry *tmp_pe; |
| 1179 | struct smc_net *sn; |
| 1180 | int rc = -ENOENT; |
| 1181 | |
| 1182 | /* get pnettable for init namespace */ |
| 1183 | sn = net_generic(&init_net, smc_net_id); |
| 1184 | pnettable = &sn->pnettable; |
| 1185 | |
| 1186 | read_lock(&pnettable->lock); |
| 1187 | list_for_each_entry(tmp_pe, &pnettable->pnetlist, list) { |
| 1188 | if (tmp_pe->type == SMC_PNET_IB && |
| 1189 | !strncmp(tmp_pe->ib_name, ib_name, IB_DEVICE_NAME_MAX)) { |
| 1190 | smc_pnet_apply_smcd(smcddev, tmp_pe->pnet_name); |
| 1191 | rc = 0; |
| 1192 | break; |
| 1193 | } |
| 1194 | } |
| 1195 | read_unlock(&pnettable->lock); |
| 1196 | |
| 1197 | return rc; |
| 1198 | } |