Codebase list ibutils / 3d52392e-ccfe-47b8-b543-77c953eee22e/main ibmgtsim / src / node.cpp
3d52392e-ccfe-47b8-b543-77c953eee22e/main

Tree @3d52392e-ccfe-47b8-b543-77c953eee22e/main (Download .tar.gz)

node.cpp @3d52392e-ccfe-47b8-b543-77c953eee22e/mainraw · history · blame

  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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
/*
 * Copyright (c) 2004-2010 Mellanox Technologies LTD. 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.
 *
 */

/****h* IBMS/Node
 * NAME
 * IB Management Simulator Node object and accompany Mad Processor
 *
 * DESCRIPTION
 * The simulator routes mad messages to the target node. This node
 *  stores the device state (PM Counters, CR Space, etc). Pure virtual
 *  MadProcessor class is provided to define the interface of mad processors.
 *
 * AUTHOR
 * Eitan Zahavi, Mellanox
 *
 *********/

#include "msgmgr.h"
#include "node.h"
#include "sim.h"
#include "randmgr.h"


/****************************************************/
/************ class IBMSPortErrProfile **************/
/****************************************************/
/*
 * This class holds the variables defining statistical
 * behavior of the port counters
 */

/* checks if needs to drop current packet - also increases
     the packet count */
boolean_t
IBMSPortErrProfile::isDropped()
{
    /* do we need to change our previous decision */
    if ((--numPacketToNextChange) == 0) {
        /*
          We use the packetDropRateVar as a measure to filter out changes in the
          pass/fail decision. This is useful to sustain a failure over the
          several retries of the packet send
         */

        float d = RandMgr()->random();
        /* note a value of 1 means change on next packet */
        numPacketToNextChange = (unsigned int)(2.0 * d * packetDropRateVar + 1);

        /* take a new decision */
        float r = RandMgr()->random();
        if (r < packetDropRate)
            drop = TRUE;
        else
            drop = FALSE;
    }
    return drop;
}


/****************************************************/
/************* class IBMSMadProcessor ***************/
/****************************************************/
/*
 * Mad processor class is a pure virtual class that
 * supports handling of mads of specific class
 */

/* add a single mad processor to a node */
void
IBMSMadProcessor::addProcToNode(uint16_t mgtClass)
{
    MSGREG(inf1, 'V', "Registered mad processor of class:$ on node:$", "server");

    /* we cannot simply push in the new mad processor */
    /* need to make sure the vector has this entry */
    if (pSimNode->madProccessors.size() <= mgtClass)
        pSimNode->madProccessors.resize(mgtClass+1);

    (pSimNode->madProccessors[mgtClass]).push_back(this);
    MSGSND(inf1, mgtClass, pSimNode->getIBNode()->name);
}


/* constructor handles the registration of the new processor */
IBMSMadProcessor::IBMSMadProcessor(class IBMSNode *pSNode,
        list_uint16 &mgtClassesList,
        boolean_t preLocked)
{
    /* we need to have a lock here */
    pSimNode = pSNode;
    mgtClasses = mgtClassesList;

    if (preLocked == FALSE)
        pthread_mutex_lock(&pSimNode->lock);

    for (list_uint16::iterator lI = mgtClasses.begin();
            lI != mgtClasses.end(); ++lI)
        addProcToNode(*lI);

    if (preLocked == FALSE)
        pthread_mutex_unlock(&pSimNode->lock);
}


/* single class constructor */
IBMSMadProcessor::IBMSMadProcessor(class IBMSNode *pSNode,
        uint16_t mgtClass,
        boolean_t preLocked)
{
    /* we need to have a lock here */
    pSimNode = pSNode;
    mgtClasses.push_back(mgtClass);

    if (preLocked == FALSE)
        pthread_mutex_lock(&pSimNode->lock);

    addProcToNode(mgtClass);

    if (preLocked == FALSE)
        pthread_mutex_unlock(&pSimNode->lock);
}


