blob: db14a92d5edb564c81589bf23f6bca3f22acf15e [file] [log] [blame]
Ben Tynerb1ebfcb2020-05-08 18:52:48 -05001#include <unistd.h>
2
Ben Tyner135793a2021-10-27 09:18:41 -05003#include <analyzer/analyzer_main.hpp>
Ben Tyner5c5db652021-02-22 18:22:35 -06004#include <attn/attn_common.hpp>
Ben Tyner188f1092021-02-01 09:33:06 -06005#include <attn/attn_dbus.hpp>
Ben Tyner7029e522021-08-09 19:18:24 -05006#include <attn/attn_dump.hpp>
Ben Tynerb797b3e2020-06-29 10:12:05 -05007#include <attn/attn_logging.hpp>
Ben Tynerf5210bb2021-01-05 12:58:10 -06008#include <attn/pel/pel_minimal.hpp>
Zane Shelley60cb2e42024-02-28 16:21:55 -06009#include <nlohmann/json.hpp>
Ben Tynerb1ebfcb2020-05-08 18:52:48 -050010#include <phosphor-logging/log.hpp>
Ben Tyner13159682022-02-16 14:55:38 -060011#include <util/dbus.hpp>
Ben Tynerfaf33362022-02-16 14:04:51 -060012#include <util/ffdc.hpp>
austinfcuibfa831a2022-01-26 15:37:07 -060013#include <util/trace.hpp>
Ben Tynerf5210bb2021-01-05 12:58:10 -060014
Zane Shelley60cb2e42024-02-28 16:21:55 -060015#include <fstream>
16
Ben Tynerb1ebfcb2020-05-08 18:52:48 -050017namespace attn
18{
Ben Tynerf5210bb2021-01-05 12:58:10 -060019/** @brief Tuple containing information about ffdc files */
20using FFDCTuple =
21 std::tuple<util::FFDCFormat, uint8_t, uint8_t, sdbusplus::message::unix_fd>;
22
Ben Tynerf5210bb2021-01-05 12:58:10 -060023/**
24 * Create FFDCTuple objects corresponding to the specified FFDC files.
25 *
26 * The D-Bus method to create an error log requires a vector of tuples to
27 * pass in the FFDC file information.
28 *
29 * @param files - FFDC files
30 * @return vector of FFDCTuple objects
31 */
32std::vector<FFDCTuple>
33 createFFDCTuples(const std::vector<util::FFDCFile>& files)
34{
35 std::vector<FFDCTuple> ffdcTuples{};
Zane Shelleya79f6c82021-01-12 16:38:49 -060036 util::transformFFDC(files, ffdcTuples);
Ben Tynerf5210bb2021-01-05 12:58:10 -060037
38 return ffdcTuples;
39}
40
41/**
42 * @brief Create an FFDCFile object containing raw data
43 *
44 * Throws an exception if an error occurs.
45 *
46 * @param i_buffer - raw data to add to ffdc faw data file
47 * @param i_size - size of the raw data
48 * @return FFDCFile object
49 */
50util::FFDCFile createFFDCRawFile(void* i_buffer, size_t i_size)
51{
52 util::FFDCFile file{util::FFDCFormat::Custom};
53
54 // Write buffer to file and then reset file description file offset
Patrick Williams27dd6362023-05-10 07:51:20 -050055 int fd = file.getFileDescriptor();
Ben Tynerd7006092021-02-05 14:55:52 -060056 size_t numBytes = write(fd, static_cast<char*>(i_buffer), i_size);
57 if (i_size != numBytes)
58 {
austinfcuibfa831a2022-01-26 15:37:07 -060059 trace::err("%s only %u of %u bytes written", file.getPath().c_str(),
60 numBytes, i_size);
Ben Tynerd7006092021-02-05 14:55:52 -060061 }
62
Ben Tynerf5210bb2021-01-05 12:58:10 -060063 lseek(fd, 0, SEEK_SET);
64
65 return file;
66}
67
68/**
Ben Tynerf5210bb2021-01-05 12:58:10 -060069 * Create FFDCFile objects containing debug data to store in the error log.
70 *
71 * If an error occurs, the error is written to the journal but an exception
72 * is not thrown.
73 *
74 * @param i_buffer - raw data (if creating raw dump ffdc entry in log)
75 * @return vector of FFDCFile objects
76 */
77std::vector<util::FFDCFile> createFFDCFiles(char* i_buffer = nullptr,
Patrick Williams27dd6362023-05-10 07:51:20 -050078 size_t i_size = 0)
Ben Tynerf5210bb2021-01-05 12:58:10 -060079{
80 std::vector<util::FFDCFile> files{};
81
82 // Create raw dump file
83 if ((nullptr != i_buffer) && (0 != i_size))
84 {
85 files.emplace_back(createFFDCRawFile(i_buffer, i_size));
86 }
87
88 // Create trace dump file
Ben Tynerfaf33362022-02-16 14:04:51 -060089 util::createFFDCTraceFiles(files);
Ben Tynerf5210bb2021-01-05 12:58:10 -060090
Ben Tyner21cc6272022-10-05 18:26:36 -050091 // Add PRD scratch registers
92 addPrdScratchRegs(files);
93
Ben Tynerf5210bb2021-01-05 12:58:10 -060094 return files;
95}
96
97/**
Ben Tynerf5210bb2021-01-05 12:58:10 -060098 * Create a PEL from an existing PEL
99 *
100 * Create a new PEL based on the specified raw PEL and submit the new PEL
101 * to the backend logging code as a raw PEL. Note that additional data map
102 * here contains data to be committed to the PEL and it can also be used to
103 * create the PEL as it contains needed information.
104 *
Ben Tyner135793a2021-10-27 09:18:41 -0500105 * @param i_rawPel - buffer containing a raw PEL
Ben Tynerf5210bb2021-01-05 12:58:10 -0600106 * @param i_additional - additional data to be added to the new PEL
107 */
108void createPelCustom(std::vector<uint8_t>& i_rawPel,
109 std::map<std::string, std::string> i_additional)
110{
111 // create PEL object from buffer
112 auto tiPel = std::make_unique<pel::PelMinimal>(i_rawPel);
113
114 // The additional data contains the TI info as well as the value for the
115 // subystem that provided the TI info. Get the subystem from additional
austinfcuic49d20b2022-02-22 16:36:47 -0600116 // data and then populate the primary SRC and SRC words for the custom PEL
117 // based on the subsystem's TI info.
118 std::map<std::string, std::string>::iterator it;
119 uint8_t subsystem;
120
121 it = i_additional.find("Subsystem");
122 if (it != i_additional.end())
123 {
124 subsystem = std::stoi(it->second);
125 tiPel->setSubsystem(subsystem);
126 }
127 else
128 {
129 // The entry with key "Subsystem" does not exist in the additional map.
130 // Log the error, create failure event, and return.
Zane Shelley67b82292022-03-25 09:48:40 -0500131 trace::err("Error the key Subsystem does not exist in the map.");
austinfcuic49d20b2022-02-22 16:36:47 -0600132 eventAttentionFail((int)AttnSection::attnLogging | ATTN_INVALID_KEY);
133 return;
134 }
Ben Tynerf5210bb2021-01-05 12:58:10 -0600135
Ben Tyner135793a2021-10-27 09:18:41 -0500136 // If recoverable attentions are active we will call the analyzer and
137 // then link the custom pel to analyzer pel.
Ben Tyner135793a2021-10-27 09:18:41 -0500138 it = i_additional.find("recoverables");
139 if (it != i_additional.end() && "true" == it->second)
140 {
141 DumpParameters dumpParameters;
Zane Shelleyebff0d32021-11-21 10:52:07 -0600142 auto plid = analyzer::analyzeHardware(
143 analyzer::AnalysisType::TERMINATE_IMMEDIATE, dumpParameters);
Zane Shelley611b3442021-11-19 16:02:01 -0600144 if (0 != plid)
Ben Tyner135793a2021-10-27 09:18:41 -0500145 {
Zane Shelley611b3442021-11-19 16:02:01 -0600146 // Link the PLID if an attention was found and a PEL was generated.
147 tiPel->setPlid(plid);
Ben Tyner135793a2021-10-27 09:18:41 -0500148 }
149 }
150
Ben Tynerf5210bb2021-01-05 12:58:10 -0600151 if (static_cast<uint8_t>(pel::SubsystemID::hypervisor) == subsystem)
152 {
153 // populate hypervisor SRC words
154 tiPel->setSrcWords(std::array<uint32_t, pel::numSrcWords>{
155 (uint32_t)std::stoul(i_additional["0x10 SRC Word 12"], 0, 16),
156 (uint32_t)std::stoul(i_additional["0x14 SRC Word 13"], 0, 16),
157 (uint32_t)std::stoul(i_additional["0x18 SRC Word 14"], 0, 16),
158 (uint32_t)std::stoul(i_additional["0x1c SRC Word 15"], 0, 16),
159 (uint32_t)std::stoul(i_additional["0x20 SRC Word 16"], 0, 16),
160 (uint32_t)std::stoul(i_additional["0x24 SRC Word 17"], 0, 16),
161 (uint32_t)std::stoul(i_additional["0x28 SRC Word 18"], 0, 16),
162 (uint32_t)std::stoul(i_additional["0x2c SRC Word 19"], 0, 16)});
163
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600164 // Populate phyp primary SRC
165
166 // char array for raw pel src
Ben Tynerf5210bb2021-01-05 12:58:10 -0600167 std::array<char, pel::asciiStringSize> srcChars{'0'};
austinfcuic49d20b2022-02-22 16:36:47 -0600168 std::string srcString;
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600169
170 // src from TI info
austinfcuic49d20b2022-02-22 16:36:47 -0600171 it = i_additional.find("SrcAscii");
172 if (it != i_additional.end())
173 {
174 srcString = it->second;
175 }
176 else
177 {
178 // The entry with key "Subsystem" does not exist in the additional
179 // map. Log the error, create failure event, and return.
Zane Shelley67b82292022-03-25 09:48:40 -0500180 trace::err("Error the key SrcAscii does not exist in the map.");
austinfcuic49d20b2022-02-22 16:36:47 -0600181 eventAttentionFail((int)AttnSection::attnLogging |
182 ATTN_INVALID_KEY);
183 return;
184 }
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600185
186 // copy from string to char array
Ben Tynerf5210bb2021-01-05 12:58:10 -0600187 srcString.copy(srcChars.data(),
188 std::min(srcString.size(), pel::asciiStringSize), 0);
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600189
190 tiPel->setAsciiString(srcChars); // pel object src is char array
Ben Tynerfeeea832021-04-06 10:08:11 -0500191
192 // set symptom-id
austinfcuic49d20b2022-02-22 16:36:47 -0600193 auto symptomId = (srcString.substr(0, 8) + '_');
Ben Tynerfeeea832021-04-06 10:08:11 -0500194
195 symptomId += (i_additional["0x10 SRC Word 12"]);
196 symptomId += (i_additional["0x14 SRC Word 13"] + '_');
197 symptomId += (i_additional["0x18 SRC Word 14"]);
198 symptomId += (i_additional["0x1c SRC Word 15"] + '_');
199 symptomId += (i_additional["0x20 SRC Word 16"]);
200 symptomId += (i_additional["0x24 SRC Word 17"] + '_');
201 symptomId += (i_additional["0x28 SRC Word 18"]);
202 symptomId += (i_additional["0x2c SRC Word 19"]);
203
204 // setSymptomId will take care of required null-terminate and padding
205 tiPel->setSymptomId(symptomId);
Ben Tynerf5210bb2021-01-05 12:58:10 -0600206 }
207 else
208 {
209 // Populate hostboot SRC words - note HB word 0 from the shared info
210 // data (additional data "0x10 HB Word") is reflected in the PEL as
211 // "reason code" so we zero it here. Also note that the first word
212 // in this group of words starts at word 0 and word 1 does not exits.
213 tiPel->setSrcWords(std::array<uint32_t, pel::numSrcWords>{
214 (uint32_t)0x00000000,
215 (uint32_t)std::stoul(i_additional["0x14 HB Word 2"], 0, 16),
216 (uint32_t)std::stoul(i_additional["0x18 HB Word 3"], 0, 16),
217 (uint32_t)std::stoul(i_additional["0x1c HB Word 4"], 0, 16),
218 (uint32_t)std::stoul(i_additional["0x20 HB Word 5"], 0, 16),
219 (uint32_t)std::stoul(i_additional["0x24 HB Word 6"], 0, 16),
220 (uint32_t)std::stoul(i_additional["0x28 HB Word 7"], 0, 16),
221 (uint32_t)std::stoul(i_additional["0x2c HB Word 8"], 0, 16)});
222
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600223 // Populate hostboot primary SRC
224
225 // char array for raw pel src
Ben Tynerf5210bb2021-01-05 12:58:10 -0600226 std::array<char, pel::asciiStringSize> srcChars{'0'};
austinfcuic49d20b2022-02-22 16:36:47 -0600227 std::string srcString;
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600228
229 // src from TI info
austinfcuic49d20b2022-02-22 16:36:47 -0600230 it = i_additional.find("SrcAscii");
231 if (it != i_additional.end())
232 {
233 srcString = it->second;
234 }
235 else
236 {
237 // The entry with key "Subsystem" does not exist in the additional
238 // map. Log the error, create failure event, and return.
Zane Shelley67b82292022-03-25 09:48:40 -0500239 trace::err("Error the key SrcAscii does not exist in the map.");
austinfcuic49d20b2022-02-22 16:36:47 -0600240 eventAttentionFail((int)AttnSection::attnLogging |
241 ATTN_INVALID_KEY);
242 return;
243 }
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600244
245 // copy from string to char array
Ben Tynerf5210bb2021-01-05 12:58:10 -0600246 srcString.copy(srcChars.data(),
247 std::min(srcString.size(), pel::asciiStringSize), 0);
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600248
249 tiPel->setAsciiString(srcChars); // pel object src is char array
Ben Tynerfeeea832021-04-06 10:08:11 -0500250
251 // set symptom-id
austinfcuic49d20b2022-02-22 16:36:47 -0600252 auto symptomId = (srcString.substr(0, 8) + '_');
Ben Tynerfeeea832021-04-06 10:08:11 -0500253
254 symptomId += (i_additional["0x10 HB Word 0"]); // note: word 1
255 symptomId += (i_additional["0x14 HB Word 2"] + '_'); // does not exist
256 symptomId += (i_additional["0x18 HB Word 3"]);
257 symptomId += (i_additional["0x1c HB Word 4"] + '_');
258 symptomId += (i_additional["0x20 HB Word 5"]);
259 symptomId += (i_additional["0x24 HB Word 6"] + '_');
260 symptomId += (i_additional["0x28 HB Word 7"]);
261 symptomId += (i_additional["0x2c HB Word 8"]);
262
263 // setSymptomId will take care of required null-terminate and padding
264 tiPel->setSymptomId(symptomId);
Ben Tynerf5210bb2021-01-05 12:58:10 -0600265 }
266
267 // set severity, event type and action flags
268 tiPel->setSeverity(static_cast<uint8_t>(pel::Severity::termination));
269 tiPel->setType(static_cast<uint8_t>(pel::EventType::na));
Ben Tynerac5bd052022-03-03 14:09:13 -0600270
271 auto actionFlags = pel::ActionFlags::service | pel::ActionFlags::report |
272 pel::ActionFlags::call;
273
274 it = i_additional.find("hidden");
275 if (it != i_additional.end() && "true" == it->second)
276 {
277 trace::inf("making HB TI PEL hidden");
278 actionFlags = actionFlags | pel::ActionFlags::hidden;
279 }
280
281 tiPel->setAction(static_cast<uint16_t>(actionFlags));
Ben Tynerf5210bb2021-01-05 12:58:10 -0600282
Ben Tyner21cc6272022-10-05 18:26:36 -0500283 // The raw PEL that we used as the basis for this custom PEL contains some
284 // user data sections that do not need to be in this PEL. However we do
285 // want to include the raw TI information.
286 int ffdcCount = 0;
Patrick Williams27dd6362023-05-10 07:51:20 -0500287 it = i_additional.find("FFDC count");
Ben Tyner21cc6272022-10-05 18:26:36 -0500288 if (it != i_additional.end())
289 {
290 // remove all sections except 1 (raw Ti info)
291 ffdcCount = std::stoi(it->second) - 1;
292 }
293 tiPel->setSectionCount(tiPel->getSectionCount() - ffdcCount);
Ben Tynerf5210bb2021-01-05 12:58:10 -0600294
295 // Update the raw PEL with the new custom PEL data
296 tiPel->raw(i_rawPel);
297
298 // create PEL from raw data
299 createPelRaw(i_rawPel);
300}
301
302/**
303 * Log an event handled by the attention handler
304 *
305 * Basic (non TI) events will generate a standard message-registry based PEL
306 *
307 * TI events will create two PEL's. One PEL will be informational and will
308 * contain trace information relevent to attention handler. The second PEL
309 * will be specific to the TI type (including the primary SRC) and will be
310 * based off of the TI information provided to the attention handler through
311 * shared TI info data area.
312 *
313 * @param i_event - The event type
314 * @param i_additional - Additional PEL data
315 * @param i_ffdc - FFDC PEL data
Ben Tyner90516852022-12-14 21:04:18 -0600316 * @param i_severity - Severity level
Ben Tyner7f6ce6a2021-08-17 19:40:00 -0500317 * @return Event log Id (0 if no event log generated)
Ben Tynerf5210bb2021-01-05 12:58:10 -0600318 */
Ben Tyner7f6ce6a2021-08-17 19:40:00 -0500319uint32_t event(EventType i_event,
320 std::map<std::string, std::string>& i_additional,
Ben Tyner90516852022-12-14 21:04:18 -0600321 const std::vector<util::FFDCFile>& i_ffdc,
322 std::string i_severity = levelPelError)
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500323{
Patrick Williams27dd6362023-05-10 07:51:20 -0500324 uint32_t pelId = 0; // assume no event log generated
Ben Tyner7f6ce6a2021-08-17 19:40:00 -0500325
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500326 bool eventValid = false; // assume no event created
Patrick Williams27dd6362023-05-10 07:51:20 -0500327 bool tiEvent = false; // assume not a terminate event
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500328
Ben Tyner21cc6272022-10-05 18:26:36 -0500329 // count user data sections so we can fixup custom PEL
330 i_additional["FFDC count"] = std::to_string(i_ffdc.size());
331
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500332 std::string eventName;
333
334 switch (i_event)
335 {
336 case EventType::Checkstop:
Patrick Williams27dd6362023-05-10 07:51:20 -0500337 eventName = "org.open_power.HwDiags.Error.Checkstop";
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500338 eventValid = true;
339 break;
340 case EventType::Terminate:
Patrick Williams27dd6362023-05-10 07:51:20 -0500341 eventName = "org.open_power.Attn.Error.Terminate";
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500342 eventValid = true;
Patrick Williams27dd6362023-05-10 07:51:20 -0500343 tiEvent = true;
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500344 break;
345 case EventType::Vital:
Patrick Williams27dd6362023-05-10 07:51:20 -0500346 eventName = "org.open_power.Attn.Error.Vital";
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500347 eventValid = true;
348 break;
349 case EventType::HwDiagsFail:
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500350 case EventType::AttentionFail:
Patrick Williams27dd6362023-05-10 07:51:20 -0500351 eventName = "org.open_power.Attn.Error.Fail";
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500352 eventValid = true;
353 break;
354 default:
355 eventValid = false;
356 break;
357 }
358
359 if (true == eventValid)
360 {
Ben Tynerf5210bb2021-01-05 12:58:10 -0600361 // Create PEL with additional data and FFDC data. The newly created
362 // PEL's platform log-id will be returned.
Ben Tyner90516852022-12-14 21:04:18 -0600363 pelId = util::dbus::createPel(eventName, i_severity, i_additional,
Ben Tyner13159682022-02-16 14:55:38 -0600364 createFFDCTuples(i_ffdc));
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500365
Ben Tynerf5210bb2021-01-05 12:58:10 -0600366 // If this is a TI event we will create an additional PEL that is
367 // specific to the subsystem that generated the TI.
Ben Tyner135793a2021-10-27 09:18:41 -0500368 if ((0 != pelId) && (true == tiEvent))
Ben Tynerf5210bb2021-01-05 12:58:10 -0600369 {
370 // get file descriptor and size of information PEL
Ben Tyner188f1092021-02-01 09:33:06 -0600371 int pelFd = getPel(pelId);
Ben Tyner1b1915e2020-10-23 15:13:38 -0500372
Ben Tynerf5210bb2021-01-05 12:58:10 -0600373 // if PEL found, read into buffer
374 if (-1 != pelFd)
375 {
376 auto pelSize = lseek(pelFd, 0, SEEK_END);
377 lseek(pelFd, 0, SEEK_SET);
Ben Tyner1b1915e2020-10-23 15:13:38 -0500378
Ben Tynerf5210bb2021-01-05 12:58:10 -0600379 // read information PEL into buffer
380 std::vector<uint8_t> buffer(pelSize);
Ben Tynerd7006092021-02-05 14:55:52 -0600381 size_t numBytes = read(pelFd, buffer.data(), buffer.size());
382 if (buffer.size() != numBytes)
383 {
austinfcuibfa831a2022-01-26 15:37:07 -0600384 trace::err("Error reading event log: %u of %u bytes read",
385 numBytes, buffer.size());
Ben Tynerd7006092021-02-05 14:55:52 -0600386 }
387 else
388 {
389 // create PEL from buffer
390 createPelCustom(buffer, i_additional);
391 }
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500392
Ben Tynerd7006092021-02-05 14:55:52 -0600393 close(pelFd);
Ben Tynerf5210bb2021-01-05 12:58:10 -0600394 }
Ben Tyner5c5db652021-02-22 18:22:35 -0600395
austinfcuic49d20b2022-02-22 16:36:47 -0600396 std::map<std::string, std::string>::iterator it;
397 uint8_t subsystem;
398
399 it = i_additional.find("Subsystem");
400 if (it != i_additional.end())
401 {
402 subsystem = std::stoi(it->second);
403 }
404 else
405 {
406 // The entry with key "Subsystem" does not exist in the
407 // additional map. Log the error, create failure event, and
408 // return.
Zane Shelley67b82292022-03-25 09:48:40 -0500409 trace::err(
410 "Error the key Subsystem does not exist in the map.");
austinfcuic49d20b2022-02-22 16:36:47 -0600411 eventAttentionFail((int)AttnSection::attnLogging |
412 ATTN_INVALID_KEY);
413 return 0;
414 }
Ben Tyner5c5db652021-02-22 18:22:35 -0600415
Ben Tyner6bc43c92021-05-27 15:08:02 -0500416 // If not hypervisor TI
417 if (static_cast<uint8_t>(pel::SubsystemID::hypervisor) != subsystem)
Ben Tyner5c5db652021-02-22 18:22:35 -0600418 {
Ben Tyner6bc43c92021-05-27 15:08:02 -0500419 // Request a dump and transition the host
420 if ("true" == i_additional["Dump"])
421 {
422 // will not return until dump is complete
Zane Shelley611b3442021-11-19 16:02:01 -0600423 requestDump(pelId, DumpParameters{0, DumpType::Hostboot});
Ben Tyner6bc43c92021-05-27 15:08:02 -0500424 }
Ben Tyner5c5db652021-02-22 18:22:35 -0600425 }
426 }
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500427 }
Ben Tyner7f6ce6a2021-08-17 19:40:00 -0500428 return pelId;
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500429}
430
Ben Tynerf5210bb2021-01-05 12:58:10 -0600431/**
432 * Commit special attention TI event to log
433 *
434 * Create a event log with provided additional information and standard
435 * FFDC data plus TI FFDC data
436 *
437 * @param i_additional - Additional log data
438 * @param i_ti_InfoData - TI FFDC data
439 */
440void eventTerminate(std::map<std::string, std::string> i_additionalData,
441 char* i_tiInfoData)
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500442{
Ben Tyner29651ef2021-02-08 10:51:03 -0600443 uint32_t tiInfoSize = 0; // assume TI info was not available
Ben Tynerb6401ed2021-01-11 09:08:07 -0600444
Ben Tyner29651ef2021-02-08 10:51:03 -0600445 if (nullptr != i_tiInfoData)
Ben Tynerb6401ed2021-01-11 09:08:07 -0600446 {
Ben Tyner29651ef2021-02-08 10:51:03 -0600447 tiInfoSize = 56; // assume not hypervisor TI
Ben Tynerb6401ed2021-01-11 09:08:07 -0600448
austinfcuic49d20b2022-02-22 16:36:47 -0600449 std::map<std::string, std::string>::iterator it;
450 uint8_t subsystem;
451
452 it = i_additionalData.find("Subsystem");
453 if (it != i_additionalData.end())
454 {
455 subsystem = std::stoi(it->second);
456 }
457 else
458 {
459 // The entry with key "Subsystem" does not exist in the additional
460 // map. Log the error, create failure event, and return.
Zane Shelley67b82292022-03-25 09:48:40 -0500461 trace::err("Error the key Subsystem does not exist in the map.");
austinfcuic49d20b2022-02-22 16:36:47 -0600462 eventAttentionFail((int)AttnSection::attnLogging |
463 ATTN_INVALID_KEY);
464 return;
465 }
Ben Tyner29651ef2021-02-08 10:51:03 -0600466
467 // If hypervisor
468 if (static_cast<uint8_t>(pel::SubsystemID::hypervisor) == subsystem)
Ben Tynerb6401ed2021-01-11 09:08:07 -0600469 {
Ben Tyner29651ef2021-02-08 10:51:03 -0600470 tiInfoSize = 1024; // assume hypervisor max
Ben Tynerb6401ed2021-01-11 09:08:07 -0600471
Ben Tyner29651ef2021-02-08 10:51:03 -0600472 // hypervisor may just want some of the data
473 if (0 == (*(i_tiInfoData + 0x09) & 0x01))
474 {
475 uint32_t* additionalLength = (uint32_t*)(i_tiInfoData + 0x50);
Patrick Williams27dd6362023-05-10 07:51:20 -0500476 uint32_t tiAdditional = be32toh(*additionalLength);
Ben Tyner29651ef2021-02-08 10:51:03 -0600477 tiInfoSize = std::min(tiInfoSize, (84 + tiAdditional));
478 }
Ben Tynerb6401ed2021-01-11 09:08:07 -0600479 }
480 }
481
austinfcuibfa831a2022-01-26 15:37:07 -0600482 trace::inf("TI info size = %u", tiInfoSize);
Ben Tynerb6401ed2021-01-11 09:08:07 -0600483
Zane Shelley60cb2e42024-02-28 16:21:55 -0600484 auto userData = createFFDCFiles(i_tiInfoData, tiInfoSize);
485
486 // Per request from the Hostboot team. Add a level 2 callout.
Zane Shelley169c4d72024-04-01 09:06:49 -0500487 userData.emplace_back(util::FFDCFormat::Custom, 0xCA, 0x01);
Zane Shelley60cb2e42024-02-28 16:21:55 -0600488 std::ofstream o{userData.back().getPath()};
489 o << nlohmann::json::parse(R"(
490 [ { "Procedure": "next_level_support", "Priority": "L" } ]
491 )");
492
493 event(EventType::Terminate, i_additionalData, userData);
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500494}
495
Ben Tyner7f6ce6a2021-08-17 19:40:00 -0500496/** @brief Commit SBE vital event to log, returns event log ID */
Ben Tyner90516852022-12-14 21:04:18 -0600497uint32_t eventVital(std::string severity)
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500498{
Ben Tynerf5210bb2021-01-05 12:58:10 -0600499 // Additional data for log
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500500 std::map<std::string, std::string> additionalData;
501
Ben Tynerf5210bb2021-01-05 12:58:10 -0600502 // Create log event with additional data and FFDC data
Ben Tyner90516852022-12-14 21:04:18 -0600503 return event(EventType::Vital, additionalData, createFFDCFiles(nullptr, 0),
504 severity);
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500505}
506
Ben Tynerf5210bb2021-01-05 12:58:10 -0600507/**
Ben Tynerf5210bb2021-01-05 12:58:10 -0600508 * Commit attention handler failure event to log
509 *
510 * Create an event log containing the specified error code.
511 *
512 * @param i_error - Error code
513 */
514void eventAttentionFail(int i_error)
515{
516 // Additional data for log
517 std::map<std::string, std::string> additionalData;
518 additionalData["ERROR_CODE"] = std::to_string(i_error);
519
520 // Create log event with additional data and FFDC data
521 event(EventType::AttentionFail, additionalData,
522 createFFDCFiles(nullptr, 0));
523}
524
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500525} // namespace attn