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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
|
/*
* Copyright (c) 2006 Voltaire, Inc. All rights reserved.
* Copyright (c) 2002-2005 Mellanox Technologies LTD. All rights reserved.
* Copyright (c) 1996-2003 Intel Corporation. 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:
* Declaration of osmtest_t.
* This object represents the OSMTest Test object.
*
*/
#ifndef _OSMTEST_H_
#define _OSMTEST_H_
#include <complib/cl_qmap.h>
#include <opensm/osm_log.h>
#include <vendor/osm_vendor_api.h>
#include <vendor/osm_vendor_sa_api.h>
#include <opensm/osm_mad_pool.h>
#include <opensm/osm_helper.h>
#include "osmtest_base.h"
#include "osmtest_subnet.h"
enum OSMT_FLOWS {
OSMT_FLOW_ALL = 0,
OSMT_FLOW_CREATE_INVENTORY,
OSMT_FLOW_VALIDATE_INVENTORY,
OSMT_FLOW_SERVICE_REGISTRATION,
OSMT_FLOW_EVENT_FORWARDING,
OSMT_FLOW_STRESS_SA,
OSMT_FLOW_MULTICAST,
OSMT_FLOW_QOS,
OSMT_FLOW_TRAP,
};
/****s* OpenSM: Subnet/osmtest_opt_t
* NAME
* osmtest_opt_t
*
* DESCRIPTION
* Subnet options structure. This structure contains the various
* site specific configuration parameters for osmtest.
*
* SYNOPSIS
*/
typedef struct _osmtest_opt {
uint32_t transaction_timeout;
boolean_t force_log_flush;
boolean_t create;
boolean_t with_grh;
uint32_t retry_count;
uint32_t stress;
uint32_t mmode;
char file_name[OSMTEST_FILE_PATH_MAX];
uint8_t flow;
uint8_t wait_time;
char *log_file;
boolean_t ignore_path_records;
boolean_t full_world_path_recs;
} osmtest_opt_t;
/*
* FIELDS
*
* SEE ALSO
*********/
/****h* OSMTest/OSMTest
* NAME
* OSMTest
*
* DESCRIPTION
* The OSMTest object tests an SM/SA for conformance to a known
* set of data about an Infiniband subnet.
*
* AUTHOR
* Steve King, Intel
*
*********/
/****s* OSMTest/osmtest_t
* NAME
* osmtest_t
*
* DESCRIPTION
* OSMTest structure.
*
* This object should be treated as opaque and should
* be manipulated only through the provided functions.
*
* SYNOPSIS
*/
typedef struct _osmtest {
osm_log_t log;
struct _osm_vendor *p_vendor;
osm_bind_handle_t h_bind;
osm_mad_pool_t mad_pool;
osmtest_opt_t opt;
ib_port_attr_t local_port;
ib_gid_t local_port_gid;
ib_gid_t sm_port_gid;
subnet_t exp_subn;
cl_qpool_t node_pool;
cl_qpool_t port_pool;
cl_qpool_t link_pool;
uint16_t max_lid;
} osmtest_t;
/*
* FIELDS
* log
* Log facility used by all OSMTest components.
*
* p_vendor
* Pointer to the vendor transport layer.
*
* h_bind
* The bind handle obtained by osm_vendor_sa_api/osmv_bind_sa
*
* mad_pool
* The mad pool provided for teh vendor layer to allocate mad wrappers in
*
* opt
* osmtest options structure
*
* local_port
* Port attributes for the port over which osmtest is running.
*
* exp_subn
* Subnet object representing the expected subnet
*
* node_pool
* Pool of objects for use in populating the subnet databases.
*
* port_pool
* Pool of objects for use in populating the subnet databases.
*
* link_pool
* Pool of objects for use in populating the subnet databases.
*
* SEE ALSO
*********/
/****s* OpenSM: Subnet/osmtest_req_context_t
* NAME
* osmtest_req_context_t
*
* DESCRIPTION
* Query context for ib_query callback function.
*
* SYNOPSIS
*/
typedef struct _osmtest_req_context {
osmtest_t *p_osmt;
osmv_query_res_t result;
} osmtest_req_context_t;
typedef struct _osmtest_mgrp_t {
cl_map_item_t map_item;
ib_member_rec_t mcmember_rec;
} osmtest_mgrp_t;
/*
* FIELDS
*
* SEE ALSO
*********/
/****f* OSMTest/osmtest_construct
* NAME
* osmtest_construct
*
* DESCRIPTION
* This function constructs an OSMTest object.
*
* SYNOPSIS
*/
void osmtest_construct(IN osmtest_t * const p_osmt);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to a OSMTest object to construct.
*
* RETURN VALUE
* This function does not return a value.
*
* NOTES
* Allows calling osmtest_init, osmtest_destroy.
*
* Calling osmtest_construct is a prerequisite to calling any other
* method except osmtest_init.
*
* SEE ALSO
* SM object, osmtest_init, osmtest_destroy
*********/
/****f* OSMTest/osmtest_destroy
* NAME
* osmtest_destroy
*
* DESCRIPTION
* The osmtest_destroy function destroys an osmtest object, releasing
* all resources.
*
* SYNOPSIS
*/
void osmtest_destroy(IN osmtest_t * const p_osmt);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to a OSMTest object to destroy.
*
* RETURN VALUE
* This function does not return a value.
*
* NOTES
* Performs any necessary cleanup of the specified OSMTest object.
* Further operations should not be attempted on the destroyed object.
* This function should only be called after a call to osmtest_construct or
* osmtest_init.
*
* SEE ALSO
* SM object, osmtest_construct, osmtest_init
*********/
/****f* OSMTest/osmtest_init
* NAME
* osmtest_init
*
* DESCRIPTION
* The osmtest_init function initializes a OSMTest object for use.
*
* SYNOPSIS
*/
ib_api_status_t osmtest_init(IN osmtest_t * const p_osmt,
IN const osmtest_opt_t * const p_opt,
IN const osm_log_level_t log_flags);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to an osmtest_t object to initialize.
*
* p_opt
* [in] Pointer to the options structure.
*
* log_flags
* [in] Log level flags to set.
*
* RETURN VALUES
* IB_SUCCESS if the OSMTest object was initialized successfully.
*
* NOTES
* Allows calling other OSMTest methods.
*
* SEE ALSO
* SM object, osmtest_construct, osmtest_destroy
*********/
/****f* OSMTest/osmtest_run
* NAME
* osmtest_run
*
* DESCRIPTION
* Runs the osmtest suite.
*
* SYNOPSIS
*/
ib_api_status_t osmtest_run(IN osmtest_t * const p_osmt);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to an osmtest_t object.
*
* guid
* [in] Port GUID over which to run the test suite.
*
* RETURN VALUES
* IB_SUCCESS
*
* NOTES
*
* SEE ALSO
*********/
/****f* OSMTest/osmtest_bind
* NAME
* osmtest_bind
*
* DESCRIPTION
* Binds osmtest to a local port.
*
* SYNOPSIS
*/
ib_api_status_t osmtest_bind(IN osmtest_t * p_osmt,
IN uint16_t max_lid, IN ib_net64_t guid OPTIONAL);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to an osmtest_t object.
*
* max_lid
* [in] The maximal lid to query about (if RMPP is not supported)
*
* guid
* [in] Port GUID over which to run the test suite.
* If zero, the bind function will display a menu of local
* port guids and wait for user input.
*
* RETURN VALUES
* IB_SUCCESS
*
* NOTES
*
* SEE ALSO
*********/
/****f* OSMTest/osmtest_query_res_cb
* NAME
* osmtest_query_res_cb
*
* DESCRIPTION
* A Callback for the query to invoke on completion
*
* SYNOPSIS
*/
void osmtest_query_res_cb(IN osmv_query_res_t * p_rec);
/*
* PARAMETERS
* p_rec
* [in] Pointer to an ib_query_rec_t object used for the query.
*
* RETURN VALUES
* NONE
*
* NOTES
*
* SEE ALSO
*********/
/****f* OSMTest/ib_get_mad_status_str
* NAME
* ib_get_mad_status_str
*
* DESCRIPTION
* return the string representing the given mad status
*
* SYNOPSIS
*/
const char *ib_get_mad_status_str(IN const ib_mad_t * const p_mad);
/*
* PARAMETERS
* p_mad
* [in] Pointer to the mad payload
*
* RETURN VALUES
* NONE
*
* NOTES
*
* SEE ALSO
*********/
/****f* OSMTest/osmt_run_service_records_flow
* NAME
* osmt_run_service_records_flow
*
* DESCRIPTION
* Run the service record testing flow.
*
* SYNOPSIS
*/
ib_api_status_t osmt_run_service_records_flow(IN osmtest_t * const p_osmt);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to the osmtest obj
*
* RETURN VALUES
* IB_SUCCESS if PASS
*
* NOTES
*
* SEE ALSO
*********/
ib_api_status_t osmt_run_inform_info_flow(IN osmtest_t * const p_osmt);
/****f* OSMTest/osmt_run_slvl_and_vlarb_records_flow
* NAME
* osmt_run_slvl_and_vlarb_records_flow
*
* DESCRIPTION
* Run the sl2vl and vlarb tables testing flow.
*
* SYNOPSIS
*/
ib_api_status_t
osmt_run_slvl_and_vlarb_records_flow(IN osmtest_t * const p_osmt);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to the osmtest obj
*
* RETURN VALUES
* IB_SUCCESS if PASS
*
* NOTES
*
* SEE ALSO
*********/
/****f* OSMTest/osmt_run_mcast_flow
* NAME
* osmt_run_mcast_flow
*
* DESCRIPTION
* Run the multicast test flow
*
* SYNOPSIS
*/
ib_api_status_t osmt_run_mcast_flow(IN osmtest_t * const p_osmt);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to the osmtest obj
*
* RETURN VALUES
* IB_SUCCESS if PASS
*
* NOTES
*
* SEE ALSO
*********/
/****f* OSMTest/osmt_run_trap64_65_flow
* NAME
* osmt_run_trap64_65_flow
*
* DESCRIPTION
* Run the trap 64/65 test flow. This test is ran with
* an outside tool.
*
* SYNOPSIS
*/
ib_api_status_t osmt_run_trap64_65_flow(IN osmtest_t * const p_osmt);
/*
* PARAMETERS
* p_osmt
* [in] Pointer to the osmtest obj
*
* RETURN VALUES
* IB_SUCCESS if PASS
*
* NOTES
*
* SEE ALSO
*********/
ib_api_status_t
osmtest_get_all_recs(IN osmtest_t * const p_osmt,
IN ib_net16_t const attr_id,
IN size_t const attr_size,
IN OUT osmtest_req_context_t * const p_context);
ib_api_status_t
osmtest_get_local_port_lmc(IN osmtest_t * const p_osmt,
IN ib_net16_t lid, OUT uint8_t * const p_lmc);
/*
* A few auxiliary macros for logging
*/
#define EXPECTING_ERRORS_START "[[ ===== Expecting Errors - START ===== "
#define EXPECTING_ERRORS_END " ===== Expecting Errors - END ===== ]]"
#endif /* _OSMTEST_H_ */
|