/* destructor must clean from node list */
IBMSMadProcessor::~IBMSMadProcessor()
{
    MSGREG(err1, 'E', "Could not find the processor management class:$ in its node list?", "server");
    MSGREG(err2, 'E', "Could not find the processor in its node list?", "server");
    MSGREG(inf1, 'V', "Removed mad processor of class:$ from its node", "server");

    /* need to lock the node - otherwise can race against mads ... */
    pthread_mutex_lock(&pSimNode->lock);

    for (list_uint16::iterator lI = mgtClasses.begin();
            lI != mgtClasses.end(); ++lI) {
        uint16_t mgtClass = *lI;
        /* the class must have an entry */
        if (pSimNode->madProccessors.size() <= mgtClass) {
            MSGSND(err1, mgtClass);
        } else {
            list_mad_processor::iterator lI =
                    find(pSimNode->madProccessors[mgtClass].begin(),
                            pSimNode->madProccessors[mgtClass].end(), this);
            if (lI == pSimNode->madProccessors[mgtClass].end()) {
                MSGSND(err2);
            } else {
                pSimNode->madProccessors[mgtClass].erase(lI);
                MSGSND(inf1, mgtClass);
            }
        }
    }
    pthread_mutex_unlock(&pSimNode->lock);
}


/****************************************************/
/***************** class IBMSNode *******************/
/****************************************************/
/*
 * Every IB node have this simulator node attached
 */

/* constructor */
IBMSNode::IBMSNode(class IBMgtSim *pS, class IBNode *pN)
{
    pSim = pS;
    pNode = pN;

    /* initialize the node lock */
    pthread_mutex_init(&lock, NULL);

    /* initialize all port counters */
    ib_pm_counters_t zeroCounters;
    memset(&zeroCounters, 0, sizeof(ib_pm_counters_t));

    phyPortCounters.insert(phyPortCounters.begin(),
            pNode->numPorts+1, zeroCounters);

    /* initialize default error statistics (constructed with zeros) */
    for (unsigned int pn = 0; pn <= pNode->numPorts; pn++) {
        IBMSPortErrProfile errosProfile;
        phyPortErrProfiles.push_back(errosProfile);
    }
}


/* handle incoming mad by sending it to the processMad of every
       IBMSMadProcessor on the node. */
int IBMSNode::processMad(uint8_t inPort, ibms_mad_msg_t &madMsg)
{
    /* get the registered IBMSMadProcessor's of this class */
    uint8_t mgtClass = madMsg.header.mgmt_class;
    uint8_t method = madMsg.header.method;
    uint16_t attributeId = cl_ntoh16(madMsg.header.attr_id);

    MSGREG(err1, 'E', "No processor registered for class:$", "simnode");
    MSGREG(inf1, 'V', "processing mad mgtClass $ attrId $ method $", "simnode");
    MSGSND(inf1, mgtClass ,attributeId ,method);

    if (madProccessors.size() <= mgtClass) {
        MSGSND(err1, mgtClass);
        return 1;
    }

    if (madProccessors[mgtClass].empty()) {
        MSGSND(err1, mgtClass);
        return 1;
    }

    pthread_mutex_lock(&lock);

    /* OK we got some processors - so call them */
    for (list_mad_processor::iterator lI = madProccessors[mgtClass].begin();
            lI != madProccessors[mgtClass].end();
            ++lI) {
        (*lI)->processMad(inPort, madMsg);
    }
    pthread_mutex_unlock(&lock);

    return 0;
}


/* set a particular port err profile */
int IBMSNode::setPhyPortErrProfile(uint8_t portNum,
        IBMSPortErrProfile &errProfile)
{
    if (portNum > pNode->numPorts)
        return 1;

    if (phyPortErrProfiles.size() <= portNum)
        for (unsigned int pn = phyPortErrProfiles.size();
                pn <= portNum;
                ++pn) {
            IBMSPortErrProfile newProfile;
            phyPortErrProfiles.push_back(newProfile);
        }

    phyPortErrProfiles[portNum] = errProfile;
    return 0;
}


/* get a particular port err profile */
int IBMSNode::getPhyPortErrProfile(uint8_t portNum,
        IBMSPortErrProfile &errProfile)
{
    if (portNum > pNode->numPorts)
        return 1;

    errProfile = phyPortErrProfiles[portNum];
    return 0;
}


/* set a specific port counter */
int IBMSNode::setPhyPortPMCounter(uint8_t portNum,
        uint32_t counterSelect, ib_pm_counters_t &countersVal)
{
    if (portNum > pNode->numPorts)
        return 1;

    phyPortCounters[portNum] = countersVal;
    return 0;
}


/* get a specific port counter */
ib_pm_counters_t*
IBMSNode::getPhyPortPMCounter(uint8_t portNum,
        uint32_t counterSelect)
{
  if (portNum > pNode->numPorts)
      return 0;

  return &(phyPortCounters[portNum]);
}


