1 /* 2 * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved. 3 * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved. 4 * 5 * This software is available to you under a choice of one of two 6 * licenses. You may choose to be licensed under the terms of the GNU 7 * General Public License (GPL) Version 2, available from the file 8 * COPYING in the main directory of this source tree, or the 9 * OpenIB.org BSD license below: 10 * 11 * Redistribution and use in source and binary forms, with or 12 * without modification, are permitted provided that the following 13 * conditions are met: 14 * 15 * - Redistributions of source code must retain the above 16 * copyright notice, this list of conditions and the following 17 * disclaimer. 18 * 19 * - Redistributions in binary form must reproduce the above 20 * copyright notice, this list of conditions and the following 21 * disclaimer in the documentation and/or other materials 22 * provided with the distribution. 23 * 24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 31 * SOFTWARE. 32 */ 33 34 #include "rxe.h" 35 #include "rxe_loc.h" 36 37 void rxe_init_av(struct rdma_ah_attr *attr, struct rxe_av *av) 38 { 39 rxe_av_from_attr(rdma_ah_get_port_num(attr), av, attr); 40 rxe_av_fill_ip_info(av, attr); 41 } 42 43 int rxe_av_chk_attr(struct rxe_dev *rxe, struct rdma_ah_attr *attr) 44 { 45 struct rxe_port *port; 46 47 port = &rxe->port; 48 49 if (rdma_ah_get_ah_flags(attr) & IB_AH_GRH) { 50 u8 sgid_index = rdma_ah_read_grh(attr)->sgid_index; 51 52 if (sgid_index > port->attr.gid_tbl_len) { 53 pr_warn("invalid sgid index = %d\n", sgid_index); 54 return -EINVAL; 55 } 56 } 57 58 return 0; 59 } 60 61 void rxe_av_from_attr(u8 port_num, struct rxe_av *av, 62 struct rdma_ah_attr *attr) 63 { 64 const struct ib_global_route *grh = rdma_ah_read_grh(attr); 65 66 memset(av, 0, sizeof(*av)); 67 memcpy(av->grh.dgid.raw, grh->dgid.raw, sizeof(grh->dgid.raw)); 68 av->grh.flow_label = grh->flow_label; 69 av->grh.sgid_index = grh->sgid_index; 70 av->grh.hop_limit = grh->hop_limit; 71 av->grh.traffic_class = grh->traffic_class; 72 av->port_num = port_num; 73 } 74 75 void rxe_av_to_attr(struct rxe_av *av, struct rdma_ah_attr *attr) 76 { 77 struct ib_global_route *grh = rdma_ah_retrieve_grh(attr); 78 79 attr->type = RDMA_AH_ATTR_TYPE_ROCE; 80 81 memcpy(grh->dgid.raw, av->grh.dgid.raw, sizeof(av->grh.dgid.raw)); 82 grh->flow_label = av->grh.flow_label; 83 grh->sgid_index = av->grh.sgid_index; 84 grh->hop_limit = av->grh.hop_limit; 85 grh->traffic_class = av->grh.traffic_class; 86 87 rdma_ah_set_ah_flags(attr, IB_AH_GRH); 88 rdma_ah_set_port_num(attr, av->port_num); 89 } 90 91 void rxe_av_fill_ip_info(struct rxe_av *av, struct rdma_ah_attr *attr) 92 { 93 const struct ib_gid_attr *sgid_attr = attr->grh.sgid_attr; 94 95 rdma_gid2ip((struct sockaddr *)&av->sgid_addr, &sgid_attr->gid); 96 rdma_gid2ip((struct sockaddr *)&av->dgid_addr, 97 &rdma_ah_read_grh(attr)->dgid); 98 av->network_type = rdma_gid_attr_network_type(sgid_attr); 99 } 100 101 struct rxe_av *rxe_get_av(struct rxe_pkt_info *pkt) 102 { 103 if (!pkt || !pkt->qp) 104 return NULL; 105 106 if (qp_type(pkt->qp) == IB_QPT_RC || qp_type(pkt->qp) == IB_QPT_UC) 107 return &pkt->qp->pri_av; 108 109 return (pkt->wqe) ? &pkt->wqe->av : NULL; 110 } 111