1 #pragma once
2 
3 #include "additional_data.hpp"
4 #include "data_interface.hpp"
5 #include "journal.hpp"
6 #include "private_header.hpp"
7 #include "registry.hpp"
8 #include "src.hpp"
9 #include "user_data.hpp"
10 #include "user_data_formats.hpp"
11 #include "user_header.hpp"
12 
13 #include <memory>
14 #include <vector>
15 
16 namespace openpower
17 {
18 namespace pels
19 {
20 
21 /**
22  * @brief Contains information about an FFDC file.
23  */
24 struct PelFFDCfile
25 {
26     UserDataFormat format;
27     uint8_t subType;
28     uint8_t version;
29     int fd;
30 };
31 
32 using PelFFDC = std::vector<PelFFDCfile>;
33 
34 constexpr uint8_t jsonCalloutSubtype = 0xCA;
35 
36 /** @class PEL
37  *
38  * @brief This class represents a specific event log format referred to as a
39  * Platform Event Log.
40  *
41  * Every field in a PEL are in structures call sections, of which there are
42  * several types.  Some sections are required, and some are optional.  In some
43  * cases there may be more than one instance of a section type.
44  *
45  * The only two required sections for every type of PEL are the Private Header
46  * section and User Header section, which must be in the first and second
47  * positions, respectively.
48  *
49  * Every section starts with an 8 byte section header, which has the section
50  * size and type, among other things.
51  *
52  * This class represents all sections with objects.
53  *
54  * The class can be constructed:
55  * - From a full formed flattened PEL.
56  * - From scratch based on an OpenBMC event and its corresponding PEL message
57  *   registry entry.
58  *
59  * The data() method allows one to retrieve the PEL as a vector<uint8_t>.  This
60  * is the format in which it is stored and transmitted.
61  */
62 class PEL
63 {
64   public:
65     PEL() = delete;
66     ~PEL() = default;
67     PEL(const PEL&) = delete;
68     PEL& operator=(const PEL&) = delete;
69     PEL(PEL&&) = delete;
70     PEL& operator=(PEL&&) = delete;
71 
72     /**
73      * @brief Constructor
74      *
75      * Build a PEL from raw data.
76      *
77      * Note: Neither this nor the following constructor can take a const vector&
78      * because the Stream class that is used to read from the vector cannot take
79      * a const.  The alternative is to make a copy of the data, but as PELs can
80      * be up to 16KB that is undesireable.
81      *
82      * @param[in] data - The PEL data
83      */
84     explicit PEL(std::vector<uint8_t>& data);
85 
86     /**
87      * @brief Constructor
88      *
89      * Build a PEL from the raw data.
90      *
91      * @param[in] data - the PEL data
92      * @param[in] obmcLogID - the corresponding OpenBMC event log ID
93      */
94     PEL(std::vector<uint8_t>& data, uint32_t obmcLogID);
95 
96     /**
97      * @brief Constructor
98      *
99      * Creates a PEL from an OpenBMC event log and its message
100      * registry entry.
101      *
102      * @param[in] entry - The message registry entry for this error
103      * @param[in] obmcLogID - ID of corresponding OpenBMC event log
104      * @param[in] timestamp - Timestamp from the event log
105      * @param[in] severity - Severity from the event log
106      * @param[in] additionalData - The AdditionalData contents
107      * @param[in] ffdcFiles - FFCD files that go into UserData sections
108      * @param[in] dataIface - The data interface object
109      * @param[in] journal - The journal object
110      */
111     PEL(const openpower::pels::message::Entry& entry, uint32_t obmcLogID,
112         uint64_t timestamp, phosphor::logging::Entry::Level severity,
113         const AdditionalData& additionalData, const PelFFDC& ffdcFiles,
114         const DataInterfaceBase& dataIface, const JournalBase& journal);
115 
116     /**
117      * @brief Convenience function to return the log ID field from the
118      *        Private Header section.
119      *
120      * @return uint32_t - the ID
121      */
122     uint32_t id() const
123     {
124         return _ph->id();
125     }
126 
127     /**
128      * @brief Convenience function to return the PLID field from the
129      *        Private Header section.
130      *
131      * @return uint32_t - the PLID
132      */
133     uint32_t plid() const
134     {
135         return _ph->plid();
136     }
137 
138     /**
139      * @brief Convenience function to return the OpenBMC event log ID field
140      * from the Private Header section.
141      *
142      * @return uint32_t - the OpenBMC event log ID
143      */
144     uint32_t obmcLogID() const
145     {
146         return _ph->obmcLogID();
147     }
148 
149     /**
150      * @brief Convenience function to return the commit time field from
151      *        the Private Header section.
152      *
153      * @return BCDTime - the timestamp
154      */
155     BCDTime commitTime() const
156     {
157         return _ph->commitTimestamp();
158     }
159 
160     /**
161      * @brief Convenience function to return the create time field from
162      *        the Private Header section.
163      *
164      * @return BCDTime - the timestamp
165      */
166     BCDTime createTime() const
167     {
168         return _ph->createTimestamp();
169     }
170 
171     /**
172      * @brief Gives access to the Private Header section class
173      *
174      * @return const PrivateHeader& - the private header
175      */
176     const PrivateHeader& privateHeader() const
177     {
178         return *_ph;
179     }
180 
181     /**
182      * @brief Gives access to the User Header section class
183      *
184      * @return const UserHeader& - the user header
185      */
186     const UserHeader& userHeader() const
187     {
188         return *_uh;
189     }
190 
191     /**
192      * @brief Gives access to the primary SRC's section class
193      *
194      * This is technically an optional section, so the return
195      * value is an std::optional<SRC*>.
196      *
197      * @return std::optional<SRC*> - the SRC section object
198      */
199     std::optional<SRC*> primarySRC() const;
200 
201     /**
202      * @brief Returns the optional sections, which is everything but
203      *        the Private and User Headers.
204      *
205      * @return const std::vector<std::unique_ptr<Section>>&
206      */
207     const std::vector<std::unique_ptr<Section>>& optionalSections() const
208     {
209         return _optionalSections;
210     }
211 
212     /**
213      * @brief Returns the PEL data.
214      *
215      * @return std::vector<uint8_t> - the raw PEL data
216      */
217     std::vector<uint8_t> data() const;
218 
219     /**
220      * @brief Returns the size of the PEL
221      *
222      * @return size_t The PEL size in bytes
223      */
224     size_t size() const;
225 
226     /**
227      * @brief Says if the PEL is valid (the sections are all valid)
228      *
229      * @return bool - if the PEL is valid
230      */
231     bool valid() const;
232 
233     /**
234      * @brief Sets the commit timestamp to the current time
235      */
236     void setCommitTime();
237 
238     /**
239      * @brief Sets the error log ID field to a unique ID.
240      */
241     void assignID();
242 
243     /**
244      * @brief Output a PEL in JSON.
245      * @param[in] registry - Registry object reference
246      * @param[in] plugins - Vector of strings of plugins found in filesystem
247      */
248     void toJSON(message::Registry& registry,
249                 const std::vector<std::string>& plugins) const;
250 
251     /**
252      * @brief Sets the host transmission state in the User Header
253      *
254      * @param[in] state - The state value
255      */
256     void setHostTransmissionState(TransmissionState state)
257     {
258         _uh->setHostTransmissionState(static_cast<uint8_t>(state));
259     }
260 
261     /**
262      * @brief Returns the host transmission state
263      *
264      * @return HostTransmissionState - The state
265      */
266     TransmissionState hostTransmissionState() const
267     {
268         return static_cast<TransmissionState>(_uh->hostTransmissionState());
269     }
270 
271     /**
272      * @brief Sets the HMC transmission state in the User Header
273      *
274      * @param[in] state - The state value
275      */
276     void setHMCTransmissionState(TransmissionState state)
277     {
278         _uh->setHMCTransmissionState(static_cast<uint8_t>(state));
279     }
280 
281     /**
282      * @brief Returns the HMC transmission state
283      *
284      * @return HMCTransmissionState - The state
285      */
286     TransmissionState hmcTransmissionState() const
287     {
288         return static_cast<TransmissionState>(_uh->hmcTransmissionState());
289     }
290 
291     /**
292      * @brief Returns true if a hardware callout is present in the primary SRC
293      *
294      * @return true if hardware callout present, false otherwise
295      */
296     bool isHwCalloutPresent() const;
297 
298     /**
299      * @brief Updates the system info data into HB extended user
300      *        data section to this PEL object
301      *
302      * @param[in] dataIface - The data interface object
303      */
304     void updateSysInfoInExtendedUserDataSection(
305         const DataInterfaceBase& dataIface);
306 
307   private:
308     /**
309      * @brief Builds the section objects from a PEL data buffer
310      *
311      * Note: The data parameter cannot be const for the same reasons
312      * as listed in the constructor.
313      *
314      * @param[in] data - The PEL data
315      * @param[in] obmcLogID - The OpenBMC event log ID to use for that
316      *                        field in the Private Header.
317      */
318     void populateFromRawData(std::vector<uint8_t>& data, uint32_t obmcLogID);
319 
320     /**
321      * @brief Flattens the PEL objects into the buffer
322      *
323      * @param[out] pelBuffer - What the data will be written to
324      */
325     void flatten(std::vector<uint8_t>& pelBuffer) const;
326 
327     /**
328      * @brief Check that the PEL fields that need to be in agreement
329      *        with each other are, and fix them up if necessary.
330      */
331     void checkRulesAndFix();
332 
333     /**
334      * @brief Returns a map of the section IDs that appear more than once
335      *        in the PEL.  The data value for each entry will be set to 0.
336      *
337      * @return std::map<uint16_t, size_t>
338      */
339     std::map<uint16_t, size_t> getPluralSections() const;
340 
341     /**
342      * @brief Adds the UserData section to this PEL object,
343      *        shrinking it if necessary
344      *
345      * @param[in] userData - The section to add
346      *
347      * @return bool - If the section was added or not.
348      */
349     bool addUserDataSection(std::unique_ptr<UserData> userData);
350 
351     /**
352      * @brief helper function for printing PELs.
353      * @param[in] Section& - section object reference
354      * @param[in] std::string - PEL string
355      * @param[in|out] pluralSections - Map used to track sections counts for
356      *                                 when there is more than 1.
357      * @param[in] registry - Registry object reference
358      * @param[in] plugins - Vector of strings of plugins found in filesystem
359      * @param[in] creatorID - Creator Subsystem ID (only for UserData section)
360      */
361     void printSectionInJSON(const Section& section, std::string& buf,
362                             std::map<uint16_t, size_t>& pluralSections,
363                             message::Registry& registry,
364                             const std::vector<std::string>& plugins,
365                             uint8_t creatorID = 0) const;
366 
367     /**
368      * @brief Returns any callout JSON found in the FFDC files.
369      *
370      * Looks for an FFDC file that is JSON format and has the
371      * sub-type value set to 0xCA and returns its data as a JSON object.
372      *
373      * @param[in] ffdcFiles - FFCD files that go into UserData sections
374      *
375      * @return json - The callout JSON, or an empty object if not found
376      */
377     nlohmann::json getCalloutJSON(const PelFFDC& ffdcFiles);
378 
379     /**
380      * @brief Update terminate bit in primary SRC section to this PEL object is
381      * severity set to 0x51 = critical error, system termination
382      */
383     void updateTerminateBitInSRCSection();
384 
385     /**
386      * @brief Adds journal data to the PEL as UserData sections
387      *        if specified to in the message registry.
388      *
389      * @param regEntry - The registry entry
390      * @param journal - The journal object
391      */
392     void addJournalSections(const message::Entry& regEntry,
393                             const JournalBase& journal);
394 
395     /**
396      * @brief The PEL Private Header section
397      */
398     std::unique_ptr<PrivateHeader> _ph;
399 
400     /**
401      * @brief The PEL User Header section
402      */
403     std::unique_ptr<UserHeader> _uh;
404 
405     /**
406      * @brief Holds all sections by the PH and UH.
407      */
408     std::vector<std::unique_ptr<Section>> _optionalSections;
409 
410     /**
411      * @brief The maximum size a PEL can be in bytes.
412      */
413     static constexpr size_t _maxPELSize = 16384;
414 };
415 
416 namespace util
417 {
418 
419 /**
420  * @brief Creates a UserData section object that contains JSON.
421  *
422  * @param[in] json - The JSON contents
423  *
424  * @return std::unique_ptr<UserData> - The UserData object
425  */
426 std::unique_ptr<UserData> makeJSONUserDataSection(const nlohmann::json& json);
427 
428 /**
429  * @brief Create a UserData section containing the AdditionalData
430  *        contents as a JSON string.
431  *
432  * @param[in] ad - The AdditionalData contents
433  *
434  * @return std::unique_ptr<UserData> - The section
435  */
436 std::unique_ptr<UserData> makeADUserDataSection(const AdditionalData& ad);
437 
438 /**
439  * @brief Create a UserData section containing various useful pieces
440  *        of system information as a JSON string.
441  *
442  * @param[in] ad - The AdditionalData contents
443  * @param[in] dataIface - The data interface object
444  * @param[in] addUptime - Whether to add the uptime attribute the default is
445  *                        true
446  *
447  * @return std::unique_ptr<UserData> - The section
448  */
449 std::unique_ptr<UserData>
450     makeSysInfoUserDataSection(const AdditionalData& ad,
451                                const DataInterfaceBase& dataIface,
452                                bool addUptime = true);
453 
454 /**
455  * @brief Reads data from an opened file descriptor.
456  *
457  * @param[in] fd - The FD to read from
458  *
459  * @return std::vector<uint8_t> - The data read
460  */
461 std::vector<uint8_t> readFD(int fd);
462 
463 /**
464  * @brief Create a UserData section that contains the data in the file
465  *        pointed to by the file descriptor passed in.
466  *
467  * @param[in] componentID - The component ID of the PEL creator
468  * @param[in] file - The FFDC file information
469  */
470 std::unique_ptr<UserData> makeFFDCuserDataSection(uint16_t componentID,
471                                                   const PelFFDCfile& file);
472 
473 /**
474  * @brief Flattens a vector of strings into a vector of bytes suitable
475  *        for storing in a PEL section.
476  *
477  * Adds a newline character after each string.
478  *
479  * @param lines - The vector of strings to convert
480  *
481  * @return std::vector<uint8_t> - The flattened data
482  */
483 std::vector<uint8_t> flattenLines(const std::vector<std::string>& lines);
484 
485 } // namespace util
486 
487 } // namespace pels
488 } // namespace openpower
489