summaryrefslogtreecommitdiffstats
path: root/src/usr/mbox/test/mboxsptest.H
blob: d1315038b3252a5378aaf2bd804058d345285acb (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/mbox/test/mboxsptest.H $                              */
/*                                                                        */
/* 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                                                     */
#ifndef __MBOXSPTEST_H
#define __MBOXSPTEST_H

/**
 *  @file mboxsptest.H
 *
 *  @brief Test cases for MBOX service provider
*/

#include <cxxtest/TestSuite.H>
#include <errl/errlentry.H>
#include <errl/errlmanager.H>
#include <errl/hberrltypes.H>
#include <limits.h>
#include <mbox/mboxif.H>
#include <targeting/common/util.H>
#include <sys/time.h>

extern trace_desc_t* g_trac_mbox;

using namespace TARGETING;

class MboxSPTest : public CxxTest::TestSuite
{
  public:

      bool mboxEnabled()
      {
          bool enabled = false;

          TARGETING::Target * sys = NULL;
          TARGETING::targetService().getTopLevelTarget( sys );
          TARGETING::SpFunctions spfuncs;
          if( sys &&
              sys->tryGetAttr<TARGETING::ATTR_SP_FUNCTIONS>(spfuncs) &&
              spfuncs.mailboxEnabled)
          {
              enabled = true;
          }
          return enabled;
      }

      /**
       * @brief MBOX - Send asynchronous message
       */
      void testSendAsync(void)
      {
          //  This testcase only works if there is no FSP.
          //  Must be disabled for vpo and
          //  TODO disble if there is an FSP.
          if( TARGETING::is_vpo() )
          {
              return;
          }

          errlHndl_t err = NULL;
          // requires proper simics model
          // msg will get echoed which looks like a new msg from FSP
          // Register a message queue to receive it.
          msg_q_t msgQ = msg_q_create();

          // Send some messages - DMA size will force a request
          // to be sent to FSP for more buffers.
          for(size_t i = 1; i < 3; ++i)
          {
              msg_t* msg = msg_allocate();
              msg->type = 1;
              msg->data[1] = 33 * 1024;
              msg->extra_data = malloc(33 * 1024);
              memcpy(msg->extra_data,"Message junk",13);

              msg->data[0] = i;
              err = MBOX::send(MBOX::HB_TEST_MSGQ,msg);
              if(err)
              {
                  TS_FAIL("MBOX::send returned an error log");
                  errlCommit(err,MBOX_COMP_ID);
              }
          }

          nanosleep(0,1000000);


          if(mboxEnabled())
          {
              // late registration to test ability to queue message until
              // a queue is ready
              err = MBOX::msgq_register(MBOX::HB_TEST_MSGQ,msgQ);
              if(err)
              {
                  TS_FAIL("MBOX: Could not register message queue");
                  errlCommit(err,MBOX_COMP_ID);
              }


              // Send last message
              msg_t * msg = msg_allocate();
              msg->type = 0xff;        // use this to terminate while loop below
              msg->extra_data = NULL;
              err = MBOX::send(MBOX::HB_TEST_MSGQ,msg);
              if(err)
              {
                  TS_FAIL("MBOX::send returned an error log");
                  errlCommit(err,MBOX_COMP_ID);
              }

              // now get the messages - they will look like async messages
              // from FSP, even though they are just the echo of the
              // async messages that hostboot just sent above.
              size_t msg_idx = 0;
              while(1)
              {
                  msg_t* msg = msg_wait(msgQ);

                  if(msg->type == 0xff)
                  {
                      msg_free(msg);
                      break;
                  }

                  ++msg_idx;

                  if(msg->type != 1 || 
                     msg->data[0] != msg_idx || 
                     msg->data[1] != 33 * 1024)
                  {
                      TS_FAIL("MBOXTEST: Unexpected message from FSP");

                      TRACFCOMP(g_trac_mbox,
                                "MBOXTEST MSG from FSP: %d %lx %lx %p",
                                msg->type,
                                msg->data[0],
                                msg->data[1],
                                msg->extra_data);
                  }
                  if(msg->extra_data)
                  {
                      TRACFCOMP(g_trac_mbox,"MBOXTEST Extra data: %s",
                                static_cast<char *>(msg->extra_data));
                      ::free(msg->extra_data);
                  }

                  msg_free(msg);
              }

              msgQ = MBOX::msgq_unregister(MBOX::HB_TEST_MSGQ);
          } // end if mboxEnabled
          msg_q_destroy(msgQ);
      }

      /**
       * @brief MBOX - Send sync message
       */
      void testSendSync(void)
      {
          //  This testcase only works if there is no FSP.
          //  Must be disabled for vpo and
          //  TODO disble if there is an FSP.
          if( TARGETING::is_vpo())
          {
              return;
          }
          // Echo What gets sent comes back
          // Will get changed to invert data (or something like that)
          msg_t * msg = msg_allocate();
          msg->type = 2;
          msg->data[0] = 0x001122334455667788;
          msg->data[1] = 1;
          msg->extra_data = NULL;

          errlHndl_t err = MBOX::sendrecv(MBOX::FSP_ECHO_MSGQ,msg);

          if(err)
          {
              if(mboxEnabled())
              {
                  TS_FAIL("MBOX::sendrecv returned an error log %p",err);
                  errlCommit(err,MBOX_COMP_ID);
              }
          }
          else
          {
              if(!mboxEnabled())
              {
                  TS_FAIL("MBOX::sendrecv expected an error log when mbox is disabled");
              }
          }

          // TODO eventually the return data will be inverted or modified in
          //      some way?
          if(msg->type != 2 ||
             msg->data[0] != 0x001122334455667788 ||
             msg->data[1] != 1)
          {
              TS_FAIL("Unexpected mailbox sync message returned");

              TRACFCOMP(g_trac_mbox,
                        "MBOXTEST SYNC response: %d %lx %lx %p",
                        msg->type,
                        msg->data[0],
                        msg->data[1],
                        msg->extra_data);
          }

          msg->type = 2;
          msg->data[1] = 128 * 1024;  // too big of message
          msg->extra_data = malloc(8);  
          err = MBOX::sendrecv(MBOX::FSP_ECHO_MSGQ,msg);

          if(!err)
          {
              TS_FAIL("MBOX::sendrecv should return an error log, extra_data too big");
          }
          else
          {
              delete err;
          }
          free(msg->extra_data);

          msg_free(msg);
      }

      void testInvalidMsg(void)
      {
          msg_t * msg = msg_allocate();
          msg->type = 0x8000ffff;
          msg->extra_data = NULL;

          // If there is no FSP then sync message will just come back OK - no errors

          // For an async message w/o an FSP:
          //   Should see that the message bounced back and was queued.
          //   Should see a trace message and error log from mbox service
          //     indicating there was an unclaimed message at shutdown.
          // For an async message with an FSP:
          //   Should just see a trace and error log from the mbox service that
          //     there was an invalid message.
          errlHndl_t err = MBOX::send(MBOX::FSP_ECHO_MSGQ,msg);
          if(err)
          {
              TS_FAIL("MBOXTEST::testInvalidMsg. Unexpected error log from send()");
              errlCommit(err,MBOX_COMP_ID);
          }
      }

      void testHardwareError(void)
      {
#if defined(__DESTRUCTIVE_MBOX_TEST__)
          msg_t * msg = msg_allocate();
          msg->type = 0x8000ffff;
          msg->extra_data = NULL;

          MBOX::forceErrorOnNextOperation();

          errlHndl_t err = MBOX::send(MBOX::FSP_ECHO_MSGQ,msg);
          if(err)
          {
              TS_FAIL("MBOXTEST::testHardwareError. Unexpected error log from send()");
              errlCommit(err,MBOX_COMP_ID);
          }

          msg = msg_allocate();
          msg->type = 0x8000fffe;
          msg->extra_data = NULL;

          err = MBOX::sendrecv(MBOX::FSP_ECHO_MSGQ,msg);
          if(!err)
          {
              TS_FAIL("MBOXTEST::testHardwareError. No error log from sendrecv()");
          }
          else
          {
              delete err;
          }

          msg->type = 0x8000fffd;
          err = MBOX::send(MBOX::FSP_ECHO_MSGQ,msg);
          if(!err)
          {
              TS_FAIL("MBOXTEST::testHardwareError. No error log from send()");
          }
          else
          {
              delete err;
          }

          msg_free(msg);
#endif
      }
};

#endif

OpenPOWER on IntegriCloud