blob: 73eebdf40a1be705554a2d021f187beb0999a541 [file] [log] [blame]
Ben Tynerb1ebfcb2020-05-08 18:52:48 -05001#include <unistd.h>
2
Ben Tyner5c5db652021-02-22 18:22:35 -06003#include <attn/attn_common.hpp>
Ben Tyner188f1092021-02-01 09:33:06 -06004#include <attn/attn_dbus.hpp>
Ben Tynerb797b3e2020-06-29 10:12:05 -05005#include <attn/attn_logging.hpp>
Ben Tynerf5210bb2021-01-05 12:58:10 -06006#include <attn/pel/pel_minimal.hpp>
Ben Tyner5c5db652021-02-22 18:22:35 -06007#include <attn/ti_handler.hpp>
Ben Tynerb1ebfcb2020-05-08 18:52:48 -05008#include <phosphor-logging/log.hpp>
Ben Tynerf5210bb2021-01-05 12:58:10 -06009
Ben Tynerb1ebfcb2020-05-08 18:52:48 -050010namespace attn
11{
12
Ben Tynerf5210bb2021-01-05 12:58:10 -060013/** @brief Journal entry of type INFO using phosphor logging */
Ben Tynerb1ebfcb2020-05-08 18:52:48 -050014template <>
15void trace<INFO>(const char* i_message)
16{
17 phosphor::logging::log<phosphor::logging::level::INFO>(i_message);
18}
19
Ben Tynerd7006092021-02-05 14:55:52 -060020template <>
21void trace<ERROR>(const char* i_message)
22{
23 phosphor::logging::log<phosphor::logging::level::ERR>(i_message);
24}
25
Ben Tynerf5210bb2021-01-05 12:58:10 -060026/** @brief Tuple containing information about ffdc files */
27using FFDCTuple =
28 std::tuple<util::FFDCFormat, uint8_t, uint8_t, sdbusplus::message::unix_fd>;
29
30/** @brief Gather messages from the journal */
31std::vector<std::string> sdjGetMessages(const std::string& field,
32 const std::string& fieldValue,
33 unsigned int max);
34
35/**
36 * Create FFDCTuple objects corresponding to the specified FFDC files.
37 *
38 * The D-Bus method to create an error log requires a vector of tuples to
39 * pass in the FFDC file information.
40 *
41 * @param files - FFDC files
42 * @return vector of FFDCTuple objects
43 */
44std::vector<FFDCTuple>
45 createFFDCTuples(const std::vector<util::FFDCFile>& files)
46{
47 std::vector<FFDCTuple> ffdcTuples{};
Zane Shelleya79f6c82021-01-12 16:38:49 -060048 util::transformFFDC(files, ffdcTuples);
Ben Tynerf5210bb2021-01-05 12:58:10 -060049
50 return ffdcTuples;
51}
52
53/**
54 * @brief Create an FFDCFile object containing raw data
55 *
56 * Throws an exception if an error occurs.
57 *
58 * @param i_buffer - raw data to add to ffdc faw data file
59 * @param i_size - size of the raw data
60 * @return FFDCFile object
61 */
62util::FFDCFile createFFDCRawFile(void* i_buffer, size_t i_size)
63{
64 util::FFDCFile file{util::FFDCFormat::Custom};
65
66 // Write buffer to file and then reset file description file offset
Ben Tynerd7006092021-02-05 14:55:52 -060067 int fd = file.getFileDescriptor();
68 size_t numBytes = write(fd, static_cast<char*>(i_buffer), i_size);
69 if (i_size != numBytes)
70 {
71 std::stringstream traceMsg;
72 traceMsg << file.getPath().c_str() << " only " << (int)numBytes
73 << " of " << (int)i_size << " bytes written";
74 auto strobj = traceMsg.str();
75 trace<level::ERROR>(strobj.c_str());
76 }
77
Ben Tynerf5210bb2021-01-05 12:58:10 -060078 lseek(fd, 0, SEEK_SET);
79
80 return file;
81}
82
83/**
84 * @brief Create an FFDCFile object containing the specified lines of text data
85 *
86 * Throws an exception if an error occurs.
87 *
88 * @param lines - lines of text data to write to file
89 * @return FFDCFile object
90 */
91util::FFDCFile createFFDCTraceFile(const std::vector<std::string>& lines)
92{
93 // Create FFDC file of type Text
94 util::FFDCFile file{util::FFDCFormat::Text};
95 int fd = file.getFileDescriptor();
96
97 // Write FFDC lines to file
98 std::string buffer;
99 for (const std::string& line : lines)
100 {
101 // Copy line to buffer. Add newline if necessary.
102 buffer = line;
103 if (line.empty() || (line.back() != '\n'))
104 {
105 buffer += '\n';
106 }
107
108 // write buffer to file
Ben Tynerd7006092021-02-05 14:55:52 -0600109 size_t numBytes = write(fd, buffer.c_str(), buffer.size());
110 if (buffer.size() != numBytes)
111 {
112 std::stringstream traceMsg;
113 traceMsg << file.getPath().c_str() << " only " << (int)numBytes
114 << " of " << (int)buffer.size() << " bytes written";
115 auto strobj = traceMsg.str();
116 trace<level::ERROR>(strobj.c_str());
117 }
Ben Tynerf5210bb2021-01-05 12:58:10 -0600118 }
119
120 // Seek to beginning of file so error logging system can read data
121 lseek(fd, 0, SEEK_SET);
122
123 return file;
124}
125
126/**
127 * Create FDDC files from journal messages of relevant executables
128 *
129 * Parse the system journal looking for log entries created by the executables
130 * of interest for logging. For each of these entries create a ffdc trace file
131 * that will be used to create ffdc log entries. These files will be pushed
132 * onto the stack of ffdc files.
133 *
134 * @param i_files - vector of ffdc files that will become log entries
135 */
136void createFFDCTraceFiles(std::vector<util::FFDCFile>& i_files)
137{
138 // Executables of interest
139 std::vector<std::string> executables{"openpower-hw-diags"};
140
141 for (const std::string& executable : executables)
142 {
143 try
144 {
145 // get journal messages
146 std::vector<std::string> messages =
147 sdjGetMessages("SYSLOG_IDENTIFIER", executable, 30);
148
149 // Create FFDC file containing the journal messages
150 if (!messages.empty())
151 {
152 i_files.emplace_back(createFFDCTraceFile(messages));
153 }
154 }
155 catch (const std::exception& e)
156 {
Ben Tyner6764d702021-02-12 09:17:23 -0600157 trace<level::INFO>("createFFDCTraceFiles exception");
158 std::string traceMsg = std::string(e.what(), maxTraceLen);
159 trace<level::INFO>(traceMsg.c_str());
Ben Tynerf5210bb2021-01-05 12:58:10 -0600160 }
161 }
162}
163
164/**
165 * Create FFDCFile objects containing debug data to store in the error log.
166 *
167 * If an error occurs, the error is written to the journal but an exception
168 * is not thrown.
169 *
170 * @param i_buffer - raw data (if creating raw dump ffdc entry in log)
171 * @return vector of FFDCFile objects
172 */
173std::vector<util::FFDCFile> createFFDCFiles(char* i_buffer = nullptr,
174 size_t i_size = 0)
175{
176 std::vector<util::FFDCFile> files{};
177
178 // Create raw dump file
179 if ((nullptr != i_buffer) && (0 != i_size))
180 {
181 files.emplace_back(createFFDCRawFile(i_buffer, i_size));
182 }
183
184 // Create trace dump file
185 createFFDCTraceFiles(files);
186
187 return files;
188}
189
190/**
Ben Tynerf5210bb2021-01-05 12:58:10 -0600191 * Create a PEL from an existing PEL
192 *
193 * Create a new PEL based on the specified raw PEL and submit the new PEL
194 * to the backend logging code as a raw PEL. Note that additional data map
195 * here contains data to be committed to the PEL and it can also be used to
196 * create the PEL as it contains needed information.
197 *
198 * @param i_buffer - buffer containing a raw PEL
199 * @param i_additional - additional data to be added to the new PEL
200 */
201void createPelCustom(std::vector<uint8_t>& i_rawPel,
202 std::map<std::string, std::string> i_additional)
203{
204 // create PEL object from buffer
205 auto tiPel = std::make_unique<pel::PelMinimal>(i_rawPel);
206
207 // The additional data contains the TI info as well as the value for the
208 // subystem that provided the TI info. Get the subystem from additional
209 // data and then populate the prmary SRC and SRC words for the custom PEL
210 // based on the sybsystem's TI info.
211 uint8_t subsystem = std::stoi(i_additional["Subsystem"]);
212 tiPel->setSubsystem(subsystem);
213
214 if (static_cast<uint8_t>(pel::SubsystemID::hypervisor) == subsystem)
215 {
216 // populate hypervisor SRC words
217 tiPel->setSrcWords(std::array<uint32_t, pel::numSrcWords>{
218 (uint32_t)std::stoul(i_additional["0x10 SRC Word 12"], 0, 16),
219 (uint32_t)std::stoul(i_additional["0x14 SRC Word 13"], 0, 16),
220 (uint32_t)std::stoul(i_additional["0x18 SRC Word 14"], 0, 16),
221 (uint32_t)std::stoul(i_additional["0x1c SRC Word 15"], 0, 16),
222 (uint32_t)std::stoul(i_additional["0x20 SRC Word 16"], 0, 16),
223 (uint32_t)std::stoul(i_additional["0x24 SRC Word 17"], 0, 16),
224 (uint32_t)std::stoul(i_additional["0x28 SRC Word 18"], 0, 16),
225 (uint32_t)std::stoul(i_additional["0x2c SRC Word 19"], 0, 16)});
226
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600227 // Populate phyp primary SRC
228
229 // char array for raw pel src
Ben Tynerf5210bb2021-01-05 12:58:10 -0600230 std::array<char, pel::asciiStringSize> srcChars{'0'};
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600231
232 // src from TI info
Ben Tynerf5210bb2021-01-05 12:58:10 -0600233 std::string srcString = i_additional["SrcAscii"];
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600234
235 // copy from string to char array
Ben Tynerf5210bb2021-01-05 12:58:10 -0600236 srcString.copy(srcChars.data(),
237 std::min(srcString.size(), pel::asciiStringSize), 0);
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600238
239 tiPel->setAsciiString(srcChars); // pel object src is char array
Ben Tynerfeeea832021-04-06 10:08:11 -0500240
241 // set symptom-id
242 auto symptomId = (i_additional["SrcAscii"].substr(0, 8) + '_');
243
244 symptomId += (i_additional["0x10 SRC Word 12"]);
245 symptomId += (i_additional["0x14 SRC Word 13"] + '_');
246 symptomId += (i_additional["0x18 SRC Word 14"]);
247 symptomId += (i_additional["0x1c SRC Word 15"] + '_');
248 symptomId += (i_additional["0x20 SRC Word 16"]);
249 symptomId += (i_additional["0x24 SRC Word 17"] + '_');
250 symptomId += (i_additional["0x28 SRC Word 18"]);
251 symptomId += (i_additional["0x2c SRC Word 19"]);
252
253 // setSymptomId will take care of required null-terminate and padding
254 tiPel->setSymptomId(symptomId);
Ben Tynerf5210bb2021-01-05 12:58:10 -0600255 }
256 else
257 {
258 // Populate hostboot SRC words - note HB word 0 from the shared info
259 // data (additional data "0x10 HB Word") is reflected in the PEL as
260 // "reason code" so we zero it here. Also note that the first word
261 // in this group of words starts at word 0 and word 1 does not exits.
262 tiPel->setSrcWords(std::array<uint32_t, pel::numSrcWords>{
263 (uint32_t)0x00000000,
264 (uint32_t)std::stoul(i_additional["0x14 HB Word 2"], 0, 16),
265 (uint32_t)std::stoul(i_additional["0x18 HB Word 3"], 0, 16),
266 (uint32_t)std::stoul(i_additional["0x1c HB Word 4"], 0, 16),
267 (uint32_t)std::stoul(i_additional["0x20 HB Word 5"], 0, 16),
268 (uint32_t)std::stoul(i_additional["0x24 HB Word 6"], 0, 16),
269 (uint32_t)std::stoul(i_additional["0x28 HB Word 7"], 0, 16),
270 (uint32_t)std::stoul(i_additional["0x2c HB Word 8"], 0, 16)});
271
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600272 // Populate hostboot primary SRC
273
274 // char array for raw pel src
Ben Tynerf5210bb2021-01-05 12:58:10 -0600275 std::array<char, pel::asciiStringSize> srcChars{'0'};
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600276
277 // src from TI info
278 std::string srcString = i_additional["SrcAscii"];
279
280 // copy from string to char array
Ben Tynerf5210bb2021-01-05 12:58:10 -0600281 srcString.copy(srcChars.data(),
282 std::min(srcString.size(), pel::asciiStringSize), 0);
Ben Tyner9d4f91c2021-02-09 08:27:58 -0600283
284 tiPel->setAsciiString(srcChars); // pel object src is char array
Ben Tynerfeeea832021-04-06 10:08:11 -0500285
286 // set symptom-id
287 auto symptomId = (i_additional["SrcAscii"].substr(0, 8) + '_');
288
289 symptomId += (i_additional["0x10 HB Word 0"]); // note: word 1
290 symptomId += (i_additional["0x14 HB Word 2"] + '_'); // does not exist
291 symptomId += (i_additional["0x18 HB Word 3"]);
292 symptomId += (i_additional["0x1c HB Word 4"] + '_');
293 symptomId += (i_additional["0x20 HB Word 5"]);
294 symptomId += (i_additional["0x24 HB Word 6"] + '_');
295 symptomId += (i_additional["0x28 HB Word 7"]);
296 symptomId += (i_additional["0x2c HB Word 8"]);
297
298 // setSymptomId will take care of required null-terminate and padding
299 tiPel->setSymptomId(symptomId);
Ben Tynerf5210bb2021-01-05 12:58:10 -0600300 }
301
302 // set severity, event type and action flags
303 tiPel->setSeverity(static_cast<uint8_t>(pel::Severity::termination));
304 tiPel->setType(static_cast<uint8_t>(pel::EventType::na));
305 tiPel->setAction(static_cast<uint16_t>(pel::ActionFlags::service |
306 pel::ActionFlags::report |
307 pel::ActionFlags::call));
308
309 // The raw PEL that we used as the basis for this custom PEL contains the
310 // attention handler trace data and does not needed to be in this PEL so
311 // we remove it here.
312 tiPel->setSectionCount(tiPel->getSectionCount() - 1);
313
314 // Update the raw PEL with the new custom PEL data
315 tiPel->raw(i_rawPel);
316
317 // create PEL from raw data
318 createPelRaw(i_rawPel);
319}
320
321/**
322 * Log an event handled by the attention handler
323 *
324 * Basic (non TI) events will generate a standard message-registry based PEL
325 *
326 * TI events will create two PEL's. One PEL will be informational and will
327 * contain trace information relevent to attention handler. The second PEL
328 * will be specific to the TI type (including the primary SRC) and will be
329 * based off of the TI information provided to the attention handler through
330 * shared TI info data area.
331 *
332 * @param i_event - The event type
333 * @param i_additional - Additional PEL data
334 * @param i_ffdc - FFDC PEL data
335 */
336void event(EventType i_event, std::map<std::string, std::string>& i_additional,
337 const std::vector<util::FFDCFile>& i_ffdc)
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500338{
339 bool eventValid = false; // assume no event created
Ben Tynerf5210bb2021-01-05 12:58:10 -0600340 bool tiEvent = false; // assume not a terminate event
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500341
342 std::string eventName;
343
344 switch (i_event)
345 {
346 case EventType::Checkstop:
347 eventName = "org.open_power.HwDiags.Error.Checkstop";
348 eventValid = true;
349 break;
350 case EventType::Terminate:
351 eventName = "org.open_power.Attn.Error.Terminate";
352 eventValid = true;
Ben Tynerf5210bb2021-01-05 12:58:10 -0600353 tiEvent = true;
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500354 break;
355 case EventType::Vital:
356 eventName = "org.open_power.Attn.Error.Vital";
357 eventValid = true;
358 break;
359 case EventType::HwDiagsFail:
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500360 case EventType::AttentionFail:
361 eventName = "org.open_power.Attn.Error.Fail";
362 eventValid = true;
363 break;
364 default:
365 eventValid = false;
366 break;
367 }
368
369 if (true == eventValid)
370 {
Ben Tynerf5210bb2021-01-05 12:58:10 -0600371 // Create PEL with additional data and FFDC data. The newly created
372 // PEL's platform log-id will be returned.
373 auto pelId =
374 createPel(eventName, i_additional, createFFDCTuples(i_ffdc));
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500375
Ben Tynerf5210bb2021-01-05 12:58:10 -0600376 // If this is a TI event we will create an additional PEL that is
377 // specific to the subsystem that generated the TI.
Ben Tyner29651ef2021-02-08 10:51:03 -0600378 if ((true == tiEvent) && (0 != pelId))
Ben Tynerf5210bb2021-01-05 12:58:10 -0600379 {
380 // get file descriptor and size of information PEL
Ben Tyner188f1092021-02-01 09:33:06 -0600381 int pelFd = getPel(pelId);
Ben Tyner1b1915e2020-10-23 15:13:38 -0500382
Ben Tynerf5210bb2021-01-05 12:58:10 -0600383 // if PEL found, read into buffer
384 if (-1 != pelFd)
385 {
386 auto pelSize = lseek(pelFd, 0, SEEK_END);
387 lseek(pelFd, 0, SEEK_SET);
Ben Tyner1b1915e2020-10-23 15:13:38 -0500388
Ben Tynerf5210bb2021-01-05 12:58:10 -0600389 // read information PEL into buffer
390 std::vector<uint8_t> buffer(pelSize);
Ben Tynerd7006092021-02-05 14:55:52 -0600391 size_t numBytes = read(pelFd, buffer.data(), buffer.size());
392 if (buffer.size() != numBytes)
393 {
394 std::stringstream traceMsg;
395 traceMsg << "Error reading event log: " << (int)numBytes
396 << " of " << (int)buffer.size() << " bytes read";
397 auto strobj = traceMsg.str();
398 trace<level::ERROR>(strobj.c_str());
399 }
400 else
401 {
402 // create PEL from buffer
403 createPelCustom(buffer, i_additional);
404 }
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500405
Ben Tynerd7006092021-02-05 14:55:52 -0600406 close(pelFd);
Ben Tynerf5210bb2021-01-05 12:58:10 -0600407 }
408 }
Ben Tyner5c5db652021-02-22 18:22:35 -0600409
410 uint8_t subsystem = std::stoi(i_additional["Subsystem"]);
411
412 // If not hypervisor TI
413 if (static_cast<uint8_t>(pel::SubsystemID::hypervisor) != subsystem)
414 {
415 // Request a dump and transition the host
416 if ("true" == i_additional["Dump"])
417 {
418 requestDump(pelId); // will not return until dump is complete
419 }
420 }
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500421 }
422}
423
Ben Tynerf5210bb2021-01-05 12:58:10 -0600424/**
425 * Commit special attention TI event to log
426 *
427 * Create a event log with provided additional information and standard
428 * FFDC data plus TI FFDC data
429 *
430 * @param i_additional - Additional log data
431 * @param i_ti_InfoData - TI FFDC data
432 */
433void eventTerminate(std::map<std::string, std::string> i_additionalData,
434 char* i_tiInfoData)
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500435{
Ben Tynerb6401ed2021-01-11 09:08:07 -0600436
Ben Tyner29651ef2021-02-08 10:51:03 -0600437 uint32_t tiInfoSize = 0; // assume TI info was not available
Ben Tynerb6401ed2021-01-11 09:08:07 -0600438
Ben Tyner29651ef2021-02-08 10:51:03 -0600439 if (nullptr != i_tiInfoData)
Ben Tynerb6401ed2021-01-11 09:08:07 -0600440 {
Ben Tyner29651ef2021-02-08 10:51:03 -0600441 tiInfoSize = 56; // assume not hypervisor TI
Ben Tynerb6401ed2021-01-11 09:08:07 -0600442
Ben Tyner29651ef2021-02-08 10:51:03 -0600443 uint8_t subsystem = std::stoi(i_additionalData["Subsystem"]);
444
445 // If hypervisor
446 if (static_cast<uint8_t>(pel::SubsystemID::hypervisor) == subsystem)
Ben Tynerb6401ed2021-01-11 09:08:07 -0600447 {
Ben Tyner29651ef2021-02-08 10:51:03 -0600448 tiInfoSize = 1024; // assume hypervisor max
Ben Tynerb6401ed2021-01-11 09:08:07 -0600449
Ben Tyner29651ef2021-02-08 10:51:03 -0600450 // hypervisor may just want some of the data
451 if (0 == (*(i_tiInfoData + 0x09) & 0x01))
452 {
453 uint32_t* additionalLength = (uint32_t*)(i_tiInfoData + 0x50);
454 uint32_t tiAdditional = be32toh(*additionalLength);
455 tiInfoSize = std::min(tiInfoSize, (84 + tiAdditional));
456 }
Ben Tynerb6401ed2021-01-11 09:08:07 -0600457 }
458 }
459
460 std::string traceMsg = "TI info size = " + std::to_string(tiInfoSize);
461 trace<level::INFO>(traceMsg.c_str());
462
Ben Tynerf5210bb2021-01-05 12:58:10 -0600463 event(EventType::Terminate, i_additionalData,
Ben Tynerb6401ed2021-01-11 09:08:07 -0600464 createFFDCFiles(i_tiInfoData, tiInfoSize));
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500465}
466
Ben Tynerf5210bb2021-01-05 12:58:10 -0600467/** @brief Commit SBE vital event to log */
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500468void eventVital()
469{
Ben Tynerf5210bb2021-01-05 12:58:10 -0600470 // Additional data for log
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500471 std::map<std::string, std::string> additionalData;
472
Ben Tynerf5210bb2021-01-05 12:58:10 -0600473 // Create log event with additional data and FFDC data
474 event(EventType::Vital, additionalData, createFFDCFiles(nullptr, 0));
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500475}
476
Ben Tynerf5210bb2021-01-05 12:58:10 -0600477/**
Ben Tynerf5210bb2021-01-05 12:58:10 -0600478 * Commit attention handler failure event to log
479 *
480 * Create an event log containing the specified error code.
481 *
482 * @param i_error - Error code
483 */
484void eventAttentionFail(int i_error)
485{
486 // Additional data for log
487 std::map<std::string, std::string> additionalData;
488 additionalData["ERROR_CODE"] = std::to_string(i_error);
489
490 // Create log event with additional data and FFDC data
491 event(EventType::AttentionFail, additionalData,
492 createFFDCFiles(nullptr, 0));
493}
494
495/**
496 * Parse systemd journal message field
497 *
498 * Parse the journal looking for the specified field and return the journal
499 * data for that field.
500 *
501 * @param journal - The journal to parse
502 * @param field - Field containing the data to retrieve
503 * @return Data for the speciefied field
504 */
Ben Tyner1b1915e2020-10-23 15:13:38 -0500505std::string sdjGetFieldValue(sd_journal* journal, const char* field)
506{
507 const char* data{nullptr};
508 size_t length{0};
Ben Tyner1b1915e2020-10-23 15:13:38 -0500509
510 // get field value
511 if (0 == sd_journal_get_data(journal, field, (const void**)&data, &length))
512 {
Zane Shelley9fb657f2021-01-12 15:30:58 -0600513 size_t prefix{0};
514
Ben Tyner1b1915e2020-10-23 15:13:38 -0500515 // The data returned by sd_journal_get_data will be prefixed with the
516 // field name and "="
517 const void* eq = memchr(data, '=', length);
518 if (nullptr != eq)
519 {
520 // get just data following the "="
521 prefix = (const char*)eq - data + 1;
522 }
523 else
524 {
525 // all the data (should not happen)
526 prefix = 0;
527 std::string value{}; // empty string
528 }
529
530 return std::string{data + prefix, length - prefix};
531 }
532 else
533 {
534 return std::string{}; // empty string
535 }
536}
537
Ben Tynerf5210bb2021-01-05 12:58:10 -0600538/**
539 * Gather messages from the journal
540 *
541 * Fetch journal entry data for all entries with the specified field equal to
542 * the specified value.
543 *
544 * @param field - Field to search on
545 * @param fieldValue - Value to search for
546 * @param max - Maximum number of messages fetch
547 * @return Vector of journal entry data
548 */
Ben Tyner1b1915e2020-10-23 15:13:38 -0500549std::vector<std::string> sdjGetMessages(const std::string& field,
550 const std::string& fieldValue,
551 unsigned int max)
552{
553 sd_journal* journal;
554 std::vector<std::string> messages;
555
556 if (0 == sd_journal_open(&journal, SD_JOURNAL_LOCAL_ONLY))
557 {
558 SD_JOURNAL_FOREACH_BACKWARDS(journal)
559 {
560 // Get input field
561 std::string value = sdjGetFieldValue(journal, field.c_str());
562
563 // Compare field value and read data
564 if (value == fieldValue)
565 {
566 // Get SYSLOG_IDENTIFIER field (process that logged message)
567 std::string syslog =
568 sdjGetFieldValue(journal, "SYSLOG_IDENTIFIER");
569
570 // Get _PID field
571 std::string pid = sdjGetFieldValue(journal, "_PID");
572
573 // Get MESSAGE field
574 std::string message = sdjGetFieldValue(journal, "MESSAGE");
575
576 // Get timestamp
577 uint64_t usec{0};
578 if (0 == sd_journal_get_realtime_usec(journal, &usec))
579 {
580
581 // Convert realtime microseconds to date format
582 char dateBuffer[80];
583 std::string date;
584 std::time_t timeInSecs = usec / 1000000;
585 strftime(dateBuffer, sizeof(dateBuffer), "%b %d %H:%M:%S",
586 std::localtime(&timeInSecs));
587 date = dateBuffer;
588
589 // Store value to messages
590 value = date + " " + syslog + "[" + pid + "]: " + message;
591 messages.insert(messages.begin(), value);
592 }
593 }
594
595 // limit maximum number of messages
596 if (messages.size() >= max)
597 {
598 break;
599 }
600 }
601
602 sd_journal_close(journal); // close journal when done
603 }
604
605 return messages;
606}
607
Ben Tynerb1ebfcb2020-05-08 18:52:48 -0500608} // namespace attn