summaryrefslogtreecommitdiffstats
path: root/src/usr/dump/dumpCollect.C
blob: 1a23a9757b4a7483efd01ba3ff3b4197175a6d59 (plain)
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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/dump/dumpCollect.C $                                  */
/*                                                                        */
/* IBM CONFIDENTIAL                                                       */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2012,2013              */
/*                                                                        */
/* p1                                                                     */
/*                                                                        */
/* Object Code Only (OCO) source materials                                */
/* Licensed Internal Code Source Materials                                */
/* IBM HostBoot Licensed Internal Code                                    */
/*                                                                        */
/* The source code for this program is not published or otherwise         */
/* divested of its trade secrets, irrespective of what has been           */
/* deposited with the U.S. Copyright Office.                              */
/*                                                                        */
/* Origin: 30                                                             */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */

/*****************************************************************************/
// I n c l u d e s
/*****************************************************************************/

#include <sys/mmio.h>
#include "dumpCollect.H"
#include <dump/dumpreasoncodes.H>
#include <trace/interface.H>
#include <errl/errlentry.H>
#include <errl/errlmanager.H>
#include <runtime/runtime.H>
#include <util/align.H>
#include <sys/mm.h>


// Trace definition
trace_desc_t* g_trac_dump = NULL;
TRAC_INIT(&g_trac_dump, "DUMP", 4*KILOBYTE);


namespace DUMP
{



///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////

    errlHndl_t doDumpCollect(void)
    {
        TRACFCOMP(g_trac_dump, "doDumpCollect - start ");

        errlHndl_t l_err = NULL;

        // Table Sizes
        uint64_t srcTableSize = 0;
        uint64_t destTableSize = 0;
        uint64_t resultsTableSize = 0;

        // Dump table struct pointers
        dumpEntry *srcTableEntry = NULL;
        dumpEntry *destTableEntry = NULL;
        resultsEntry *resultsTableEntry = NULL;

        do
        {
        // Get the Data pointers to the locations we need from HDAT
        //     MS_DUMP_SRC_TBL, < MDST: Memory Dump Source Table
        //     MS_DUMP_DST_TBL, < MDDT: Memory Dump Destination Table
        //     MS_DUMP_RESULTS_TBL,  <MDRT:Memory Dump Results Table
        l_err = getHostDataPtrs(srcTableEntry, srcTableSize,
                                destTableEntry, destTableSize,
                                resultsTableEntry, resultsTableSize);

        if (l_err)
        {
            TRACFCOMP(g_trac_dump, "doDumpCollect: Got an error back from getHostDataPtrs");
            break;
        }

        l_err = copySrcToDest(srcTableEntry,srcTableSize,
                              destTableEntry,destTableSize,
                              resultsTableEntry,resultsTableSize);

        if (l_err)
        {
            TRACFCOMP(g_trac_dump, "doDumpCollect: Got an error back from copySrcToDest");
            break;
        }

        }while (0);

       return (l_err);
    }


///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////