/* Read CrSpace Address */
int IBMSNode::getCrSpace(uint32_t startAddr, uint32_t length, uint32_t data[])
{
    MSG_ENTER_FUNC;
    uint32_t curAddr = startAddr;
    int res =0;
    MSGREG(inf0, 'V', "reading CrSpace from address $ length $ ", "ReadAddr");
    MSGSND(inf0,startAddr,length);
    for (uint32_t i=0;i<length;i++) {
        curAddr = curAddr + i*4;
        map < uint32_t , uint32_t,less < uint32_t > >::iterator  mapIter;
        mapIter = crSpace.find(curAddr);
        if (mapIter == crSpace.end()) {
            MSGREG(err0, 'E', "Can't find address $ in CrSpace ", "ReadAddr");
            MSGSND(err0,curAddr);
            res = 1;
        } else {
            data[i] = (crSpace[curAddr]);
            MSGREG(inf1, 'V', "reading CrSpace address $ got data - $ ", "ReadAddr");
            MSGSND(inf1,curAddr,data[i]);
        }
    }
    MSG_EXIT_FUNC;
    return res;
}


/* Write CrSpace Address */
int IBMSNode::setCrSpace(uint32_t startAddr, uint32_t length, uint32_t data[])
{
    MSG_ENTER_FUNC;
    int res =0;
    int curAddr = startAddr;
    MSGREG(inf0, 'V', "writing to CrSpace to address $ length $ ", "WriteAddr");
    MSGSND(inf0,startAddr,length);
    map < uint32_t , uint32_t,less < uint32_t > >::iterator mapIter;
    for (uint32_t i=0;i<length;i++) {
        curAddr = curAddr + i*4;
        mapIter = crSpace.find(curAddr);
        if (mapIter == crSpace.end()) {
            MSGREG(err0, 'E', "Can't find address $ in CrSpace ", "WriteAddr");
            MSGSND(err0,curAddr);
            res =1;
        }
        crSpace[curAddr] = data[i];
        MSGREG(inf1, 'V', "writing to CrSpace address $ data - $ ", "WriteAddr");
        MSGSND(inf1,curAddr,data[i]);
    }
    MSG_EXIT_FUNC;
    return res;
}


/* get MFT block */
int IBMSNode::getMFTBlock(uint16_t blockIdx, uint8_t portIdx, ib_mft_table_t *outMftBlock)
{
    MSG_ENTER_FUNC;
    int res = 1;
    MSGREG(inf0, 'V', "getting MFT block: blockIdx $ portIdx $ ", "node");
    MSGSND(inf0, blockIdx, portIdx);
    if ((switchMftPortsEntry.size() > portIdx) &&
            (switchMftPortsEntry[portIdx].size() > blockIdx)) {
        if (outMftBlock)
            memcpy(outMftBlock, &(switchMftPortsEntry[portIdx][blockIdx]), sizeof(ib_mft_table_t));
        res = 0;
    } else {
        if (outMftBlock)
            memset(outMftBlock, 0, sizeof(ib_mft_table_t));
        res = 0;
    }
    MSG_EXIT_FUNC;
    return res;
}


/* set MFT block */
int IBMSNode::setMFTBlock(uint16_t blockIdx, uint8_t portIdx, ib_mft_table_t *inMftBlock)
{
    MSG_ENTER_FUNC;
    int res = 1;
    MSGREG(inf0, 'V', "setting MFT block: blockIdx $ portIdx $ ", "node");
    MSGSND(inf0, blockIdx, portIdx);
    if ( (switchMftPortsEntry.size() > portIdx) &&
            (switchMftPortsEntry[portIdx].size() > blockIdx)) {
        if (inMftBlock)
            memcpy(&(switchMftPortsEntry[portIdx][blockIdx]), inMftBlock, sizeof(ib_mft_table_t));
        res = 0;
    }
    MSG_EXIT_FUNC;
    return res;
}


static void ib_net16_inc(ib_net16_t *pVal, unsigned int add = 1)
{
    *pVal = cl_hton16( cl_ntoh16(*pVal) + add);
}


static void ib_net32_inc(ib_net32_t *pVal, unsigned int add = 1)
{
  *pVal = cl_hton32( cl_ntoh32(*pVal) + add);
}


