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
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/usr/targeting/test/testtargeting.H $ */
/* */
/* IBM CONFIDENTIAL */
/* */
/* COPYRIGHT International Business Machines Corp. 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 */
#ifndef __TARGETING_TESTTARGETING_H
#define __TARGETING_TESTTARGETING_H
/**
* @file targeting/test/testtargeting.H
*
* @brief All unit tests which test targeting in a platform specific way
*/
//******************************************************************************
// Includes
//******************************************************************************
// STD
#include <stdio.h>
#include <sys/time.h>
// CXXTEST
#include <cxxtest/TestSuite.H>
#include <hwpf/plat/fapiPlatAttributeService.H>
#include <fapiReturnCode.H>
#include <fapiAttributeIds.H>
#include <fapiAttributeService.H>
#include <errl/errlmanager.H>
#include <sys/sync.h>
#include <sys/task.h>
#include <sys/time.h>
// This component
#include <targeting/common/attributes.H>
#include <targeting/common/entitypath.H>
#include <targeting/common/target.H>
#include <targeting/common/targetservice.H>
#include <targeting/common/iterators/rangefilter.H>
#include <targeting/common/predicates/predicatectm.H>
#include <targeting/common/predicates/predicatepostfixexpr.H>
#include <targeting/common/targreasoncodes.H>
#include <errl/errludtarget.H>
#include <targeting/common/trace.H>
#include <kernel/console.H>
/**
* @brief Struct to hold pointers to a mutex / protected value
*/
struct MutexTestData_t
{
mutex_t* pMutex; // Pointer to mutex
barrier_t* pBarrier; // Pointer to barrier
volatile uint32_t* pVar; // Pointer to value protected by mutex
};
/**
* @brief Function which attempts to write a protected variable
*
* @param[in] i_pData Pointer to mutex pointer/value pointer structure
*
* @return NULL
*/
void* funcTestMutex(void* i_pData)
{
MutexTestData_t* l_pData = static_cast<MutexTestData_t*>(i_pData);
barrier_wait(l_pData->pBarrier);
mutex_lock(l_pData->pMutex);
*(l_pData->pVar) = 1;
mutex_unlock(l_pData->pMutex);
barrier_wait(l_pData->pBarrier);
return NULL;
}
class TargetingTestSuite : public CxxTest::TestSuite
{
public:
/**
* @brief Test Hostboot specific mutex attribute support
*/
void testHbMutexAttr()
{
TS_TRACE(ENTER_MRK "testHbMutexAttr" );
using namespace TARGETING;
using namespace fapi;
do {
// Get a reference to the target service
TargetService& l_targetService = targetService();
// Get the system target containing the test mutex
TARGETING::Target* l_pTarget = NULL;
(void) l_targetService.getTopLevelTarget(l_pTarget);
if (l_pTarget == NULL)
{
TS_FAIL("Top level target handle is NULL");
break;
}
// Get the mutex attribute (actually a mutex_t* which points to
// a mutex)
HB_MUTEX_TEST_LOCK_ATTR l_pLock
= l_pTarget->getHbMutexAttr<TARGETING::ATTR_HB_MUTEX_TEST_LOCK>();
// Test: Verify the value pointed to by the mutex_t* is zero
if ( (*reinterpret_cast<uint64_t*>(l_pLock)) != 0)
{
TS_FAIL("Mutex attribute must be initialized to zero, but got %ld",
*reinterpret_cast<uint64_t*>(l_pLock));
break;
}
// Try to get the attribute, and ensure it's the same
HB_MUTEX_TEST_LOCK_ATTR l_pLockTry = NULL;
if(l_pTarget->tryGetHbMutexAttr<TARGETING::ATTR_HB_MUTEX_TEST_LOCK>
(l_pLockTry))
{
if(l_pLockTry != l_pLock)
{
TS_FAIL("Mutex attributes should match, but dont. "
"l_pLockTry = %ld, l_pLock = %ld",l_pLockTry,
l_pLock);
break;
}
}
else
{
TS_FAIL("Mutex attribute tryGet failed, even though it exists");
break;
}
// Create a structue holding pointers to the mutex and a protected value
volatile uint32_t l_var = 0;
(void)mutex_lock(l_pLock);
barrier_t l_barrier;
(void)barrier_init(&l_barrier, 2);
MutexTestData_t l_mutexTestData = { l_pLock, &l_barrier, &l_var };
// Spawn off a function which tries to write the protected value to
// something unexpected. If the mutex is working, the for loop will
// always poll the expected value.
task_create(funcTestMutex, static_cast<void*>(&l_mutexTestData));
// Guarantee the child process runs and blocks on the mutex prior to
// modifying the protected value. isync to ensure the processor doesn't
// speculatively perform the comparison prior to the sleep completing
barrier_wait(&l_barrier);
nanosleep(0,TEN_CTX_SWITCHES_NS); isync();
if(l_var != 0)
{
TS_FAIL("Protected value must be 0, was %d instead",l_var);
break;
}
// Now unlock the mutex, allowing the other thread to overwrite the
// protected value; which should happen within 100,000 reads of the
// var. This will confirm the other thread was actively trying to
// write the controlled value
(void)mutex_unlock(l_pLock);
// Guarantee the child process acquires the mutex and modifies the
// protected value.
barrier_wait(&l_barrier);
if(l_var != 1)
{
TS_FAIL("Protected value must now be 1, was %d instead",l_var);
break;
}
barrier_destroy(&l_barrier);
} while(0);
TS_TRACE(EXIT_MRK "testHbMutexAttr");
}
/**
* @brief Test Hostboot specific error target FFDC support
*/
void testErrlTargetFFDC()
{
TS_TRACE(ENTER_MRK "testErrlTargetFFDC" );
using namespace ERRORLOG;
using namespace TARGETING;
using namespace fapi;
// Get a reference to the target service
TargetService& l_service = targetService();
// Get the master proc target
TARGETING::Target* l_pTarget1 = NULL;
TARGETING::Target* l_pTarget2 = MASTER_PROCESSOR_CHIP_TARGET_SENTINEL;
l_service.masterProcChipTargetHandle( l_pTarget1);
// Create an errorlog to test FFDC capture of targets
/*@
* @errortype
* @severity ERRORLOG_SEV_INFORMATIONAL
* @moduleid TARG_MOD_TEST
* @reasoncode TARG_RC_TEST_TARGET_FFDC
* @userdata1 Test data 1
* @userdata2 Test data 2
* @devdesc User Details unit test - create target user detail data
*/
errlHndl_t l_err;
l_err = new ErrlEntry(ERRL_SEV_INFORMATIONAL,
TARG_MOD_TEST,
TARG_RC_TEST_TARGET_FFDC,
0x0011223344556677,
0x8899aabbccddeeff);
ErrlUserDetailsTarget(l_pTarget1).addToLog(l_err);
ErrlUserDetailsTarget(l_pTarget2).addToLog(l_err);
errlCommit(l_err, CXXTEST_COMP_ID);
TS_TRACE(EXIT_MRK "testErrlTargetFFDC");
}
};
#endif // End __TARGETING_TESTTARGETING_H
|