    errlHndl_t copySrcToDest(dumpEntry *srcTableEntry, uint64_t srcTableSize,
                             dumpEntry *destTableEntry, uint64_t destTableSize,
                             resultsEntry *resultsTableEntry, uint64_t resultsTableSize)
    {
        TRACFCOMP(g_trac_dump, "copySrcToDest - start ");

        errlHndl_t l_err = NULL;
        int rc = 0;
        bool invalidSrcSize = false;
        bool invalidDestSize = false;

        // local src table info
        uint64_t *vaSrcTableAddr = 0;
        uint64_t *vaMapSrcTableAddr = 0;
        uint64_t curSrcTableAddr = 0; 

        // destination table info
        uint64_t *vaDestTableAddr = 0;
        uint64_t *vaMapDestTableAddr = 0;
        uint64_t curDestTableAddr = 0;

        // Data sizes 
        uint64_t sizeToCopy = 0;
        uint64_t bytesLeftInSrc = 0;
        uint64_t bytesLeftInDest = 0;

        do
        {

            // Need to loop through all the source entries.. Copying into a
            // destination entry.  Note the src could be larger than the
            // destination size and could require multiple copies.. In addition
            // the size of the destination could be larger than 1 source entry.
            // These entries need to be packed into the destination.. so 1
            // destination entry could have multiple source entries in it.
            // After each copy need to write an entry into the results table
            // source/destination/size.

            // Figure out the num of entries in the src table
            uint64_t maxSrcEntries = srcTableSize/(sizeof (dumpEntry));

            // Figure out the num of entries in the dest table
            uint64_t maxDestEntries = destTableSize/(sizeof (dumpEntry));

            // Figure out the max result entires
            uint64_t maxResultEntries = resultsTableSize/(sizeof
                                                          (resultsEntry));

            // Index into each Dump table
            uint64_t curSourceIndex = 0;
            uint64_t curDestIndex = 0;
            uint64_t curResultIndex = 0;

            // Map in the first source and destination entries from their
            // corresponding tables.
            // NOTE: When mapping a device the address we are mapping needs to
            // be page aligned.  In addition the VA returned is page
            // aligned so we need to add the offset of the page aligned address
            // to the VA returned

            // Get the first Source address and size
            curSrcTableAddr = srcTableEntry[curSourceIndex].dataAddr;
            bytesLeftInSrc = srcTableEntry[curSourceIndex].dataSize;

            // Get the first destination address and size.
            curDestTableAddr = destTableEntry[curDestIndex].dataAddr;
            bytesLeftInDest = destTableEntry[curDestIndex].dataSize;

            // Determine the src and destination offset. 
            uint64_t destOffset =  curDestTableAddr - ALIGN_PAGE_DOWN(curDestTableAddr);
            uint64_t srcOffset = curSrcTableAddr - ALIGN_PAGE_DOWN(curSrcTableAddr);

            // If the data size is greater then 32GB after page alignment
            // create an error.  Current limitation on DevMap is 32GB in size.
            // Not sure yet if we will ever see a table entry > 3GB.
            if (bytesLeftInSrc + srcOffset > THIRTYTWO_GB)  
            {
                invalidSrcSize = true;
                break;
            }
            else if ((bytesLeftInDest + destOffset > THIRTYTWO_GB))
            {
                invalidDestSize = true;
                break;
            }

            vaMapSrcTableAddr =
              (static_cast<uint64_t*>(mmio_dev_map(reinterpret_cast<void*>(ALIGN_PAGE_DOWN(curSrcTableAddr)),
                                      THIRTYTWO_GB)));

            vaSrcTableAddr = vaMapSrcTableAddr;

            vaMapDestTableAddr =
              (static_cast<uint64_t*>(mmio_dev_map(reinterpret_cast<void*>(ALIGN_PAGE_DOWN(curDestTableAddr)),
                                      THIRTYTWO_GB)));

            vaDestTableAddr = vaMapDestTableAddr;

            // add the offset to the src and destination VAs,
            vaSrcTableAddr += (srcOffset/(sizeof (uint64_t)));

            vaDestTableAddr += (destOffset/(sizeof (uint64_t)));

            // Current Source physical and Va address 
            TRACFCOMP(g_trac_dump, "copySrcToDest SrcTableIndex = %d, srcTableAddr = %.16X, VA = %.16X",  curSourceIndex, curSrcTableAddr, vaSrcTableAddr);

            // Current Destination physical and Va address 
            TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest DestTableIndex = %d, DestTableAddr = %.16X, VA = %.16X", curDestIndex, curDestTableAddr, vaDestTableAddr);


            while(1)
            {
                // If we have copied all the bytes in the src entry
                if (bytesLeftInSrc == 0)
                {
                    // unmap the previous src entry
                    rc =  mmio_dev_unmap(reinterpret_cast<void*>(vaMapSrcTableAddr));

                    if (rc != 0)
                    {
                        /*@
                         * @errortype
                         * @moduleid     DUMP::DUMP_COLLECT
                         * @reasoncode   DUMP::DUMP_CANNOT_UNMAP_SRC
                         * @userdata1    VA address of the MDST to unmap
                         * @userdata2    rc value from unmap
                         * @devdesc      Cannot unmap the source table section
                         */
                        l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                                        DUMP_COLLECT,
                                                        DUMP_CANNOT_UNMAP_SRC,
                                                        (uint64_t)vaMapSrcTableAddr,
                                                        rc);

                        // commit the error and continue.  Leave the devices unmapped for now.
                        errlCommit(l_err,DUMP_COMP_ID);

                        l_err = NULL;

                    }

                    // increment to the next src entry
                    curSourceIndex++;

                    // if we have reach all entries
                    if (curSourceIndex >= maxSrcEntries)
                    {
                        TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest - through all src entries");
                        break;
                    }

                    curSrcTableAddr = srcTableEntry[curSourceIndex].dataAddr;
                    bytesLeftInSrc = srcTableEntry[curSourceIndex].dataSize;

                    // If the current Src table Address is 0 we are done
                    if (curSrcTableAddr == 0) 
                    {
                        break;
                    }

                    srcOffset =  curSrcTableAddr - ALIGN_PAGE_DOWN(curSrcTableAddr);

                    // If the data size is less then 32GB after page alignment 
                    if (bytesLeftInSrc + srcOffset > THIRTYTWO_GB)
                    {
                        invalidSrcSize = true;
                        break;
                    }

                    // map the MDST entry to a device such that we can read and write from that memory
                    // address
                     vaMapSrcTableAddr =
                       (static_cast<uint64_t*>(mmio_dev_map(reinterpret_cast<void*>(ALIGN_PAGE_DOWN(curSrcTableAddr)),
                                                            THIRTYTWO_GB)));

                    vaSrcTableAddr = vaMapSrcTableAddr;

                    vaSrcTableAddr += (srcOffset/(sizeof (uint64_t)));

                    // Current Source physical and Va address 
                    TRACFCOMP(g_trac_dump, "copySrcToDest SrcTableIndex = %d, srcTableAddr = %.16X, VA = %.16X",  curSourceIndex, curSrcTableAddr, vaSrcTableAddr);

                }

                // If there is no more space in the destination area
                if (bytesLeftInDest == 0)
                {
                    // unmap the previous dest entry
                    rc =  mmio_dev_unmap(reinterpret_cast<void*>(vaMapDestTableAddr));

                    if (rc != 0)
                    {
                        /*@
                         * @errortype
                         * @moduleid     DUMP::DUMP_COLLECT
                         * @reasoncode   DUMP::DUMP_CANNOT_UNMAP_DEST
                         * @userdata1    VA address of the MDDT to unmap
                         * @userdata2    rc value from unmap
                         * @devdesc      Cannot unmap the source table section
                         */
                        l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                                        DUMP_COLLECT,
                                                        DUMP_CANNOT_UNMAP_DEST,
                                                        (uint64_t)vaMapDestTableAddr,
                                                        rc);

                        // commit the error and continue.  Leave the devices unmapped?
                        errlCommit(l_err,DUMP_COMP_ID);

                        l_err = NULL;
                    }

                    // increment to the next dest entry
                    curDestIndex++;

                    // if made it through all dest entries.
                    if (curDestIndex >= maxDestEntries)
                    {
                        // need to check here to see if we still have SRC
                        // entries not copied.
                        if (bytesLeftInSrc != 0)
                        {
                            // Write an error because we have more src entries
                            // then destination space available.
                            TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest: not enough Destination table entries");

                            /*@
                             * @errortype
                             * @moduleid     DUMP::DUMP_COLLECT
                             * @reasoncode   DUMP::DUMP_MDDT_INSUFFICIENT_ENTRIES
                             * @userdata1    Source Entires bytes left to copy
                             * @userdata2    Index into the MDST table
                             * @devdesc      MDDT table is not big enough to hold all src entries
                             */
                            l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                                            DUMP_COLLECT,
                                                            DUMP_MDDT_INSUFFICIENT_ENTRIES,
                                                            bytesLeftInSrc,
                                                            curSourceIndex);

                            // do not commit this errorlog error as this is a
                            // real problem.

                            // TODO:  RTC: 64399
                            //  Need to add the src entries and sizes? that did
                            //  not get copied to the destination. This error
                            //  condition is such that the table entries are exceeded.
                        }

                        break;
                    }

                    curDestTableAddr = destTableEntry[curDestIndex].dataAddr;
                    bytesLeftInDest = destTableEntry[curDestIndex].dataSize;

                    // If the current dest addr or the size to copy are zero.
                    if ((curDestTableAddr == 0) || (bytesLeftInDest == 0))
                    {

                        // If there are still SRC entries to copy with no
                        // destination send an error back.
                        if (bytesLeftInSrc != 0)
                        {
                            // Write an error because we have more src entries
                            // then destination space available.
                            TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest: not enough Destination table space");

                            /*@
                             * @errortype
                             * @moduleid     DUMP::DUMP_COLLECT
                             * @reasoncode   DUMP::DUMP_MDDT_INSUFFICIENT_SPACE
                             * @userdata1    Source Entires bytes left to copy
                             * @userdata2    Index into the MDST table
                             * @devdesc      MDDT table is not big enough to hold all src entries
                             */
                            l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                                            DUMP_COLLECT,
                                                            DUMP_MDDT_INSUFFICIENT_SPACE,
                                                            bytesLeftInSrc,
                                                            curSourceIndex);

                            // do not commit this errorlog error as this is a
                            // real problem.

                            // TODO:  RTC: 64399
                            //  Need to add the src entries and sizes? that did
                            //  not get copied to the destination.  This
                            //  condition is such that we have a destination
                            //  entry that either has a zero address or zero
                            //  size.. Perhaps put the bad destination entry
                            //  there as well       
                        }
                        
                        break;
                    }

