/* * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved. * Copyright (c) 2002-2010 Mellanox Technologies LTD. All rights reserved. * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. * Copyright (c) 2013 Oracle and/or its affiliates. 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. * */ /* * Abstract: * Implementation of osm_nr_rcv_t. * This object represents the NodeInfo Receiver object. * This object is part of the opensm family of objects. */ #if HAVE_CONFIG_H # include #endif /* HAVE_CONFIG_H */ #include #include #include #include #include #define FILE_ID OSM_FILE_SA_NODE_RECORD_C #include #include #include #include #include #define SA_NR_RESP_SIZE SA_ITEM_RESP_SIZE(node_rec) typedef struct osm_nr_search_ctxt { const ib_node_record_t *p_rcvd_rec; ib_net64_t comp_mask; cl_qlist_t *p_list; osm_sa_t *sa; const osm_physp_t *p_req_physp; } osm_nr_search_ctxt_t; static ib_api_status_t nr_rcv_new_nr(osm_sa_t * sa, IN const osm_node_t * p_node, IN cl_qlist_t * p_list, IN ib_net64_t port_guid, IN ib_net16_t lid, IN unsigned int port_num) { osm_sa_item_t *p_rec_item; ib_api_status_t status = IB_SUCCESS; OSM_LOG_ENTER(sa->p_log); p_rec_item = malloc(SA_NR_RESP_SIZE); if (p_rec_item == NULL) { OSM_LOG(sa->p_log, OSM_LOG_ERROR, "ERR 1D02: " "rec_item alloc failed\n"); status = IB_INSUFFICIENT_RESOURCES; goto Exit; } OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "New NodeRecord: node 0x%016" PRIx64 ", port 0x%016" PRIx64 ", lid %u\n", cl_ntoh64(osm_node_get_node_guid(p_node)), cl_ntoh64(port_guid), cl_ntoh16(lid)); memset(p_rec_item, 0, SA_NR_RESP_SIZE); p_rec_item->resp.node_rec.lid = lid; p_rec_item->resp.node_rec.node_info = p_node->node_info; p_rec_item->resp.node_rec.node_info.port_guid = port_guid; p_rec_item->resp.node_rec.node_info.port_num_vendor_id = (p_rec_item->resp.node_rec.node_info.port_num_vendor_id & IB_NODE_INFO_VEND_ID_MASK) | ((port_num << IB_NODE_INFO_PORT_NUM_SHIFT) & IB_NODE_INFO_PORT_NUM_MASK); memcpy(&(p_rec_item->resp.node_rec.node_desc), &(p_node->node_desc), IB_NODE_DESCRIPTION_SIZE); cl_qlist_insert_tail(p_list, &p_rec_item->list_item); Exit: OSM_LOG_EXIT(sa->p_log); return status; } static void nr_rcv_create_nr(IN osm_sa_t * sa, IN osm_node_t * p_node, IN cl_qlist_t * p_list, IN ib_net64_t const match_port_guid, IN ib_net16_t const match_lid, IN unsigned int const match_port_num, IN const osm_physp_t * p_req_physp, IN const ib_net64_t comp_mask) { const osm_physp_t *p_physp; uint8_t port_num; uint8_t num_ports; uint16_t match_lid_ho; ib_net16_t base_lid; ib_net16_t base_lid_ho; ib_net16_t max_lid_ho; uint8_t lmc; ib_net64_t port_guid; OSM_LOG_ENTER(sa->p_log); OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "Looking for NodeRecord with LID: %u GUID: 0x%016" PRIx64 "\n", cl_ntoh16(match_lid), cl_ntoh64(match_port_guid)); /* For switches, do not return the NodeInfo record for each port on the switch, just for port 0. */ if (osm_node_get_type(p_node) == IB_NODE_TYPE_SWITCH) num_ports = 1; else num_ports = osm_node_get_num_physp(p_node); for (port_num = 0; port_num < num_ports; port_num++) { p_physp = osm_node_get_physp_ptr(p_node, port_num); if (!p_physp) continue; /* Check to see if the found p_physp and the requester physp share a pkey. If not - continue */ if (!osm_physp_share_pkey(sa->p_log, p_physp, p_req_physp, sa->p_subn->opt.allow_both_pkeys)) continue; port_guid = osm_physp_get_port_guid(p_physp); if ((comp_mask & IB_NR_COMPMASK_PORTGUID) && (port_guid != match_port_guid)) continue; base_lid = osm_physp_get_base_lid(p_physp); if (comp_mask & IB_NR_COMPMASK_LID) { base_lid_ho = cl_ntoh16(base_lid); lmc = osm_physp_get_lmc(p_physp); max_lid_ho = (uint16_t) (base_lid_ho + (1 << lmc) - 1); match_lid_ho = cl_ntoh16(match_lid); /* We validate that the lid belongs to this node. */ OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "Comparing LID: %u <= %u <= %u\n", base_lid_ho, match_lid_ho, max_lid_ho); if (match_lid_ho < base_lid_ho || match_lid_ho > max_lid_ho) continue; } if ((comp_mask & IB_NR_COMPMASK_PORTNUM) && (port_num != match_port_num)) continue; nr_rcv_new_nr(sa, p_node, p_list, port_guid, base_lid, port_num); } OSM_LOG_EXIT(sa->p_log); } static void nr_rcv_by_comp_mask(IN cl_map_item_t * p_map_item, IN void *context) { const osm_nr_search_ctxt_t *p_ctxt = context; osm_node_t *p_node = (osm_node_t *) p_map_item; const ib_node_record_t *const p_rcvd_rec = p_ctxt->p_rcvd_rec; const osm_physp_t *const p_req_physp = p_ctxt->p_req_physp; osm_sa_t *sa = p_ctxt->sa; ib_net64_t comp_mask = p_ctxt->comp_mask; ib_net64_t match_port_guid = 0; ib_net16_t match_lid = 0; unsigned int match_port_num = 0; OSM_LOG_ENTER(p_ctxt->sa->p_log); osm_dump_node_info_v2(p_ctxt->sa->p_log, &p_node->node_info, FILE_ID, OSM_LOG_DEBUG); if (comp_mask & IB_NR_COMPMASK_LID) match_lid = p_rcvd_rec->lid; if (comp_mask & IB_NR_COMPMASK_NODEGUID) { OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "Looking for node 0x%016" PRIx64 ", found 0x%016" PRIx64 "\n", cl_ntoh64(p_rcvd_rec->node_info.node_guid), cl_ntoh64(osm_node_get_node_guid(p_node))); if (p_node->node_info.node_guid != p_rcvd_rec->node_info.node_guid) goto Exit; } if (comp_mask & IB_NR_COMPMASK_PORTGUID) match_port_guid = p_rcvd_rec->node_info.port_guid; if ((comp_mask & IB_NR_COMPMASK_SYSIMAGEGUID) && p_node->node_info.sys_guid != p_rcvd_rec->node_info.sys_guid) goto Exit; if ((comp_mask & IB_NR_COMPMASK_BASEVERSION) && p_node->node_info.base_version != p_rcvd_rec->node_info.base_version) goto Exit; if ((comp_mask & IB_NR_COMPMASK_CLASSVERSION) && p_node->node_info.class_version != p_rcvd_rec->node_info.class_version) goto Exit; if ((comp_mask & IB_NR_COMPMASK_NODETYPE) && p_node->node_info.node_type != p_rcvd_rec->node_info.node_type) goto Exit; if ((comp_mask & IB_NR_COMPMASK_NUMPORTS) && p_node->node_info.num_ports != p_rcvd_rec->node_info.num_ports) goto Exit; if ((comp_mask & IB_NR_COMPMASK_PARTCAP) && p_node->node_info.partition_cap != p_rcvd_rec->node_info.partition_cap) goto Exit; if ((comp_mask & IB_NR_COMPMASK_DEVID) && p_node->node_info.device_id != p_rcvd_rec->node_info.device_id) goto Exit; if ((comp_mask & IB_NR_COMPMASK_REV) && p_node->node_info.revision != p_rcvd_rec->node_info.revision) goto Exit; if (comp_mask & IB_NR_COMPMASK_PORTNUM) match_port_num = ib_node_info_get_local_port_num(&p_rcvd_rec->node_info); if ((comp_mask & IB_NR_COMPMASK_VENDID) && ib_node_info_get_vendor_id(&p_node->node_info) != ib_node_info_get_vendor_id(&p_rcvd_rec->node_info)) goto Exit; if ((comp_mask & IB_NR_COMPMASK_NODEDESC) && strncmp((char *)&p_node->node_desc, (char *)&p_rcvd_rec->node_desc, sizeof(ib_node_desc_t))) goto Exit; nr_rcv_create_nr(sa, p_node, p_ctxt->p_list, match_port_guid, match_lid, match_port_num, p_req_physp, comp_mask); Exit: OSM_LOG_EXIT(p_ctxt->sa->p_log); } void osm_nr_rcv_process(IN void *ctx, IN void *data) { osm_sa_t *sa = ctx; osm_madw_t *p_madw = data; const ib_sa_mad_t *p_rcvd_mad; const ib_node_record_t *p_rcvd_rec; cl_qlist_t rec_list; osm_nr_search_ctxt_t context; osm_physp_t *p_req_physp; CL_ASSERT(sa); OSM_LOG_ENTER(sa->p_log); CL_ASSERT(p_madw); p_rcvd_mad = osm_madw_get_sa_mad_ptr(p_madw); p_rcvd_rec = (ib_node_record_t *) ib_sa_mad_get_payload_ptr(p_rcvd_mad); CL_ASSERT(p_rcvd_mad->attr_id == IB_MAD_ATTR_NODE_RECORD); /* we only support SubnAdmGet and SubnAdmGetTable methods */ if (p_rcvd_mad->method != IB_MAD_METHOD_GET && p_rcvd_mad->method != IB_MAD_METHOD_GETTABLE) { OSM_LOG(sa->p_log, OSM_LOG_ERROR, "ERR 1D05: " "Unsupported Method (%s) for NodeRecord request\n", ib_get_sa_method_str(p_rcvd_mad->method)); osm_sa_send_error(sa, p_madw, IB_MAD_STATUS_UNSUP_METHOD_ATTR); goto Exit; } cl_plock_acquire(sa->p_lock); /* update the requester physical port */ p_req_physp = osm_get_physp_by_mad_addr(sa->p_log, sa->p_subn, osm_madw_get_mad_addr_ptr (p_madw)); if (p_req_physp == NULL) { cl_plock_release(sa->p_lock); OSM_LOG(sa->p_log, OSM_LOG_ERROR, "ERR 1D04: " "Cannot find requester physical port\n"); goto Exit; } if (OSM_LOG_IS_ACTIVE_V2(sa->p_log, OSM_LOG_DEBUG)) { OSM_LOG(sa->p_log, OSM_LOG_DEBUG, "Requester port GUID 0x%" PRIx64 "\n", cl_ntoh64(osm_physp_get_port_guid(p_req_physp))); osm_dump_node_record_v2(sa->p_log, p_rcvd_rec, FILE_ID, OSM_LOG_DEBUG); } cl_qlist_init(&rec_list); context.p_rcvd_rec = p_rcvd_rec; context.p_list = &rec_list; context.comp_mask = p_rcvd_mad->comp_mask; context.sa = sa; context.p_req_physp = p_req_physp; cl_qmap_apply_func(&sa->p_subn->node_guid_tbl, nr_rcv_by_comp_mask, &context); cl_plock_release(sa->p_lock); osm_sa_respond(sa, p_madw, sizeof(ib_node_record_t), &rec_list); Exit: OSM_LOG_EXIT(sa->p_log); }