Matt Spinler | 711d51d | 2019-11-06 09:36:51 -0600 | [diff] [blame] | 1 | /** |
| 2 | * Copyright © 2019 IBM Corporation |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Matt Spinler | c8705e2 | 2019-09-11 12:36:07 -0500 | [diff] [blame] | 16 | #include "data_interface.hpp" |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 17 | #include "elog_entry.hpp" |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 18 | #include "event_logger.hpp" |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 19 | #include "extensions.hpp" |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 20 | #include "manager.hpp" |
Matt Spinler | 17ed2ed | 2019-12-12 14:12:23 -0600 | [diff] [blame] | 21 | #include "pldm_interface.hpp" |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 22 | |
Jayanth Othayoth | d421ae2 | 2021-06-15 10:59:16 -0500 | [diff] [blame] | 23 | #include <fmt/format.h> |
| 24 | |
Jayanth Othayoth | 4d779b2 | 2021-06-03 05:45:13 -0500 | [diff] [blame] | 25 | #include <phosphor-logging/log.hpp> |
| 26 | |
| 27 | #ifdef SBE_FFDC_SUPPORTED |
Jayanth Othayoth | c74c220 | 2021-06-04 06:42:43 -0500 | [diff] [blame] | 28 | #include <libekb.H> |
Jayanth Othayoth | 4d779b2 | 2021-06-03 05:45:13 -0500 | [diff] [blame] | 29 | #endif |
| 30 | |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 31 | namespace openpower |
| 32 | { |
| 33 | namespace pels |
| 34 | { |
| 35 | |
| 36 | using namespace phosphor::logging; |
| 37 | |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 38 | std::unique_ptr<Manager> manager; |
| 39 | |
Patrick Williams | d26fa3e | 2021-04-21 15:22:23 -0500 | [diff] [blame] | 40 | DISABLE_LOG_ENTRY_CAPS() |
Matt Spinler | b9883ea | 2020-07-07 15:08:35 -0500 | [diff] [blame] | 41 | |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 42 | void pelStartup(internal::Manager& logManager) |
| 43 | { |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 44 | EventLogger::LogFunction logger = std::bind( |
| 45 | std::mem_fn(&internal::Manager::create), &logManager, |
| 46 | std::placeholders::_1, std::placeholders::_2, std::placeholders::_3); |
| 47 | |
Matt Spinler | c8705e2 | 2019-09-11 12:36:07 -0500 | [diff] [blame] | 48 | std::unique_ptr<DataInterfaceBase> dataIface = |
| 49 | std::make_unique<DataInterface>(logManager.getBus()); |
| 50 | |
Matt Spinler | 17ed2ed | 2019-12-12 14:12:23 -0600 | [diff] [blame] | 51 | #ifndef DONT_SEND_PELS_TO_HOST |
| 52 | std::unique_ptr<HostInterface> hostIface = std::make_unique<PLDMInterface>( |
| 53 | logManager.getBus().get_event(), *(dataIface.get())); |
| 54 | |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 55 | manager = |
| 56 | std::make_unique<Manager>(logManager, std::move(dataIface), |
| 57 | std::move(logger), std::move(hostIface)); |
Matt Spinler | 17ed2ed | 2019-12-12 14:12:23 -0600 | [diff] [blame] | 58 | #else |
Matt Spinler | f682b40 | 2019-12-18 13:48:08 -0600 | [diff] [blame] | 59 | manager = std::make_unique<Manager>(logManager, std::move(dataIface), |
| 60 | std::move(logger)); |
Matt Spinler | 17ed2ed | 2019-12-12 14:12:23 -0600 | [diff] [blame] | 61 | #endif |
Jayanth Othayoth | 4d779b2 | 2021-06-03 05:45:13 -0500 | [diff] [blame] | 62 | |
| 63 | #ifdef SBE_FFDC_SUPPORTED |
Jayanth Othayoth | d421ae2 | 2021-06-15 10:59:16 -0500 | [diff] [blame] | 64 | // PDBG_DTB environment variable set to CEC device tree path |
| 65 | static constexpr auto PDBG_DTB_PATH = |
| 66 | "/var/lib/phosphor-software-manager/pnor/rw/DEVTREE"; |
| 67 | |
| 68 | if (setenv("PDBG_DTB", PDBG_DTB_PATH, 1)) |
| 69 | { |
| 70 | // Log message and continue, |
| 71 | // This is to help continue creating PEL in raw format. |
| 72 | log<level::ERR>( |
| 73 | fmt::format("Failed to set PDBG_DTB: ({})", strerror(errno)) |
| 74 | .c_str()); |
| 75 | } |
| 76 | |
Jayanth Othayoth | c74c220 | 2021-06-04 06:42:43 -0500 | [diff] [blame] | 77 | if (libekb_init()) |
| 78 | { |
| 79 | log<level::ERR>("libekb_init failed"); |
| 80 | throw std::runtime_error("libekb initialization failed"); |
| 81 | } |
Jayanth Othayoth | 4d779b2 | 2021-06-03 05:45:13 -0500 | [diff] [blame] | 82 | #endif |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 83 | } |
| 84 | |
Patrick Williams | d26fa3e | 2021-04-21 15:22:23 -0500 | [diff] [blame] | 85 | REGISTER_EXTENSION_FUNCTION(pelStartup) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 86 | |
| 87 | void pelCreate(const std::string& message, uint32_t id, uint64_t timestamp, |
| 88 | Entry::Level severity, const AdditionalDataArg& additionalData, |
Matt Spinler | c64b712 | 2020-03-26 10:55:01 -0500 | [diff] [blame] | 89 | const AssociationEndpointsArg& assocs, const FFDCArg& ffdc) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 90 | { |
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 91 | manager->create(message, id, timestamp, severity, additionalData, assocs, |
| 92 | ffdc); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 93 | } |
| 94 | |
Patrick Williams | d26fa3e | 2021-04-21 15:22:23 -0500 | [diff] [blame] | 95 | REGISTER_EXTENSION_FUNCTION(pelCreate) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 96 | |
| 97 | void pelDelete(uint32_t id) |
| 98 | { |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 99 | return manager->erase(id); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 100 | } |
| 101 | |
Patrick Williams | d26fa3e | 2021-04-21 15:22:23 -0500 | [diff] [blame] | 102 | REGISTER_EXTENSION_FUNCTION(pelDelete) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 103 | |
| 104 | void pelDeleteProhibited(uint32_t id, bool& prohibited) |
| 105 | { |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 106 | prohibited = manager->isDeleteProhibited(id); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 107 | } |
| 108 | |
Patrick Williams | d26fa3e | 2021-04-21 15:22:23 -0500 | [diff] [blame] | 109 | REGISTER_EXTENSION_FUNCTION(pelDeleteProhibited) |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 110 | |
| 111 | } // namespace pels |
| 112 | } // namespace openpower |