                    destOffset =  curDestTableAddr - ALIGN_PAGE_DOWN(curDestTableAddr);

                    // If the data size is less then 32GB after page alignment 
                    if (bytesLeftInDest + destOffset > THIRTYTWO_GB)
                    {
                        invalidDestSize = true;
                        break;
                    }

                    // map the MDDT to a VA addresss
                    vaMapDestTableAddr =
                      (static_cast<uint64_t*>(mmio_dev_map(reinterpret_cast<void*>(ALIGN_PAGE_DOWN(curDestTableAddr)),
                                                           THIRTYTWO_GB)));

                    vaDestTableAddr = vaMapDestTableAddr;

                    vaDestTableAddr += (destOffset/(sizeof(uint64_t)));

                    // Current Destination physical and Va address 
                    TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest DestTableIndex = %d, DestTableAddr = %.16X, VA = %.16X", curDestIndex, curDestTableAddr, vaDestTableAddr);

                }


                // Determine how much to copy.. 
                 sizeToCopy = std::min(bytesLeftInSrc, bytesLeftInDest);

                // Do the copy of the data from the source to the destination
                memcpy( vaDestTableAddr,vaSrcTableAddr, sizeToCopy);

                if (curResultIndex < maxResultEntries)
                {
                    // Update the results table
                    resultsTableEntry->srcAddr = curSrcTableAddr;
                    resultsTableEntry->destAddr = curDestTableAddr;
                    resultsTableEntry->dataSize = sizeToCopy;
                    resultsTableEntry++;
                    curResultIndex++;
                }
                else
                {
                    TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest: not enough result table space");

                    /*@
                     * @errortype
                     * @moduleid     DUMP::DUMP_COLLECT
                     * @reasoncode   DUMP::DUMP_MDRT_INSUFFICIENT_SPACE
                     * @userdata1    Index into the MDRT
                     * @userdata2    max entries allowed given space allocated
                     * @devdesc      MDRT table is not big enough to hold all entries
                     */
                    l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                                    DUMP_COLLECT,
                                                    DUMP_MDRT_INSUFFICIENT_SPACE,
                                                    curResultIndex,
                                                    maxResultEntries);

                    // commit the error and continue. 
                    errlCommit(l_err,DUMP_COMP_ID);

                    l_err = NULL;
                }

                // decrement the amount copied from the source and destination
                bytesLeftInSrc -= sizeToCopy;
                bytesLeftInDest -= sizeToCopy;

                uint64_t addrOffset = sizeToCopy/(sizeof (uint64_t));

                // increment the current src and dest addresses in both the
                // physical and virtual addresses.
                curSrcTableAddr += sizeToCopy;
                curDestTableAddr += sizeToCopy; 
                vaSrcTableAddr += addrOffset;
                vaDestTableAddr += addrOffset;

            } // end of while loop


            if (invalidSrcSize)
            {
                // Write an error because we have more src entries
                // then destination space available.
                TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest: Source TableSize > 32GB");

                /*@
                 * @errortype
                 * @moduleid     DUMP::DUMP_COLLECT
                 * @reasoncode   DUMP::DUMP_MDST_INVALID_TABLE_SIZE
                 * @userdata1    Size of Source Table Entry
                 * @userdata2    Size of Page Aligned Source Table Entry
                 * @devdesc      MDST table entry with page aligned is greater than 32GB
                 */
                l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                                DUMP_COLLECT,
                                                DUMP_MDST_INVALID_TABLE_SIZE,
                                                bytesLeftInSrc,
                                                bytesLeftInSrc + srcOffset);
                break;

            }
            if (invalidDestSize)
            {
                // Write an error because we have more src entries
                // then destination space available.
                TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest: Destination TableSize > 32GB");

                /*@
                 * @errortype
                 * @moduleid     DUMP::DUMP_COLLECT
                 * @reasoncode   DUMP::DUMP_MDDT_INVALID_TABLE_SIZE
                 * @userdata1    Size of Destination Table Entry
                 * @userdata2    Size of Page Aligned Destination Table Entry
                 * @devdesc      MDDT table entry with page aligned is greater than 32GB
                 */
                l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                                DUMP_COLLECT,
                                                DUMP_MDDT_INVALID_TABLE_SIZE,
                                                bytesLeftInDest,
                                                bytesLeftInDest + destOffset);

                break;
            }

        }while(0);// end of do-while loop

        // Got an errorlog back from get_host_data_sections
        TRACFCOMP(g_trac_dump, "HBDumpCopySrcToDest - COMPLETE ");

        return l_err;
    }



    ///////////////////////////////////////////////////////////////////////////////
    ///////////////////////////////////////////////////////////////////////////////

    errlHndl_t getHostDataPtrs(dumpEntry *srcTableEntry, uint64_t &srcTableSize,
                               dumpEntry *destTableEntry, uint64_t &destTableSize,
                               resultsEntry *resultsTableEntry,uint64_t &resultsTableSize)

    {

        errlHndl_t l_err = NULL;
        int rc = 0;
        bool l_error = false;
        uint64_t l_section = 0;
        uint64_t l_addr = 0;
        uint64_t srcTableAddr = 0;
        uint64_t destTableAddr = 0;
        uint64_t resultsTableAddr = 0;


        do
        {

            // Get the Src Table address  (MDST)
            l_err = RUNTIME::get_host_data_section(RUNTIME::MS_DUMP_SRC_TBL,
                                                   0,
                                                   srcTableAddr,
                                                   srcTableSize);


            if (l_err)
            {
                // Got an errorlog back from get_host_data_sections
                TRACFCOMP(g_trac_dump, "HBDumpGetHostData get_host_data_sections for MDST failed rc=0x%X", rc);

                break;
            }

            // If the address or size is zero - error out
            if ((srcTableSize == 0) || (srcTableAddr == 0))
            {
                // Invalid size or address
                TRACFCOMP(g_trac_dump, "HBDumpGetHostData address or size invalie for MDST: addr =0x%X, size =0x%X," , srcTableAddr, srcTableSize);

                l_section = RUNTIME::MS_DUMP_SRC_TBL;
                l_addr = srcTableAddr;
                l_error = true;
                // got back a bad address
                break;
            }

            srcTableEntry = reinterpret_cast<dumpEntry *>(srcTableAddr);

            // Get the Destination Table Address (MDDT)
            l_err = RUNTIME::get_host_data_section(RUNTIME::MS_DUMP_DST_TBL,
                                                   0,
                                                   destTableAddr,
                                                   destTableSize);


            if (l_err)
            {
                // Got an errorlog back from get_host_data_sections
                TRACFCOMP(g_trac_dump, "HBDumpGetHostData get_host_data_sections for MDDT failed rc=0x%X", rc);

                break;
            }

            // If the address or size is zero - error out
            if ((destTableSize == 0) || (destTableAddr == 0))
            {
                // Invalid size or address
                TRACFCOMP(g_trac_dump,
                          "HBDumpGetHostData address or size invalie for MDDT: addr =0x%X, size =0x%X," ,
                           destTableAddr, destTableSize);

                l_section = RUNTIME::MS_DUMP_DST_TBL;
                l_addr = destTableAddr;
                l_error = true;

                // got back a bad address
                break;
            }

            destTableEntry = reinterpret_cast<dumpEntry *>(destTableAddr);

            // Get the Results Table Address
            l_err = RUNTIME::get_host_data_section(RUNTIME::MS_DUMP_RESULTS_TBL,
                                                   0,
                                                   resultsTableAddr,
                                                   resultsTableSize);


            if (l_err)
            {
                // Got an errorlog back from get_host_data_sections
                TRACFCOMP(g_trac_dump, "HBDumpGetHostData get_host_data_sections for MDDT failed rc=0x%X", rc);

                break;
            }

            // If the address or size is zero - error out
            if ((resultsTableSize == 0) || (resultsTableAddr == 0))
            {
                // Invalid size or address
                TRACFCOMP(g_trac_dump,
                          "HBDumpGetHostData address or size invalid for MDRT: addr =0x%X, size =0x%X," ,
                           resultsTableAddr, resultsTableSize);

                l_section = RUNTIME::MS_DUMP_RESULTS_TBL;
                l_addr = resultsTableAddr;
                l_error = true;
                // got back a bad address
                break;
            }

            // Each results table entry has the Source,Destination and Size for
            // each copy that is done from source to destination
            resultsTableEntry = reinterpret_cast<resultsEntry *>(resultsTableAddr);

            TRACFCOMP(g_trac_dump,
                      "gethostDataPtrs SrcTableAddr = %.16x, DestTableAddr = %.16X, resultTableAddr = %.16X",
                       srcTableAddr, destTableAddr, resultsTableAddr);

        }while(0);

        if (l_error)
        {

            /*@
             * @errortype
             * @moduleid     DUMP::DUMP_COLLECT
             * @reasoncode   DUMP::DUMP_NO_HDAT_ADDR
             * @userdata1    Address returned
             * @userdata2    Table type Requested
             * @devdesc      Invalid address and size returned from HDAT
             */
            l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                            DUMP_COLLECT,
                                            DUMP_NO_HDAT_ADDR,
                                            l_addr,
                                            l_section);

        }

        return (l_err);
    }


}
OpenPOWER on IntegriCloud