1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
* Copyright (c) 2004-2009 Voltaire Inc. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* OpenIB.org BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <infiniband/mad.h>
#include "mad_internal.h"
#undef DEBUG
#define DEBUG if (ibdebug) IBWARN
uint8_t *sa_rpc_call(const struct ibmad_port *ibmad_port, void *rcvbuf,
ib_portid_t * portid, ib_sa_call_t * sa, unsigned timeout)
{
ib_rpc_t rpc = { 0 };
uint8_t *p;
DEBUG("attr 0x%x mod 0x%x route %s", sa->attrid, sa->mod,
portid2str(portid));
if (portid->lid <= 0) {
IBWARN("only lid routes are supported");
return NULL;
}
rpc.mgtclass = IB_SA_CLASS;
rpc.method = sa->method;
rpc.attr.id = sa->attrid;
rpc.attr.mod = sa->mod;
rpc.mask = sa->mask;
rpc.timeout = timeout;
rpc.datasz = IB_SA_DATA_SIZE;
rpc.dataoffs = IB_SA_DATA_OFFS;
rpc.trid = sa->trid;
portid->qp = 1;
if (!portid->qkey)
portid->qkey = IB_DEFAULT_QP1_QKEY;
p = mad_rpc_rmpp(ibmad_port, &rpc, portid, NULL /*&sa->rmpp */ , rcvbuf); /* TODO: RMPP */
sa->recsz = rpc.recsz;
return p;
}
uint8_t *sa_call(void *rcvbuf, ib_portid_t * portid, ib_sa_call_t * sa,
unsigned timeout)
{
return sa_rpc_call(ibmp, rcvbuf, portid, sa, timeout);
}
/* PathRecord */
#define IB_PR_COMPMASK_DGID (1ull<<2)
#define IB_PR_COMPMASK_SGID (1ull<<3)
#define IB_PR_COMPMASK_DLID (1ull<<4)
#define IB_PR_COMPMASK_SLID (1ull<<5)
#define IB_PR_COMPMASK_RAWTRAFIC (1ull<<6)
#define IB_PR_COMPMASK_RESV0 (1ull<<7)
#define IB_PR_COMPMASK_FLOWLABEL (1ull<<8)
#define IB_PR_COMPMASK_HOPLIMIT (1ull<<9)
#define IB_PR_COMPMASK_TCLASS (1ull<<10)
#define IB_PR_COMPMASK_REVERSIBLE (1ull<<11)
#define IB_PR_COMPMASK_NUMBPATH (1ull<<12)
#define IB_PR_COMPMASK_PKEY (1ull<<13)
#define IB_PR_COMPMASK_RESV1 (1ull<<14)
#define IB_PR_COMPMASK_SL (1ull<<15)
#define IB_PR_COMPMASK_MTUSELEC (1ull<<16)
#define IB_PR_COMPMASK_MTU (1ull<<17)
#define IB_PR_COMPMASK_RATESELEC (1ull<<18)
#define IB_PR_COMPMASK_RATE (1ull<<19)
#define IB_PR_COMPMASK_PKTLIFETIMESELEC (1ull<<20)
#define IB_PR_COMPMASK_PKTLIFETIME (1ull<<21)
#define IB_PR_COMPMASK_PREFERENCE (1ull<<22)
#define IB_PR_DEF_MASK (IB_PR_COMPMASK_DGID |\
IB_PR_COMPMASK_SGID)
int ib_path_query_via(const struct ibmad_port *srcport, ibmad_gid_t srcgid,
ibmad_gid_t destgid, ib_portid_t * sm_id, void *buf)
{
ib_sa_call_t sa = { 0 };
uint8_t *p;
int dlid;
memset(&sa, 0, sizeof sa);
sa.method = IB_MAD_METHOD_GET;
sa.attrid = IB_SA_ATTR_PATHRECORD;
sa.mask = IB_PR_DEF_MASK;
sa.trid = mad_trid();
memset(buf, 0, IB_SA_PR_RECSZ);
mad_encode_field(buf, IB_SA_PR_DGID_F, destgid);
mad_encode_field(buf, IB_SA_PR_SGID_F, srcgid);
p = sa_rpc_call(srcport, buf, sm_id, &sa, 0);
if (!p) {
IBWARN("sa call path_query failed");
return -1;
}
mad_decode_field(p, IB_SA_PR_DLID_F, &dlid);
return dlid;
}
int ib_path_query(ibmad_gid_t srcgid, ibmad_gid_t destgid, ib_portid_t * sm_id,
void *buf)
{
return ib_path_query_via(ibmp, srcgid, destgid, sm_id, buf);
}
/* NodeRecord */
#define IB_NR_COMPMASK_LID (1ull<<0)
#define IB_NR_COMPMASK_RESERVED1 (1ull<<1)
#define IB_NR_COMPMASK_BASEVERSION (1ull<<2)
#define IB_NR_COMPMASK_CLASSVERSION (1ull<<3)
#define IB_NR_COMPMASK_NODETYPE (1ull<<4)
#define IB_NR_COMPMASK_NUMPORTS (1ull<<5)
#define IB_NR_COMPMASK_SYSIMAGEGUID (1ull<<6)
#define IB_NR_COMPMASK_NODEGUID (1ull<<7)
#define IB_NR_COMPMASK_PORTGUID (1ull<<8)
#define IB_NR_COMPMASK_PARTCAP (1ull<<9)
#define IB_NR_COMPMASK_DEVID (1ull<<10)
#define IB_NR_COMPMASK_REV (1ull<<11)
#define IB_NR_COMPMASK_PORTNUM (1ull<<12)
#define IB_NR_COMPMASK_VENDID (1ull<<13)
#define IB_NR_COMPMASK_NODEDESC (1ull<<14)
#define IB_NR_DEF_MASK IB_NR_COMPMASK_PORTGUID
int ib_node_query_via(const struct ibmad_port *srcport, uint64_t guid,
ib_portid_t * sm_id, void *buf)
{
ib_sa_call_t sa = { 0 };
uint8_t *p;
memset(&sa, 0, sizeof sa);
sa.method = IB_MAD_METHOD_GET;
sa.attrid = IB_SA_ATTR_NODERECORD;
sa.mask = IB_NR_DEF_MASK;
sa.trid = mad_trid();
memset(buf, 0, IB_SA_NR_RECSZ);
mad_encode_field(buf, IB_SA_NR_PORT_GUID_F, &guid);
p = sa_rpc_call(srcport, buf, sm_id, &sa, 0);
if (!p) {
IBWARN("sa call node_query failed");
return -1;
}
return 0;
}
|