/*
    Get remote node by given port number.
    Handle both HCA and SW.

    Return either 0 if step could be made or 1 if failed.

    Updated both output pointers:
    remNode - to the Sim Node of the other side
    remIBPort - to the remote side IB Fabric Port object on the other side.
    isVl15 - if > 0 - requires the port state to be init otherwise active
*/
int IBMSNode::getRemoteNodeByOutPort(uint8_t outPortNum,
        IBMSNode **ppRemNode,
        IBPort **ppRemIBPort,
        int isVl15)
{
    MSGREG(inf1, 'V', "No Remote connection on node:$ port:$", "node");
    MSGREG(inf2, 'V', "Link is not ACTIVE on node:$ port:$ it is:$", "node");
    MSGREG(inf3, 'I', "MAD is dropped on node:$ port:$", "node");

    if (ppRemNode)
        *ppRemNode = NULL;
    if (ppRemIBPort)
        *ppRemIBPort = NULL;

    /* obtain the node lock */
    pthread_mutex_lock(&lock);

    /* get the other side on IBNode ... */
    IBPort *pPort = pNode->getPort(outPortNum);
    if (! pPort || !pPort->p_remotePort) {
        MSGSND(inf1, pNode->name, outPortNum);
        pthread_mutex_unlock(&lock);
        return 1;
    }

    /* OK we can update the returned variables */
    if (ppRemIBPort != NULL)
        *ppRemIBPort = pPort->p_remotePort;

    /* get the remote node if any */
    IBNode *pRemIBNode = NULL;
    IBMSNode *pRemSimNode = NULL;
    if (pPort->p_remotePort) {
        pRemIBNode = pPort->p_remotePort->p_node;
        pRemSimNode = ibmsGetIBNodeSimNode(pRemIBNode);
    }

    if (ppRemNode != NULL)
        *ppRemNode = pRemSimNode;

    /* is the port active */
    int linkStatus = getLinkStatus(outPortNum);

    if (!((isVl15 && (linkStatus > IB_LINK_DOWN)) || (linkStatus == IB_LINK_ACTIVE))) {
        MSGSND(inf2, pNode->name, outPortNum, linkStatus);
        pthread_mutex_unlock(&lock);
        return 1;
    }

    /* do we want to drop this mad ? */
    if (phyPortErrProfiles[outPortNum].isDropped()) {
        // TODO: double check the register and also randomly
        // increase the remote node rcv dropped.
        // Update port counters of dropped mad.
        ib_net16_inc(&(phyPortCounters[outPortNum].port_xmit_discard));

        ib_net16_inc(
                &(pRemSimNode->phyPortCounters[pPort->p_remotePort->num].port_rcv_errors));
        ib_net16_inc(
                &(pRemSimNode->phyPortCounters[pPort->p_remotePort->num].port_rcv_remote_physical_errors));

        MSGSND(inf3, pNode->name, outPortNum);
        pthread_mutex_unlock(&lock);
        return 1;
    }

    // Update port counters of sent mad and received mads
    ib_net32_inc(&(phyPortCounters[outPortNum].port_xmit_pkts));
    ib_net32_inc(&(phyPortCounters[outPortNum].port_xmit_data), 256);
    ib_net32_inc(&(pRemSimNode->phyPortCounters[pPort->p_remotePort->num].port_rcv_pkts));
    ib_net32_inc(&(pRemSimNode->phyPortCounters[pPort->p_remotePort->num].port_rcv_data),256);

    /* release the lock */
    pthread_mutex_unlock(&lock);

    return 0;
}


