Blame opensm/osm_slvl_map_rcv.c

Packit 13e616
/*
Packit 13e616
 * Copyright (c) 2004-2009 Voltaire, Inc. All rights reserved.
Packit 13e616
 * Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
Packit 13e616
 * Copyright (c) 1996-2003 Intel Corporation. All rights reserved.
Packit 13e616
 * Copyright (c) 2009 HNR Consulting. All rights reserved.
Packit 13e616
 *
Packit 13e616
 * This software is available to you under a choice of one of two
Packit 13e616
 * licenses.  You may choose to be licensed under the terms of the GNU
Packit 13e616
 * General Public License (GPL) Version 2, available from the file
Packit 13e616
 * COPYING in the main directory of this source tree, or the
Packit 13e616
 * OpenIB.org BSD license below:
Packit 13e616
 *
Packit 13e616
 *     Redistribution and use in source and binary forms, with or
Packit 13e616
 *     without modification, are permitted provided that the following
Packit 13e616
 *     conditions are met:
Packit 13e616
 *
Packit 13e616
 *      - Redistributions of source code must retain the above
Packit 13e616
 *        copyright notice, this list of conditions and the following
Packit 13e616
 *        disclaimer.
Packit 13e616
 *
Packit 13e616
 *      - Redistributions in binary form must reproduce the above
Packit 13e616
 *        copyright notice, this list of conditions and the following
Packit 13e616
 *        disclaimer in the documentation and/or other materials
Packit 13e616
 *        provided with the distribution.
Packit 13e616
 *
Packit 13e616
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Packit 13e616
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Packit 13e616
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Packit 13e616
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
Packit 13e616
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
Packit 13e616
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
Packit 13e616
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit 13e616
 * SOFTWARE.
Packit 13e616
 *
Packit 13e616
 */
Packit 13e616
Packit 13e616
/*
Packit 13e616
 * Abstract:
Packit 13e616
 *    Implementation of osm_slvl_rcv_t.
Packit 13e616
 * This object represents the SLtoVL Receiver object.
Packit 13e616
 * This object is part of the opensm family of objects.
Packit 13e616
 */
Packit 13e616
Packit 13e616
#if HAVE_CONFIG_H
Packit 13e616
#  include <config.h>
Packit 13e616
#endif				/* HAVE_CONFIG_H */
Packit 13e616
Packit 13e616
#include <string.h>
Packit 13e616
#include <iba/ib_types.h>
Packit 13e616
#include <complib/cl_passivelock.h>
Packit 13e616
#include <complib/cl_debug.h>
Packit 13e616
#include <opensm/osm_file_ids.h>
Packit 13e616
#define FILE_ID OSM_FILE_SLVL_MAP_RCV_C
Packit 13e616
#include <opensm/osm_madw.h>
Packit 13e616
#include <opensm/osm_log.h>
Packit 13e616
#include <opensm/osm_node.h>
Packit 13e616
#include <opensm/osm_subnet.h>
Packit 13e616
#include <opensm/osm_helper.h>
Packit 13e616
#include <opensm/osm_sm.h>
Packit 13e616
Packit 13e616
/*
Packit 13e616
 * WE ONLY RECEIVE GET or SET responses
Packit 13e616
 */
Packit 13e616
void osm_slvl_rcv_process(IN void *context, IN void *p_data)
Packit 13e616
{
Packit 13e616
	osm_sm_t *sm = context;
Packit 13e616
	osm_madw_t *p_madw = p_data;
Packit 13e616
	ib_slvl_table_t *p_slvl_tbl;
Packit 13e616
	ib_smp_t *p_smp;
Packit 13e616
	osm_port_t *p_port;
Packit 13e616
	osm_physp_t *p_physp;
Packit 13e616
	osm_node_t *p_node;
Packit 13e616
	osm_slvl_context_t *p_context;
Packit 13e616
	ib_net64_t port_guid;
Packit 13e616
	ib_net64_t node_guid;
Packit 13e616
	uint32_t attr_mod;
Packit 13e616
	uint8_t startinport, endinport, startoutport, endoutport;
Packit 13e616
	uint8_t in_port, out_port;
Packit 13e616
Packit 13e616
	CL_ASSERT(sm);
Packit 13e616
Packit 13e616
	OSM_LOG_ENTER(sm->p_log);
Packit 13e616
Packit 13e616
	CL_ASSERT(p_madw);
Packit 13e616
Packit 13e616
	p_smp = osm_madw_get_smp_ptr(p_madw);
Packit 13e616
	p_context = osm_madw_get_slvl_context_ptr(p_madw);
Packit 13e616
	p_slvl_tbl = ib_smp_get_payload_ptr(p_smp);
Packit 13e616
Packit 13e616
	port_guid = p_context->port_guid;
Packit 13e616
	node_guid = p_context->node_guid;
Packit 13e616
Packit 13e616
	CL_ASSERT(p_smp->attr_id == IB_MAD_ATTR_SLVL_TABLE);
Packit 13e616
Packit 13e616
	if (!sm->p_subn->opt.suppress_sl2vl_mad_status_errors &&
Packit 13e616
	    ib_smp_get_status(p_smp)) {
Packit 13e616
		OSM_LOG(sm->p_log, OSM_LOG_DEBUG,
Packit 13e616
			"MAD status 0x%x received\n",
Packit 13e616
			cl_ntoh16(ib_smp_get_status(p_smp)));
Packit 13e616
		goto Exit2;
Packit 13e616
	}
Packit 13e616
Packit 13e616
	cl_plock_excl_acquire(sm->p_lock);
Packit 13e616
	p_port = osm_get_port_by_guid(sm->p_subn, port_guid);
Packit 13e616
Packit 13e616
	if (!p_port) {
Packit 13e616
		OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 2C06: "
Packit 13e616
			"No port object for port with GUID 0x%" PRIx64
Packit 13e616
			"\n\t\t\t\tfor parent node GUID 0x%" PRIx64
Packit 13e616
			", TID 0x%" PRIx64 "\n", cl_ntoh64(port_guid),
Packit 13e616
			cl_ntoh64(node_guid), cl_ntoh64(p_smp->trans_id));
Packit 13e616
		goto Exit;
Packit 13e616
	}
