Jason M. Bills | 5e049d3 | 2018-10-19 12:59:38 -0700 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 Intel 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 | */ |
| 16 | |
| 17 | #pragma once |
Jason M. Bills | c4a336f | 2019-04-23 10:43:10 -0700 | [diff] [blame] | 18 | #include <filesystem> |
Jason M. Bills | 5e049d3 | 2018-10-19 12:59:38 -0700 | [diff] [blame] | 19 | |
Zhikui Ren | 672bdfc | 2020-07-14 11:37:01 -0700 | [diff] [blame^] | 20 | static constexpr char const* ipmiSelObject = "xyz.openbmc_project.Logging.IPMI"; |
| 21 | static constexpr char const* ipmiSelPath = "/xyz/openbmc_project/Logging/IPMI"; |
| 22 | static constexpr char const* ipmiSelAddInterface = |
Jason M. Bills | 5e049d3 | 2018-10-19 12:59:38 -0700 | [diff] [blame] | 23 | "xyz.openbmc_project.Logging.IPMI"; |
| 24 | |
| 25 | // ID string generated using journalctl to include in the MESSAGE_ID field for |
| 26 | // SEL entries. Helps with filtering SEL entries in the journal. |
Zhikui Ren | 672bdfc | 2020-07-14 11:37:01 -0700 | [diff] [blame^] | 27 | static constexpr char const* selMessageId = "b370836ccf2f4850ac5bee185b77893a"; |
Jason M. Bills | 5e049d3 | 2018-10-19 12:59:38 -0700 | [diff] [blame] | 28 | static constexpr int selPriority = 5; // notice |
| 29 | static constexpr uint8_t selSystemType = 0x02; |
| 30 | static constexpr uint16_t selBMCGenID = 0x0020; |
| 31 | static constexpr uint16_t selInvalidRecID = |
| 32 | std::numeric_limits<uint16_t>::max(); |
| 33 | static constexpr size_t selEvtDataMaxSize = 3; |
| 34 | static constexpr size_t selOemDataMaxSize = 13; |
| 35 | |
Jason M. Bills | c4a336f | 2019-04-23 10:43:10 -0700 | [diff] [blame] | 36 | static const std::filesystem::path selLogDir = "/var/log"; |
| 37 | static const std::string selLogFilename = "ipmi_sel"; |
| 38 | |
Jason M. Bills | 97be353 | 2018-11-02 13:09:16 -0700 | [diff] [blame] | 39 | template <typename... T> |
| 40 | static uint16_t |
Zhikui Ren | 672bdfc | 2020-07-14 11:37:01 -0700 | [diff] [blame^] | 41 | selAddSystemRecord(const std::string& message, const std::string& path, |
| 42 | const std::vector<uint8_t>& selData, const bool& assert, |
| 43 | const uint16_t& genId, T&&... metadata); |