|
| 1 | +/* |
| 2 | + * Shared Memory Communications over RDMA (SMC-R) and RoCE |
| 3 | + * |
| 4 | + * IB infrastructure: |
| 5 | + * Establish SMC-R as an Infiniband Client to be notified about added and |
| 6 | + * removed IB devices of type RDMA. |
| 7 | + * Determine device and port characteristics for these IB devices. |
| 8 | + * |
| 9 | + * Copyright IBM Corp. 2016 |
| 10 | + * |
| 11 | + * Author(s): Ursula Braun <ubraun@linux.vnet.ibm.com> |
| 12 | + */ |
| 13 | + |
| 14 | +#include <linux/random.h> |
| 15 | +#include <rdma/ib_verbs.h> |
| 16 | + |
| 17 | +#include "smc_ib.h" |
| 18 | +#include "smc.h" |
| 19 | + |
| 20 | +struct smc_ib_devices smc_ib_devices = { /* smc-registered ib devices */ |
| 21 | + .lock = __SPIN_LOCK_UNLOCKED(smc_ib_devices.lock), |
| 22 | + .list = LIST_HEAD_INIT(smc_ib_devices.list), |
| 23 | +}; |
| 24 | + |
| 25 | +#define SMC_LOCAL_SYSTEMID_RESET "%%%%%%%" |
| 26 | + |
| 27 | +u8 local_systemid[SMC_SYSTEMID_LEN] = SMC_LOCAL_SYSTEMID_RESET; /* unique system |
| 28 | + * identifier |
| 29 | + */ |
| 30 | + |
| 31 | +static int smc_ib_fill_gid_and_mac(struct smc_ib_device *smcibdev, u8 ibport) |
| 32 | +{ |
| 33 | + struct net_device *ndev; |
| 34 | + int rc; |
| 35 | + |
| 36 | + rc = ib_query_gid(smcibdev->ibdev, ibport, 0, |
| 37 | + &smcibdev->gid[ibport - 1], NULL); |
| 38 | + /* the SMC protocol requires specification of the roce MAC address; |
| 39 | + * if net_device cannot be determined, it can be derived from gid 0 |
| 40 | + */ |
| 41 | + ndev = smcibdev->ibdev->get_netdev(smcibdev->ibdev, ibport); |
| 42 | + if (ndev) { |
| 43 | + memcpy(&smcibdev->mac, ndev->dev_addr, ETH_ALEN); |
| 44 | + } else if (!rc) { |
| 45 | + memcpy(&smcibdev->mac[ibport - 1][0], |
| 46 | + &smcibdev->gid[ibport - 1].raw[8], 3); |
| 47 | + memcpy(&smcibdev->mac[ibport - 1][3], |
| 48 | + &smcibdev->gid[ibport - 1].raw[13], 3); |
| 49 | + smcibdev->mac[ibport - 1][0] &= ~0x02; |
| 50 | + } |
| 51 | + return rc; |
| 52 | +} |
| 53 | + |
| 54 | +/* Create an identifier unique for this instance of SMC-R. |
| 55 | + * The MAC-address of the first active registered IB device |
| 56 | + * plus a random 2-byte number is used to create this identifier. |
| 57 | + * This name is delivered to the peer during connection initialization. |
| 58 | + */ |
| 59 | +static inline void smc_ib_define_local_systemid(struct smc_ib_device *smcibdev, |
| 60 | + u8 ibport) |
| 61 | +{ |
| 62 | + memcpy(&local_systemid[2], &smcibdev->mac[ibport - 1], |
| 63 | + sizeof(smcibdev->mac[ibport - 1])); |
| 64 | + get_random_bytes(&local_systemid[0], 2); |
| 65 | +} |
| 66 | + |
| 67 | +bool smc_ib_port_active(struct smc_ib_device *smcibdev, u8 ibport) |
| 68 | +{ |
| 69 | + return smcibdev->pattr[ibport - 1].state == IB_PORT_ACTIVE; |
| 70 | +} |
| 71 | + |
| 72 | +int smc_ib_remember_port_attr(struct smc_ib_device *smcibdev, u8 ibport) |
| 73 | +{ |
| 74 | + int rc; |
| 75 | + |
| 76 | + memset(&smcibdev->pattr[ibport - 1], 0, |
| 77 | + sizeof(smcibdev->pattr[ibport - 1])); |
| 78 | + rc = ib_query_port(smcibdev->ibdev, ibport, |
| 79 | + &smcibdev->pattr[ibport - 1]); |
| 80 | + if (rc) |
| 81 | + goto out; |
| 82 | + rc = smc_ib_fill_gid_and_mac(smcibdev, ibport); |
| 83 | + if (rc) |
| 84 | + goto out; |
| 85 | + if (!strncmp(local_systemid, SMC_LOCAL_SYSTEMID_RESET, |
| 86 | + sizeof(local_systemid)) && |
| 87 | + smc_ib_port_active(smcibdev, ibport)) |
| 88 | + /* create unique system identifier */ |
| 89 | + smc_ib_define_local_systemid(smcibdev, ibport); |
| 90 | +out: |
| 91 | + return rc; |
| 92 | +} |
| 93 | + |
| 94 | +static struct ib_client smc_ib_client; |
| 95 | + |
| 96 | +/* callback function for ib_register_client() */ |
| 97 | +static void smc_ib_add_dev(struct ib_device *ibdev) |
| 98 | +{ |
| 99 | + struct smc_ib_device *smcibdev; |
| 100 | + |
| 101 | + if (ibdev->node_type != RDMA_NODE_IB_CA) |
| 102 | + return; |
| 103 | + |
| 104 | + smcibdev = kzalloc(sizeof(*smcibdev), GFP_KERNEL); |
| 105 | + if (!smcibdev) |
| 106 | + return; |
| 107 | + |
| 108 | + smcibdev->ibdev = ibdev; |
| 109 | + |
| 110 | + spin_lock(&smc_ib_devices.lock); |
| 111 | + list_add_tail(&smcibdev->list, &smc_ib_devices.list); |
| 112 | + spin_unlock(&smc_ib_devices.lock); |
| 113 | + ib_set_client_data(ibdev, &smc_ib_client, smcibdev); |
| 114 | +} |
| 115 | + |
| 116 | +/* callback function for ib_register_client() */ |
| 117 | +static void smc_ib_remove_dev(struct ib_device *ibdev, void *client_data) |
| 118 | +{ |
| 119 | + struct smc_ib_device *smcibdev; |
| 120 | + |
| 121 | + smcibdev = ib_get_client_data(ibdev, &smc_ib_client); |
| 122 | + ib_set_client_data(ibdev, &smc_ib_client, NULL); |
| 123 | + spin_lock(&smc_ib_devices.lock); |
| 124 | + list_del_init(&smcibdev->list); /* remove from smc_ib_devices */ |
| 125 | + spin_unlock(&smc_ib_devices.lock); |
| 126 | + kfree(smcibdev); |
| 127 | +} |
| 128 | + |
| 129 | +static struct ib_client smc_ib_client = { |
| 130 | + .name = "smc_ib", |
| 131 | + .add = smc_ib_add_dev, |
| 132 | + .remove = smc_ib_remove_dev, |
| 133 | +}; |
| 134 | + |
| 135 | +int __init smc_ib_register_client(void) |
| 136 | +{ |
| 137 | + return ib_register_client(&smc_ib_client); |
| 138 | +} |
| 139 | + |
| 140 | +void smc_ib_unregister_client(void) |
| 141 | +{ |
| 142 | + ib_unregister_client(&smc_ib_client); |
| 143 | +} |
0 commit comments