Packit 13e616
Packit 13e616
	p_node = p_port->p_node;
Packit 13e616
	CL_ASSERT(p_node);
Packit 13e616
Packit 13e616
	/* in case of a non switch node the attr modifier should be ignored */
Packit 13e616
	if (osm_node_get_type(p_node) == IB_NODE_TYPE_SWITCH) {
Packit 13e616
		unsigned num_ports = osm_node_get_num_physp(p_node) - 1;
Packit 13e616
		attr_mod = cl_ntoh32(p_smp->attr_mod);
Packit 13e616
Packit 13e616
		if (attr_mod & 0x10000) {
Packit 13e616
			startoutport = ib_switch_info_is_enhanced_port0(&p_node->sw->switch_info) ? 0 : 1;
Packit 13e616
			endoutport = osm_node_get_num_physp(p_node) - 1;
Packit 13e616
		} else
Packit 13e616
			startoutport = endoutport = attr_mod & 0xff;
Packit 13e616
Packit 13e616
		if (attr_mod & 0x20000) {
Packit 13e616
			startinport = ib_switch_info_is_enhanced_port0(&p_node->sw->switch_info) ? 0 : 1;
Packit 13e616
			endinport = osm_node_get_num_physp(p_node) - 1;
Packit 13e616
		} else
Packit 13e616
			startinport = endinport = (attr_mod >> 8) & 0xff;
Packit 13e616
Packit 13e616
		if (startinport > num_ports || startoutport > num_ports) {
Packit 13e616
			OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 2C07"
Packit 13e616
				"Invalid attribute modifier 0x%x received in"
Packit 13e616
				" response from switch 0x%" PRIx64 "\n",
Packit 13e616
				cl_ntoh32(attr_mod), cl_ntoh64(node_guid));
Packit 13e616
			goto Exit;
Packit 13e616
		}
Packit 13e616
Packit 13e616
	} else {
Packit 13e616
		startoutport = endoutport = p_port->p_physp->port_num;
Packit 13e616
		startinport = endinport = 0;
Packit 13e616
	}
Packit 13e616
Packit 13e616
	OSM_LOG(sm->p_log, OSM_LOG_DEBUG, "Received SLtoVL GetResp"
Packit 13e616
		" in_port_num %u out_port_num %u with GUID 0x%" PRIx64
Packit 13e616
		" for parent node GUID 0x%" PRIx64 ", TID 0x%" PRIx64 "\n",
Packit 13e616
		startinport == endinport ? startinport : 0xff,
Packit 13e616
		startoutport == endoutport ? startoutport : 0xff,
Packit 13e616
		cl_ntoh64(port_guid), cl_ntoh64(node_guid),
Packit 13e616
		cl_ntoh64(p_smp->trans_id));
Packit 13e616
Packit 13e616
	osm_dump_slvl_map_table_v2(sm->p_log, port_guid,
Packit 13e616
				   startinport == endinport ? startinport : 0xff,
Packit 13e616
				   startoutport == endoutport ? startoutport : 0xff,
Packit 13e616
				   p_slvl_tbl, FILE_ID, OSM_LOG_DEBUG);
Packit 13e616
Packit 13e616
	for (out_port = startoutport; out_port <= endoutport; out_port++) {
Packit 13e616
		p_physp = osm_node_get_physp_ptr(p_node, out_port);
Packit 13e616
		for (in_port = startinport; in_port <= endinport; in_port++)
Packit 13e616
			osm_physp_set_slvl_tbl(p_physp, p_slvl_tbl, in_port);
Packit 13e616
	}
Packit 13e616
Packit 13e616
Exit:
Packit 13e616
	cl_plock_release(sm->p_lock);
Packit 13e616
Packit 13e616
Exit2:
Packit 13e616
	OSM_LOG_EXIT(sm->p_log);
Packit 13e616
}