summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/prdf/framework/service/prdfServiceDataCollector.C
blob: 8374b84349b5cceaf24f9cbc50989f91d3cc697b (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/diag/prdf/framework/service/prdfServiceDataCollector.C $ */
/*                                                                        */
/* IBM CONFIDENTIAL                                                       */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2004,2012              */
/*                                                                        */
/* 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                                                     */

/**
    @file prdfServiceDataCollector.C
    @brief ServiceDataCollector definition
*/
//------------------------------------------------------------------------------
//  Includes
//------------------------------------------------------------------------------
#include <string.h>                // for memcpy
#define prdfServiceDataCollector_C

#ifdef __HOSTBOOT_MODULE
  // these are no-ops in HB
  #define htonl(foo) (foo)
  #define htons(foo) (foo)
  #define ntohl(foo) (foo)
  #define ntohs(foo) (foo)
#else
  #include <netinet/in.h>
#endif

#include <iipServiceDataCollector.h>
#include <prdfPlatServices.H>
#include <prdfTrace.H>
#undef prdfServiceDataCollector_C

using namespace PRDF;

//------------------------------------------------------------------------------
//  User Types, Constants, macros, prototypes, globals
//------------------------------------------------------------------------------

//------------------------------------------------------------------------------
// Member Function Specifications
//------------------------------------------------------------------------------
#ifndef __HOSTBOOT_MODULE

inline void buffer_append(uint8_t *&ptr, uint32_t value)
{
    uint32_t l_tmp32 = htonl(value);
    memcpy(ptr, &l_tmp32, sizeof(uint32_t));
    ptr += sizeof(uint32_t);
}

inline void buffer_append(uint8_t *&ptr, uint16_t value)
{
    uint16_t l_tmp16 = htons(value);
    memcpy(ptr, &l_tmp16, sizeof(uint16_t));
    ptr += sizeof(uint16_t);
}

inline void buffer_append(uint8_t *&ptr, uint8_t value)
{
    memcpy(ptr, &value, sizeof(value));
    ptr += sizeof(uint8_t);
}

inline uint32_t buffer_get32(const uint8_t * &ptr)
{
    uint32_t l_tmp32 = 0;
    memcpy(&l_tmp32, ptr, sizeof(uint32_t));
    ptr += sizeof(uint32_t);
    return ntohl(l_tmp32);
}

inline uint16_t buffer_get16(const uint8_t * &ptr)
{
    uint16_t l_tmp16 = 0;
    memcpy(&l_tmp16, ptr, sizeof(uint16_t));
    ptr += sizeof(uint16_t);
    return ntohs(l_tmp16);
}

inline uint8_t buffer_get8(const uint8_t * &ptr)
{
    uint8_t l_tmp8 = 0;
    memcpy(&l_tmp8, ptr, sizeof(uint8_t));
    ptr += sizeof(uint8_t);
    return l_tmp8;
}

inline TARGETING::TargetHandle_t  buffer_getTarget( const uint8_t *&ptr )
{
    HUID l_chipHuid = INVALID_HUID;
    uint32_t l_size = sizeof( l_chipHuid );
    memcpy( &l_chipHuid, ptr, l_size );
    l_chipHuid = ntohl( l_chipHuid );
    TARGETING::TargetHandle_t l_tempChipHandle = PlatServices::getTarget( l_chipHuid );
    ptr += l_size;

    return l_tempChipHandle;
}

#endif

//------------------------------------------------------------------------------

void ServiceDataCollector::SetCallout( PRDcallout mru,
                                       PRDpriority priority )
{
    bool found = false;

    if ( PRDcallout::TYPE_TARGET == mru.getType() )
    {
        // Ensuring target is not NULL
        if ( NULL == mru.getTarget() )
        {
            PRDF_ERR( "[ServiceDataCollector::SetCallout] "
                      "skipping NULL callout" );
            return;
        }
    }

    for ( SDC_MRU_LIST::iterator i = xMruList.begin();
          i != xMruList.end() && found == false; ++i )
    {
        if ( i->callout == mru )
        {
            found = true;
            if ( priority < i->priority )
            {
                i->priority = priority;
            }
        }
    }

    if ( found == false )
    {
        xMruList.push_back( SdcCallout(mru, priority) );
    }
}

//------------------------------------------------------------------------------

void ServiceDataCollector::AddSignatureList(TARGETING::TargetHandle_t i_pTargetHandle,
                                            uint32_t  i_signature)
{
    bool found = false;
    if(NULL == i_pTargetHandle)
    {
        PRDF_ERR(" ServiceDataCollector::AddSignatureList  could not add invalid target ");
        return;
    }
    for(PRDF_SIGNATURES::iterator i = iv_SignatureList.begin();
        i != iv_SignatureList.end(); i++)
    {
        if((i->iv_pSignatureHandle == i_pTargetHandle) &&
           (i->iv_signature == i_signature))
        {
            found = true;
            break;
        }
    }
    if(found == false)
    {
        iv_SignatureList.push_back(PrdfSignatureList(i_pTargetHandle, i_signature));
    }
}


#ifndef __HOSTBOOT_MODULE

//------------------------------------------------------------------------------

uint32_t ServiceDataCollector::Flatten(uint8_t * i_buffer, uint32_t & io_size) const
{
    uint32_t max_size = io_size;
    uint32_t rc = SUCCESS;
    //getting the actual size of prdfHcdbChangeItem and PrdfSignatureList that gets saved in memory. since
    //instead of handle we save the entity path
    uint32_t l_sizeHcdbChange = iv_HcdbChangeList.size() * sizeof(PrdfHcdbChangeItem);
    uint32_t l_sizeSignList   = iv_SignatureList.size()  * sizeof(PrdfSignatureList);
    uint32_t l_sizeMruList    = xMruList.size()          * sizeof(SdcCallout);
    // approximate space needed for essentials.  This estimate is slightly higher than actual
    const uint32_t MIN_FLAT_SIZE = sizeof(ServiceDataCollector) + sizeof(struct PrdTimer::prdftm_t)
                                   + l_sizeMruList + l_sizeHcdbChange + l_sizeSignList;

    uint8_t * current_ptr = i_buffer;

    if(max_size > MIN_FLAT_SIZE)
    {
        // must have this
        uint32_t l_huid = error_signature.getChipId();
        buffer_append(current_ptr,l_huid);
        buffer_append(current_ptr,error_signature.getSigId());
        // callouts
        buffer_append(current_ptr,xMruList.size());
        for ( SDC_MRU_LIST::const_iterator i = xMruList.begin();
              i != xMruList.end(); ++i )
        {
            buffer_append( current_ptr, (uint32_t)i->callout.getType() );
            buffer_append( current_ptr, i->callout.flatten()           );
            buffer_append( current_ptr, (uint32_t)i->priority          );
        }
        buffer_append(current_ptr, iv_HcdbChangeList.size());
        for(HCDB_CHANGE_LIST::const_iterator i = iv_HcdbChangeList.begin();
            i != iv_HcdbChangeList.end(); ++i)
        {
            buffer_append(current_ptr,(TARGETING::TargetHandle_t)i->iv_phcdbtargetHandle);
            buffer_append(current_ptr,(uint32_t)i->iv_compSubType);
            buffer_append(current_ptr,(uint32_t)i->iv_compType);
        }
        buffer_append(current_ptr, iv_SignatureList.size());
        for(PRDF_SIGNATURES::const_iterator i = iv_SignatureList.begin();
            i != iv_SignatureList.end(); ++i)
        {
            buffer_append(current_ptr,(TARGETING::TargetHandle_t)i->iv_pSignatureHandle);
            buffer_append(current_ptr,(uint32_t)i->iv_signature);
        }
        buffer_append(current_ptr,maskId);
        buffer_append(current_ptr,(uint32_t)attentionType);
        buffer_append(current_ptr,flags);
        buffer_append(current_ptr,hitCount);
        buffer_append(current_ptr,threshold);
        buffer_append(current_ptr,reasonCode);
        buffer_append(current_ptr,startingPoint);
        buffer_append(current_ptr,(uint32_t)errorType);
        //@ecdf - Removed ivDumpRequestType.
        buffer_append(current_ptr,ivDumpRequestContent);
        buffer_append(current_ptr,ivpDumpRequestChipHandle);
        PrdTimer::prdftm_t l_tm = ivCurrentEventTime.gettm();
        const uint32_t PRDFTM_SIZE = sizeof(struct PrdTimer::prdftm_t);
        memcpy(current_ptr,&l_tm,PRDFTM_SIZE);
        current_ptr += PRDFTM_SIZE;
        buffer_append(current_ptr,(uint32_t)causeAttentionType);
        buffer_append(current_ptr,ivpThermalChipHandle);

        // Add as much capture data as we have room.
        uint8_t * cap_size_ptr = current_ptr;  // Place for Capture data size
        current_ptr += sizeof(uint32_t);

        uint32_t cap_size = captureData.Copy(current_ptr,max_size - (current_ptr - i_buffer));
        current_ptr += cap_size;
        buffer_append(cap_size_ptr,cap_size);

    }
    else // buffer is not big enough to capture the essentials
    {
        rc = 2;
    }

    io_size = current_ptr - i_buffer;

    return rc;
}

//------------------------------------------------------------------------------

ServiceDataCollector & ServiceDataCollector::operator=(const uint8_t * i_flatdata)
{
    error_signature.setChipId(buffer_get32(i_flatdata));
    error_signature.setSigId(  buffer_get32(i_flatdata) );

    uint32_t value = buffer_get32(i_flatdata);  // number of callouts
    ClearCallouts();
    for(uint32_t i = 0; i < value; ++i)
    {
        MruType mt = (MruType) buffer_get32(i_flatdata);  // callout type
        if ( PRDcallout::TYPE_TARGET == mt )
        {
            // Retrieving target.
            TARGETING::TargetHandle_t l_pChipHandle
                                                = buffer_getTarget(i_flatdata);

            if(NULL !=l_pChipHandle)
            {
                //Resurrecting prdcallout from all the data elements
                PRDcallout callout((TARGETING::
                                    TargetHandle_t)l_pChipHandle,
                                    mt);
                xMruList.push_back( SdcCallout( callout,
                                                (PRDpriority)buffer_get32
                                                (i_flatdata))
                                              );  // callout priority
            }

        }
        else
        {
            uint32_t mru = buffer_get32(i_flatdata);  // other callouts
            //Resurrecting prdcallout from all the data elements
            PRDcallout callout(mru,mt);
            xMruList.push_back( SdcCallout(callout,
                                (PRDpriority)buffer_get32(i_flatdata)));  // callout priority
        }
    }
    ClearHcdbList();
    value = buffer_get32(i_flatdata);  // number of HcdbEntries.
    for(uint32_t i = 0; i < value; ++i)
    {
        TARGETING::TargetHandle_t l_pChipHandle = buffer_getTarget(i_flatdata);
        hcdb::comp_subtype_t l_compSubType = (hcdb::comp_subtype_t)buffer_get32(i_flatdata);
        comp_id_t            l_compType =    (comp_id_t)buffer_get32(i_flatdata);
        if(NULL !=l_pChipHandle)
        {
            PrdfHcdbChangeItem l_item(l_pChipHandle, l_compSubType, l_compType);
            iv_HcdbChangeList.push_back(l_item);

        }
    }
    ClearSignatureList();
    value = buffer_get32(i_flatdata);  // number of HcdbEntries.
    for(uint32_t i = 0; i < value; ++i)
    {
        TARGETING::TargetHandle_t l_pChipHandle = buffer_getTarget(i_flatdata);
        uint32_t             l_signature   = (uint32_t)  buffer_get32(i_flatdata);
        if(NULL !=l_pChipHandle)
        {
            PrdfSignatureList    l_item(l_pChipHandle, l_signature);
            iv_SignatureList.push_back(l_item);
        }
    }

    maskId = buffer_get32(i_flatdata);
    attentionType = (ATTENTION_TYPE)buffer_get32(i_flatdata);
    flags = buffer_get32(i_flatdata);  //mp02 c from buffer_get16
    hitCount = buffer_get8(i_flatdata);
    threshold = buffer_get8(i_flatdata);
    reasonCode = buffer_get16(i_flatdata);  //mp04 a
    startingPoint = buffer_getTarget(i_flatdata);
    errorType = (GardResolution::ErrorType)buffer_get32(i_flatdata);
    ivDumpRequestContent = (hwTableContent) buffer_get32(i_flatdata); //@ecdf
    ivpDumpRequestChipHandle = buffer_getTarget(i_flatdata);

    PrdTimer::prdftm_t l_tm;
    const uint32_t PRDFTM_SIZE = sizeof(struct PrdTimer::prdftm_t);
    memcpy(&l_tm,i_flatdata,PRDFTM_SIZE);
    i_flatdata += PRDFTM_SIZE;
    ivCurrentEventTime.settm(l_tm);

    causeAttentionType = (ATTENTION_TYPE) buffer_get32(i_flatdata);
    ivpThermalChipHandle = buffer_getTarget(i_flatdata);

    // Capture data - oh joy
    // do we re-expand the data or change capture date to hang onto the already flattened data?
    // lets give it back to the capture data object and let it decide.

    captureData = i_flatdata;

    return *this;
}

//------------------------------------------------------------------------------

void ServiceDataCollector::AddChangeForHcdb(TARGETING::TargetHandle_t i_pTargetHandle ,
                                            hcdb::comp_subtype_t i_testType,
                                            comp_id_t i_compType)
{
    bool found = false;
    //Ensuring the handles are valid before pushing to the list
    if(NULL == i_pTargetHandle)
    {
        PRDF_ERR(" ServiceDataCollector::AddChangeForHcdb  could not add invalid target ");
        return;
    }

    for(HCDB_CHANGE_LIST::iterator i = iv_HcdbChangeList.begin();
        i != iv_HcdbChangeList.end(); i++)
    {
        if((i->iv_phcdbtargetHandle ==i_pTargetHandle) &&
           (i->iv_compSubType == i_testType) &&
           (i->iv_compType    == i_compType))
        {
            found = true;
            break;
        }
    }
    if(found == false)
    {
        iv_HcdbChangeList.push_back( PrdfHcdbChangeItem(i_pTargetHandle, i_testType, i_compType));
    }
}

#endif

OpenPOWER on IntegriCloud