/* Set port state */
int IBMSNode::setLinkStatus(uint8_t portNum,
        uint8_t newState)
{
    uint8_t                 oldState;
    ibms_mad_msg_t          trapMadMsg;
    ib_smp_t*               pTrapSmp = (ib_smp_t*)&(trapMadMsg.header);
    ib_mad_notice_attr_t*   pTrapMadData =
            (ib_mad_notice_attr_t*)&(pTrapSmp->data[0]);
    ib_pm_counters_t*       pPortCounters;
    uint32_t                counterSelect;
    static uint64_t tid = 19927;

    if (nodeInfo.num_ports < portNum) {
        return IB_LINK_NO_CHANGE;
    }

    oldState = ib_port_info_get_port_state( &nodePortsInfo[portNum]);

    if ((oldState == IB_LINK_INIT) &&
            ((newState != IB_LINK_DOWN) && (newState != IB_LINK_ARMED))) {
        return IB_LINK_NO_CHANGE;
    } else if ((oldState == IB_LINK_ARMED) &&
            ((newState != IB_LINK_DOWN) && (newState != IB_LINK_ACTIVE))) {
        return IB_LINK_NO_CHANGE;
    } else if ((oldState == IB_LINK_ACTIVE) &&
            ((newState != IB_LINK_DOWN) && (newState != IB_LINK_ARMED))) {
        return IB_LINK_NO_CHANGE;
    }

    //after checks are done:
    //  1. change portInfo link state - Node DB
    ib_port_info_set_port_state( &nodePortsInfo[portNum], newState);
    //  2. change link counters of the port
    //          0x2=LinkErrorRecoveryCounter;
    //          0x4=LinkDownCounter
    counterSelect = 0x2 | 0x4;
    pPortCounters = getPhyPortPMCounter(portNum, counterSelect);
    pPortCounters->link_error_recovery_counter++;
    pPortCounters->link_down_counter++;
    setPhyPortPMCounter(portNum, counterSelect, *pPortCounters);

    if (nodeInfo.node_type == IB_NODE_TYPE_CA) {
        return newState;
    }

    /* In case of a switch */
    if ((newState == IB_LINK_DOWN && (oldState == IB_LINK_INIT || oldState == IB_LINK_ARMED || oldState == IB_LINK_ACTIVE)) ||
            (oldState == IB_LINK_DOWN && (newState == IB_LINK_INIT || newState == IB_LINK_ARMED || newState == IB_LINK_ACTIVE))) {
        //  3. if node is a switch update the portStateChange
        ib_switch_info_set_state_change(&switchInfo);
        //  4. if node is a switch send a trap
        ib_mad_init_new( (ib_mad_t*)&(trapMadMsg.header),
                IB_MCLASS_SUBN_LID,
                1,
                IB_MAD_METHOD_TRAP,
                0x12345678,
                IB_MAD_ATTR_NOTICE,
                0);

        // TODO add support to other traps then 128 (only supported for now)
        {
            uint32_t prodType;

            prodType = (IB_NOTICE_TYPE_URGENT | (IB_NODE_TYPE_SWITCH << 8));
            ib_notice_set_prod_type( pTrapMadData, cl_ntoh32(prodType));
        }

        pTrapMadData->generic_type = 0x81;
        pTrapMadData->g_or_v.generic.trap_num = CL_NTOH16(128);
        pTrapMadData->issuer_lid = cl_ntoh16(nodePortsInfo[0].base_lid);
        pTrapMadData->toggle_count = 0;
        pTrapMadData->data_details.ntc_128.sw_lid =
                cl_ntoh16(nodePortsInfo[0].base_lid);

        trapMadMsg.addr.sl = 15;
        trapMadMsg.addr.pkey_index = 0;
        trapMadMsg.addr.slid = cl_ntoh16(nodePortsInfo[0].base_lid);
        trapMadMsg.addr.dlid = cl_ntoh16(nodePortsInfo[0].master_sm_base_lid);
        trapMadMsg.addr.sqpn = 0;
        trapMadMsg.addr.dqpn = 0;

        /* initialize the mad header */
        trapMadMsg.header.base_ver = 1;
        trapMadMsg.header.mgmt_class = IB_MCLASS_SUBN_LID;
        trapMadMsg.header.class_ver = 1;
        trapMadMsg.header.method = IB_MAD_METHOD_TRAP;
        trapMadMsg.header.status = 0;
        trapMadMsg.header.class_spec = 0;
        trapMadMsg.header.trans_id = tid++;
        trapMadMsg.header.attr_id = IB_MAD_ATTR_NOTICE;
        trapMadMsg.header.attr_mod = cl_hton32(0);

        pSim->getDispatcher()->dispatchMad(this, 0, trapMadMsg);
    }
    return newState;
}


/* Get remote node by lid. Handle both HCA and SW */
int IBMSNode::getRemoteNodeByLid(uint16_t lid,
        IBMSNode **ppRemNode,
        IBPort **ppRemIBPort,
        int isVl15)
{
    uint8_t portNum;
    MSGREG(inf1, 'V', "No FDB Entry for lid:$ node:$", "node");

    /* obtain the node lock */
    pthread_mutex_lock(&lock);

    /* just look at the FDB for that lid */
    portNum = pNode->getLFTPortForLid(lid);
    if (portNum == IB_LFT_UNASSIGNED) {
        MSGSND(inf1, lid, pNode->name);
        pthread_mutex_unlock(&lock);
        return 1;
    }

    /* release the node lock */
    pthread_mutex_unlock(&lock);

    /* if the port number is 0 - we stay on this node */
    if (portNum == 0) {
        *ppRemNode = this;
        *ppRemIBPort = pNode->getPort(0);
        return 0;
    } else {
        return getRemoteNodeByOutPort(portNum, ppRemNode , ppRemIBPort, isVl15);
    }
}