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