Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -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 | |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 17 | #include <bridgingcommands.hpp> |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 18 | #include <ipmid/api.hpp> |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 19 | #include <ipmid/utils.hpp> |
Yong Li | edbb408 | 2020-03-06 17:38:25 +0800 | [diff] [blame] | 20 | #include <manufacturingcommands.hpp> |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 21 | #include <phosphor-logging/log.hpp> |
| 22 | #include <sdbusplus/bus.hpp> |
| 23 | #include <sdbusplus/bus/match.hpp> |
| 24 | #include <sdbusplus/message.hpp> |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 25 | #include <storagecommands.hpp> |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 26 | #include <user_channel/channel_layer.hpp> |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 27 | |
| 28 | #include <bitset> |
| 29 | #include <cstring> |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 30 | #include <vector> |
| 31 | |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 32 | static constexpr const char* wdtService = "xyz.openbmc_project.Watchdog"; |
| 33 | static constexpr const char* wdtInterface = |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 34 | "xyz.openbmc_project.State.Watchdog"; |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 35 | static constexpr const char* wdtObjPath = "/xyz/openbmc_project/watchdog/host0"; |
| 36 | static constexpr const char* wdtInterruptFlagProp = |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 37 | "PreTimeoutInterruptOccurFlag"; |
| 38 | |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 39 | static constexpr const char* ipmbBus = "xyz.openbmc_project.Ipmi.Channel.Ipmb"; |
| 40 | static constexpr const char* ipmbObj = "/xyz/openbmc_project/Ipmi/Channel/Ipmb"; |
| 41 | static constexpr const char* ipmbIntf = "org.openbmc.Ipmb"; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 42 | |
| 43 | static Bridging bridging; |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 44 | static bool eventMessageBufferFlag = false; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 45 | |
jayaprakash Mutyala | 405f54a | 2019-10-18 18:23:27 +0000 | [diff] [blame] | 46 | void Bridging::clearResponseQueue() |
| 47 | { |
| 48 | responseQueue.clear(); |
| 49 | } |
| 50 | |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 51 | /** |
| 52 | * @brief utils for checksum |
| 53 | */ |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 54 | static bool ipmbChecksumValidate(const uint8_t* data, uint8_t length) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 55 | { |
| 56 | if (data == nullptr) |
| 57 | { |
| 58 | return false; |
| 59 | } |
| 60 | |
| 61 | uint8_t checksum = 0; |
| 62 | |
| 63 | for (uint8_t idx = 0; idx < length; idx++) |
| 64 | { |
| 65 | checksum += data[idx]; |
| 66 | } |
| 67 | |
| 68 | if (0 == checksum) |
| 69 | { |
| 70 | return true; |
| 71 | } |
| 72 | |
| 73 | return false; |
| 74 | } |
| 75 | |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 76 | static uint8_t ipmbChecksumCompute(uint8_t* data, uint8_t length) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 77 | { |
| 78 | if (data == nullptr) |
| 79 | { |
| 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | uint8_t checksum = 0; |
| 84 | |
| 85 | for (uint8_t idx = 0; idx < length; idx++) |
| 86 | { |
| 87 | checksum += data[idx]; |
| 88 | } |
| 89 | |
| 90 | checksum = (~checksum) + 1; |
| 91 | return checksum; |
| 92 | } |
| 93 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 94 | static inline bool |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 95 | ipmbConnectionHeaderChecksumValidate(const ipmbHeader* ipmbHeader) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 96 | { |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 97 | return ipmbChecksumValidate(reinterpret_cast<const uint8_t*>(ipmbHeader), |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 98 | ipmbConnectionHeaderLength); |
| 99 | } |
| 100 | |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 101 | static inline bool ipmbDataChecksumValidate(const ipmbHeader* ipmbHeader, |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 102 | uint8_t length) |
| 103 | { |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 104 | return ipmbChecksumValidate((reinterpret_cast<const uint8_t*>(ipmbHeader) + |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 105 | ipmbConnectionHeaderLength), |
| 106 | (length - ipmbConnectionHeaderLength)); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 107 | } |
| 108 | |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 109 | static bool isFrameValid(const ipmbHeader* frame, uint8_t length) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 110 | { |
| 111 | if ((length < ipmbMinFrameLength) || (length > ipmbMaxFrameLength)) |
| 112 | { |
| 113 | return false; |
| 114 | } |
| 115 | |
| 116 | if (false == ipmbConnectionHeaderChecksumValidate(frame)) |
| 117 | { |
| 118 | return false; |
| 119 | } |
| 120 | |
| 121 | if (false == ipmbDataChecksumValidate(frame, length)) |
| 122 | { |
| 123 | return false; |
| 124 | } |
| 125 | |
| 126 | return true; |
| 127 | } |
| 128 | |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 129 | IpmbRequest::IpmbRequest(const ipmbHeader* ipmbBuffer, size_t bufferLength) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 130 | { |
| 131 | address = ipmbBuffer->Header.Req.address; |
| 132 | netFn = ipmbNetFnGet(ipmbBuffer->Header.Req.rsNetFnLUN); |
| 133 | rsLun = ipmbLunFromNetFnLunGet(ipmbBuffer->Header.Req.rsNetFnLUN); |
| 134 | rqSA = ipmbBuffer->Header.Req.rqSA; |
| 135 | seq = ipmbSeqGet(ipmbBuffer->Header.Req.rqSeqLUN); |
| 136 | rqLun = ipmbLunFromSeqLunGet(ipmbBuffer->Header.Req.rqSeqLUN); |
| 137 | cmd = ipmbBuffer->Header.Req.cmd; |
| 138 | |
Patrick Williams | b37abfb | 2023-05-10 07:50:33 -0500 | [diff] [blame] | 139 | size_t dataLength = bufferLength - |
| 140 | (ipmbConnectionHeaderLength + |
| 141 | ipmbRequestDataHeaderLength + ipmbChecksumSize); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 142 | |
| 143 | if (dataLength > 0) |
| 144 | { |
| 145 | data.insert(data.end(), ipmbBuffer->Header.Req.data, |
| 146 | &ipmbBuffer->Header.Req.data[dataLength]); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | IpmbResponse::IpmbResponse(uint8_t address, uint8_t netFn, uint8_t rqLun, |
| 151 | uint8_t rsSA, uint8_t seq, uint8_t rsLun, |
| 152 | uint8_t cmd, uint8_t completionCode, |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 153 | std::vector<uint8_t>& inputData) : |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 154 | address(address), |
| 155 | netFn(netFn), rqLun(rqLun), rsSA(rsSA), seq(seq), rsLun(rsLun), cmd(cmd), |
| 156 | completionCode(completionCode) |
| 157 | { |
| 158 | data.reserve(ipmbMaxDataSize); |
| 159 | |
| 160 | if (inputData.size() > 0) |
| 161 | { |
| 162 | data = std::move(inputData); |
| 163 | } |
| 164 | } |
| 165 | |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 166 | void IpmbResponse::ipmbToi2cConstruct(uint8_t* buffer, size_t* bufferLength) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 167 | { |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 168 | ipmbHeader* ipmbBuffer = (ipmbHeader*)buffer; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 169 | |
| 170 | ipmbBuffer->Header.Resp.address = address; |
| 171 | ipmbBuffer->Header.Resp.rqNetFnLUN = ipmbNetFnLunSet(netFn, rqLun); |
| 172 | ipmbBuffer->Header.Resp.rsSA = rsSA; |
| 173 | ipmbBuffer->Header.Resp.rsSeqLUN = ipmbSeqLunSet(seq, rsLun); |
| 174 | ipmbBuffer->Header.Resp.cmd = cmd; |
| 175 | ipmbBuffer->Header.Resp.completionCode = completionCode; |
| 176 | |
| 177 | ipmbBuffer->Header.Resp.checksum1 = ipmbChecksumCompute( |
| 178 | buffer, ipmbConnectionHeaderLength - ipmbChecksumSize); |
| 179 | |
| 180 | if (data.size() > 0) |
| 181 | { |
| 182 | std::copy( |
| 183 | data.begin(), data.end(), |
| 184 | &buffer[ipmbConnectionHeaderLength + ipmbResponseDataHeaderLength]); |
| 185 | } |
| 186 | |
| 187 | *bufferLength = data.size() + ipmbResponseDataHeaderLength + |
| 188 | ipmbConnectionHeaderLength + ipmbChecksumSize; |
| 189 | |
| 190 | buffer[*bufferLength - ipmbChecksumSize] = |
| 191 | ipmbChecksumCompute(&buffer[ipmbChecksum2StartOffset], |
| 192 | (ipmbResponseDataHeaderLength + data.size())); |
| 193 | } |
| 194 | |
Patrick Williams | f944d2e | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 195 | void IpmbRequest::prepareRequest(sdbusplus::message_t& mesg) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 196 | { |
| 197 | mesg.append(ipmbMeChannelNum, netFn, rqLun, cmd, data); |
| 198 | } |
| 199 | |
Richard Marian Thomaiyar | e646a25 | 2019-11-20 22:54:03 +0530 | [diff] [blame] | 200 | static constexpr unsigned int makeCmdKey(unsigned int netFn, unsigned int cmd) |
| 201 | { |
| 202 | return (netFn << 8) | cmd; |
| 203 | } |
| 204 | |
| 205 | static constexpr bool isMeCmdAllowed(uint8_t netFn, uint8_t cmd) |
| 206 | { |
| 207 | constexpr uint8_t netFnMeOEM = 0x2E; |
Yong Li | edbb408 | 2020-03-06 17:38:25 +0800 | [diff] [blame] | 208 | constexpr uint8_t netFnMeOEMGeneral = 0x3E; |
Richard Marian Thomaiyar | e646a25 | 2019-11-20 22:54:03 +0530 | [diff] [blame] | 209 | constexpr uint8_t cmdMeOemSendRawPeci = 0x40; |
| 210 | constexpr uint8_t cmdMeOemAggSendRawPeci = 0x41; |
| 211 | constexpr uint8_t cmdMeOemCpuPkgConfWrite = 0x43; |
| 212 | constexpr uint8_t cmdMeOemCpuPciConfWrite = 0x45; |
| 213 | constexpr uint8_t cmdMeOemReadMemSmbus = 0x47; |
| 214 | constexpr uint8_t cmdMeOemWriteMemSmbus = 0x48; |
| 215 | constexpr uint8_t cmdMeOemSlotIpmb = 0x51; |
Matt Simmering | 80d4d5f | 2023-02-15 15:18:51 -0800 | [diff] [blame] | 216 | constexpr uint8_t cmdMeOemSlotI2cControllerWriteRead = 0x52; |
Richard Marian Thomaiyar | e646a25 | 2019-11-20 22:54:03 +0530 | [diff] [blame] | 217 | constexpr uint8_t cmdMeOemSendRawPmbus = 0xD9; |
| 218 | constexpr uint8_t cmdMeOemUnlockMeRegion = 0xE7; |
| 219 | constexpr uint8_t cmdMeOemAggSendRawPmbus = 0xEC; |
| 220 | |
| 221 | switch (makeCmdKey(netFn, cmd)) |
| 222 | { |
Matt Simmering | 80d4d5f | 2023-02-15 15:18:51 -0800 | [diff] [blame] | 223 | // Restrict ME Controller write command |
Richard Marian Thomaiyar | e646a25 | 2019-11-20 22:54:03 +0530 | [diff] [blame] | 224 | case makeCmdKey(ipmi::netFnApp, ipmi::app::cmdMasterWriteRead): |
| 225 | // Restrict ME OEM commands |
| 226 | case makeCmdKey(netFnMeOEM, cmdMeOemSendRawPeci): |
| 227 | case makeCmdKey(netFnMeOEM, cmdMeOemAggSendRawPeci): |
| 228 | case makeCmdKey(netFnMeOEM, cmdMeOemCpuPkgConfWrite): |
| 229 | case makeCmdKey(netFnMeOEM, cmdMeOemCpuPciConfWrite): |
| 230 | case makeCmdKey(netFnMeOEM, cmdMeOemReadMemSmbus): |
| 231 | case makeCmdKey(netFnMeOEM, cmdMeOemWriteMemSmbus): |
Yong Li | edbb408 | 2020-03-06 17:38:25 +0800 | [diff] [blame] | 232 | case makeCmdKey(netFnMeOEMGeneral, cmdMeOemSlotIpmb): |
Matt Simmering | 80d4d5f | 2023-02-15 15:18:51 -0800 | [diff] [blame] | 233 | case makeCmdKey(netFnMeOEMGeneral, cmdMeOemSlotI2cControllerWriteRead): |
Richard Marian Thomaiyar | e646a25 | 2019-11-20 22:54:03 +0530 | [diff] [blame] | 234 | case makeCmdKey(netFnMeOEM, cmdMeOemSendRawPmbus): |
| 235 | case makeCmdKey(netFnMeOEM, cmdMeOemUnlockMeRegion): |
| 236 | case makeCmdKey(netFnMeOEM, cmdMeOemAggSendRawPmbus): |
| 237 | return false; |
| 238 | default: |
| 239 | return true; |
| 240 | } |
| 241 | } |
| 242 | |
srikanta mondal | 36b3a87 | 2020-03-17 22:20:47 +0000 | [diff] [blame] | 243 | ipmi::Cc Bridging::handleIpmbChannel(ipmi::Context::ptr ctx, |
| 244 | const uint8_t tracking, |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 245 | const std::vector<uint8_t>& msgData, |
| 246 | std::vector<uint8_t>& rspData) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 247 | { |
Yong Li | edbb408 | 2020-03-06 17:38:25 +0800 | [diff] [blame] | 248 | ipmi::Manufacturing mtm; |
| 249 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 250 | size_t msgLen = msgData.size(); |
| 251 | if ((msgLen < ipmbMinFrameLength) || (msgLen > ipmbMaxFrameLength)) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 252 | { |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 253 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 254 | "handleIpmbChannel, IPMB data length is invalid"); |
| 255 | return ipmi::ccReqDataLenInvalid; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 256 | } |
| 257 | |
srikanta mondal | e95b0e5 | 2020-03-18 10:35:19 +0000 | [diff] [blame] | 258 | // Bridging to ME requires Administrator lvl |
| 259 | if ((ctx->priv) != ipmi::Privilege::Admin) |
| 260 | { |
| 261 | return ipmi::ccInsufficientPrivilege; |
| 262 | } |
| 263 | |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 264 | auto sendMsgReqData = reinterpret_cast<const ipmbHeader*>(msgData.data()); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 265 | |
| 266 | // allow bridging to ME only |
Matt Simmering | 80d4d5f | 2023-02-15 15:18:51 -0800 | [diff] [blame] | 267 | if (sendMsgReqData->Header.Req.address != ipmbMeTargetAddress) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 268 | { |
| 269 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 270 | "handleIpmbChannel, IPMB address invalid"); |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 271 | return ipmi::ccParmOutOfRange; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Richard Marian Thomaiyar | e646a25 | 2019-11-20 22:54:03 +0530 | [diff] [blame] | 274 | constexpr uint8_t shiftLUN = 2; |
Yong Li | edbb408 | 2020-03-06 17:38:25 +0800 | [diff] [blame] | 275 | if (mtm.getMfgMode() == ipmi::SpecialMode::none) |
Richard Marian Thomaiyar | e646a25 | 2019-11-20 22:54:03 +0530 | [diff] [blame] | 276 | { |
Yong Li | edbb408 | 2020-03-06 17:38:25 +0800 | [diff] [blame] | 277 | if (!isMeCmdAllowed((sendMsgReqData->Header.Req.rsNetFnLUN >> shiftLUN), |
| 278 | sendMsgReqData->Header.Req.cmd)) |
| 279 | { |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 280 | constexpr ipmi::Cc ccCmdNotSupportedInPresentState = 0xD5; |
| 281 | return ccCmdNotSupportedInPresentState; |
Yong Li | edbb408 | 2020-03-06 17:38:25 +0800 | [diff] [blame] | 282 | } |
Richard Marian Thomaiyar | e646a25 | 2019-11-20 22:54:03 +0530 | [diff] [blame] | 283 | } |
| 284 | |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 285 | // check allowed modes |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 286 | if (tracking != modeNoTracking && tracking != modeTrackRequest) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 287 | { |
| 288 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 289 | "handleIpmbChannel, mode not supported"); |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 290 | return ipmi::ccParmOutOfRange; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | // check if request contains valid IPMB frame |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 294 | if (!isFrameValid(sendMsgReqData, msgLen)) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 295 | { |
| 296 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 297 | "handleIpmbChannel, IPMB frame invalid"); |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 298 | return ipmi::ccParmOutOfRange; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 299 | } |
| 300 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 301 | auto ipmbRequest = IpmbRequest(sendMsgReqData, msgLen); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 302 | |
srikanta mondal | 36b3a87 | 2020-03-17 22:20:47 +0000 | [diff] [blame] | 303 | typedef std::tuple<int, uint8_t, uint8_t, uint8_t, uint8_t, |
| 304 | std::vector<uint8_t>> |
| 305 | IPMBResponse; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 306 | |
| 307 | // send request to IPMB |
srikanta mondal | 36b3a87 | 2020-03-17 22:20:47 +0000 | [diff] [blame] | 308 | boost::system::error_code ec; |
| 309 | auto ipmbResponse = ctx->bus->yield_method_call<IPMBResponse>( |
| 310 | ctx->yield, ec, ipmbBus, ipmbObj, ipmbIntf, "sendRequest", |
| 311 | ipmbMeChannelNum, ipmbRequest.netFn, ipmbRequest.rqLun, ipmbRequest.cmd, |
| 312 | ipmbRequest.data); |
| 313 | if (ec) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 314 | { |
| 315 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 316 | "handleIpmbChannel, dbus call exception"); |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 317 | return ipmi::ccUnspecifiedError; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | std::vector<uint8_t> dataReceived(0); |
| 321 | int status = -1; |
| 322 | uint8_t netFn = 0, lun = 0, cmd = 0, cc = 0; |
| 323 | |
| 324 | std::tie(status, netFn, lun, cmd, cc, dataReceived) = ipmbResponse; |
| 325 | |
Patrick Williams | b37abfb | 2023-05-10 07:50:33 -0500 | [diff] [blame] | 326 | auto respReceived = IpmbResponse(ipmbRequest.rqSA, netFn, lun, |
| 327 | ipmbRequest.address, ipmbRequest.seq, lun, |
| 328 | cmd, cc, dataReceived); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 329 | |
| 330 | // check IPMB layer status |
| 331 | if (status) |
| 332 | { |
| 333 | phosphor::logging::log<phosphor::logging::level::WARNING>( |
| 334 | "handleIpmbChannel, ipmb returned non zero status"); |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 335 | return ipmi::ccResponseError; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 338 | switch (tracking) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 339 | { |
| 340 | case modeNoTracking: |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 341 | { |
| 342 | if (getResponseQueueSize() == responseQueueMaxSize) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 343 | { |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 344 | return ipmi::ccBusy; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 345 | } |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 346 | insertMessageInQueue(respReceived); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 347 | break; |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 348 | } |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 349 | case modeTrackRequest: |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 350 | { |
| 351 | size_t dataLength = 0; |
| 352 | respReceived.ipmbToi2cConstruct(rspData.data(), &dataLength); |
| 353 | // resizing the rspData to its correct length |
| 354 | rspData.resize(dataLength); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 355 | break; |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 356 | } |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 357 | default: |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 358 | { |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 359 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 360 | "handleIpmbChannel, mode not supported"); |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 361 | return ipmi::ccParmOutOfRange; |
| 362 | } |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 363 | } |
| 364 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 365 | return ipmi::ccSuccess; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 366 | } |
| 367 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 368 | void Bridging::insertMessageInQueue(IpmbResponse msg) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 369 | { |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 370 | responseQueue.insert(responseQueue.end(), std::move(msg)); |
| 371 | } |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 372 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 373 | void Bridging::eraseMessageFromQueue() |
| 374 | { |
| 375 | responseQueue.erase(responseQueue.begin()); |
| 376 | } |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 377 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 378 | IpmbResponse Bridging::getMessageFromQueue() |
| 379 | { |
| 380 | return responseQueue.front(); |
| 381 | } |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 382 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 383 | /** |
| 384 | * @brief This command is used for bridging ipmi message between channels. |
| 385 | * @param channelNumber - channel number to send message to |
| 386 | * @param authenticationEnabled - authentication. |
| 387 | * @param encryptionEnabled - encryption |
| 388 | * @param Tracking - track request |
| 389 | * @param msg - message data |
| 390 | * |
| 391 | * @return IPMI completion code plus response data on success. |
| 392 | * - rspData - response data |
| 393 | **/ |
| 394 | ipmi::RspType<std::vector<uint8_t> // responseData |
| 395 | > |
srikanta mondal | 36b3a87 | 2020-03-17 22:20:47 +0000 | [diff] [blame] | 396 | ipmiAppSendMessage(ipmi::Context::ptr ctx, const uint4_t channelNumber, |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 397 | const bool authenticationEnabled, |
| 398 | const bool encryptionEnabled, const uint2_t tracking, |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 399 | ipmi::message::Payload& msg) |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 400 | { |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 401 | // check message fields: |
| 402 | // encryption not supported |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 403 | if (encryptionEnabled) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 404 | { |
| 405 | phosphor::logging::log<phosphor::logging::level::INFO>( |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 406 | "ipmiAppSendMessage, encryption not supported"); |
| 407 | return ipmi::responseParmOutOfRange(); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | // authentication not supported |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 411 | if (authenticationEnabled) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 412 | { |
| 413 | phosphor::logging::log<phosphor::logging::level::INFO>( |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 414 | "ipmiAppSendMessage, authentication not supported"); |
| 415 | return ipmi::responseParmOutOfRange(); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 418 | ipmi::Cc returnVal; |
| 419 | std::vector<uint8_t> rspData(ipmbMaxFrameLength); |
| 420 | size_t dataLength = 0; |
| 421 | std::vector<uint8_t> unpackMsg; |
| 422 | |
| 423 | auto channelNo = static_cast<const uint8_t>(channelNumber); |
| 424 | // Get the channel number |
| 425 | switch (channelNo) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 426 | { |
| 427 | // we only handle ipmb for now |
| 428 | case targetChannelIpmb: |
| 429 | case targetChannelOtherLan: |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 430 | if (msg.unpack(unpackMsg) || !msg.fullyUnpacked()) |
| 431 | { |
| 432 | return ipmi::responseReqDataLenInvalid(); |
| 433 | } |
| 434 | |
| 435 | returnVal = bridging.handleIpmbChannel( |
srikanta mondal | 36b3a87 | 2020-03-17 22:20:47 +0000 | [diff] [blame] | 436 | ctx, static_cast<const uint8_t>(tracking), unpackMsg, rspData); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 437 | break; |
| 438 | // fall through to default |
| 439 | case targetChannelIcmb10: |
| 440 | case targetChannelIcmb09: |
| 441 | case targetChannelLan: |
| 442 | case targetChannelSerialModem: |
| 443 | case targetChannelPciSmbus: |
| 444 | case targetChannelSmbus10: |
| 445 | case targetChannelSmbus20: |
| 446 | case targetChannelSystemInterface: |
| 447 | default: |
| 448 | phosphor::logging::log<phosphor::logging::level::INFO>( |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 449 | "ipmiAppSendMessage, TargetChannel invalid"); |
| 450 | return ipmi::responseParmOutOfRange(); |
| 451 | } |
| 452 | if (returnVal != ipmi::ccSuccess) |
| 453 | { |
| 454 | return ipmi::response(returnVal); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 455 | } |
| 456 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 457 | return ipmi::responseSuccess(rspData); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 460 | /** |
| 461 | * @brief This command is used to Get data from the receive message queue. |
| 462 | * This command should be executed executed via system interface only. |
| 463 | * |
| 464 | * @return IPMI completion code plus response data on success. |
| 465 | * - channelNumber |
| 466 | * - messageData |
| 467 | **/ |
| 468 | |
| 469 | ipmi::RspType<uint8_t, // channelNumber |
| 470 | std::vector<uint8_t> // messageData |
| 471 | > |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 472 | ipmiAppGetMessage(ipmi::Context::ptr ctx) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 473 | { |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 474 | ipmi::ChannelInfo chInfo; |
| 475 | |
| 476 | try |
| 477 | { |
| 478 | getChannelInfo(ctx->channel, chInfo); |
| 479 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 480 | catch (const sdbusplus::exception_t& e) |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 481 | { |
| 482 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 483 | "ipmiAppGetMessage: Failed to get Channel Info", |
| 484 | phosphor::logging::entry("MSG: %s", e.description())); |
| 485 | return ipmi::responseUnspecifiedError(); |
| 486 | } |
| 487 | if (chInfo.mediumType != |
| 488 | static_cast<uint8_t>(ipmi::EChannelMediumType::systemInterface)) |
| 489 | { |
| 490 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 491 | "ipmiAppGetMessage: Error - supported only in System(SMS) " |
| 492 | "interface"); |
| 493 | return ipmi::responseCommandNotAvailable(); |
| 494 | } |
| 495 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 496 | uint8_t channelData = 0; |
| 497 | std::vector<uint8_t> res(ipmbMaxFrameLength); |
| 498 | size_t dataLength = 0; |
| 499 | |
| 500 | if (!bridging.getResponseQueueSize()) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 501 | { |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 502 | constexpr ipmi::Cc ipmiGetMessageCmdDataNotAvailable = 0x80; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 503 | phosphor::logging::log<phosphor::logging::level::INFO>( |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 504 | "ipmiAppGetMessage, no data available"); |
| 505 | return ipmi::response(ipmiGetMessageCmdDataNotAvailable); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 506 | } |
| 507 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 508 | // channel number set. |
| 509 | channelData |= static_cast<uint8_t>(targetChannelSystemInterface) & 0x0F; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 510 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 511 | // Priviledge level set. |
| 512 | channelData |= SYSTEM_INTERFACE & 0xF0; |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 513 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 514 | // Get the first message from queue |
| 515 | auto respQueueItem = bridging.getMessageFromQueue(); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 516 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 517 | // construct response data. |
| 518 | respQueueItem.ipmbToi2cConstruct(res.data(), &dataLength); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 519 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 520 | // Remove the message from queue |
| 521 | bridging.eraseMessageFromQueue(); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 522 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 523 | // resizing the rspData to its correct length |
| 524 | res.resize(dataLength); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 525 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 526 | return ipmi::responseSuccess(channelData, res); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 527 | } |
| 528 | |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 529 | std::size_t Bridging::getResponseQueueSize() |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 530 | { |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 531 | return responseQueue.size(); |
| 532 | } |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 533 | |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 534 | /** |
| 535 | @brief This command is used to retrive present message available states. |
| 536 | |
| 537 | @return IPMI completion code plus Flags as response data on success. |
| 538 | **/ |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 539 | ipmi::RspType<std::bitset<8>> ipmiAppGetMessageFlags(ipmi::Context::ptr ctx) |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 540 | { |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 541 | ipmi::ChannelInfo chInfo; |
| 542 | |
| 543 | try |
| 544 | { |
| 545 | getChannelInfo(ctx->channel, chInfo); |
| 546 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 547 | catch (const sdbusplus::exception_t& e) |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 548 | { |
| 549 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 550 | "ipmiAppGetMessageFlags: Failed to get Channel Info", |
| 551 | phosphor::logging::entry("MSG: %s", e.description())); |
| 552 | return ipmi::responseUnspecifiedError(); |
| 553 | } |
| 554 | if (chInfo.mediumType != |
| 555 | static_cast<uint8_t>(ipmi::EChannelMediumType::systemInterface)) |
| 556 | { |
| 557 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 558 | "ipmiAppGetMessageFlags: Error - supported only in System(SMS) " |
| 559 | "interface"); |
| 560 | return ipmi::responseCommandNotAvailable(); |
| 561 | } |
| 562 | |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 563 | std::bitset<8> getMsgFlagsRes; |
| 564 | |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 565 | // set event message buffer bit |
| 566 | if (!eventMessageBufferFlag) |
| 567 | { |
| 568 | getMsgFlagsRes.set(getMsgFlagEventMessageBit); |
| 569 | } |
| 570 | else |
| 571 | { |
| 572 | getMsgFlagsRes.reset(getMsgFlagEventMessageBit); |
| 573 | } |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 574 | |
| 575 | // set message fields |
| 576 | if (bridging.getResponseQueueSize() > 0) |
| 577 | { |
| 578 | getMsgFlagsRes.set(getMsgFlagReceiveMessageBit); |
| 579 | } |
| 580 | else |
| 581 | { |
| 582 | getMsgFlagsRes.reset(getMsgFlagReceiveMessageBit); |
| 583 | } |
| 584 | |
| 585 | try |
| 586 | { |
| 587 | std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus(); |
| 588 | ipmi::Value variant = ipmi::getDbusProperty( |
| 589 | *dbus, wdtService, wdtObjPath, wdtInterface, wdtInterruptFlagProp); |
| 590 | if (std::get<bool>(variant)) |
| 591 | { |
| 592 | getMsgFlagsRes.set(getMsgFlagWatchdogPreTimeOutBit); |
| 593 | } |
| 594 | } |
Patrick Williams | f944d2e | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 595 | catch (const sdbusplus::exception_t& e) |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 596 | { |
| 597 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 598 | "ipmiAppGetMessageFlags, dbus call exception"); |
| 599 | return ipmi::responseUnspecifiedError(); |
| 600 | } |
| 601 | |
| 602 | return ipmi::responseSuccess(getMsgFlagsRes); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 603 | } |
| 604 | |
jayaprakash Mutyala | 405f54a | 2019-10-18 18:23:27 +0000 | [diff] [blame] | 605 | /** @brief This command is used to flush unread data from the receive |
| 606 | * message queue |
| 607 | * @param receiveMessage - clear receive message queue |
| 608 | * @param eventMsgBufFull - clear event message buffer full |
| 609 | * @param reserved2 - reserved bit |
| 610 | * @param watchdogTimeout - clear watchdog pre-timeout interrupt flag |
| 611 | * @param reserved1 - reserved bit |
| 612 | * @param oem0 - clear OEM 0 data |
| 613 | * @param oem1 - clear OEM 1 data |
| 614 | * @param oem2 - clear OEM 2 data |
| 615 | |
| 616 | * @return IPMI completion code on success |
| 617 | */ |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 618 | ipmi::RspType<> ipmiAppClearMessageFlags(ipmi::Context::ptr ctx, |
| 619 | bool receiveMessage, |
jayaprakash Mutyala | 405f54a | 2019-10-18 18:23:27 +0000 | [diff] [blame] | 620 | bool eventMsgBufFull, bool reserved2, |
| 621 | bool watchdogTimeout, bool reserved1, |
| 622 | bool oem0, bool oem1, bool oem2) |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 623 | { |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 624 | ipmi::ChannelInfo chInfo; |
| 625 | |
| 626 | try |
| 627 | { |
| 628 | getChannelInfo(ctx->channel, chInfo); |
| 629 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 630 | catch (const sdbusplus::exception_t& e) |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 631 | { |
| 632 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 633 | "ipmiAppClearMessageFlags: Failed to get Channel Info", |
| 634 | phosphor::logging::entry("MSG: %s", e.description())); |
| 635 | return ipmi::responseUnspecifiedError(); |
| 636 | } |
| 637 | if (chInfo.mediumType != |
| 638 | static_cast<uint8_t>(ipmi::EChannelMediumType::systemInterface)) |
| 639 | { |
| 640 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 641 | "ipmiAppClearMessageFlags: Error - supported only in System(SMS) " |
| 642 | "interface"); |
| 643 | return ipmi::responseCommandNotAvailable(); |
| 644 | } |
| 645 | |
jayaprakash Mutyala | 405f54a | 2019-10-18 18:23:27 +0000 | [diff] [blame] | 646 | if (reserved1 || reserved2) |
| 647 | { |
| 648 | return ipmi::responseInvalidFieldRequest(); |
| 649 | } |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 650 | |
jayaprakash Mutyala | 405f54a | 2019-10-18 18:23:27 +0000 | [diff] [blame] | 651 | if (receiveMessage) |
| 652 | { |
| 653 | bridging.clearResponseQueue(); |
| 654 | } |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 655 | |
| 656 | if (eventMessageBufferFlag != true && eventMsgBufFull == true) |
| 657 | { |
| 658 | eventMessageBufferFlag = true; |
| 659 | } |
| 660 | |
jayaprakash Mutyala | 43539cb | 2019-11-25 12:37:27 +0000 | [diff] [blame] | 661 | try |
| 662 | { |
Jayaprakash Mutyala | 5277179 | 2022-05-30 14:51:01 +0000 | [diff] [blame] | 663 | if (watchdogTimeout) |
| 664 | { |
| 665 | std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus(); |
| 666 | ipmi::setDbusProperty(*dbus, wdtService, wdtObjPath, wdtInterface, |
| 667 | wdtInterruptFlagProp, false); |
| 668 | } |
jayaprakash Mutyala | 43539cb | 2019-11-25 12:37:27 +0000 | [diff] [blame] | 669 | } |
Patrick Williams | f944d2e | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 670 | catch (const sdbusplus::exception_t& e) |
jayaprakash Mutyala | 43539cb | 2019-11-25 12:37:27 +0000 | [diff] [blame] | 671 | { |
| 672 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 673 | "ipmiAppClearMessageFlags: can't Clear/Set " |
| 674 | "PreTimeoutInterruptOccurFlag"); |
| 675 | return ipmi::responseUnspecifiedError(); |
| 676 | } |
| 677 | |
jayaprakash Mutyala | 405f54a | 2019-10-18 18:23:27 +0000 | [diff] [blame] | 678 | return ipmi::responseSuccess(); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 679 | } |
| 680 | |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 681 | using systemEventType = std::tuple< |
| 682 | uint16_t, // Generator ID |
| 683 | uint32_t, // Timestamp |
| 684 | uint8_t, // Sensor Type |
| 685 | uint8_t, // EvM Rev |
| 686 | uint8_t, // Sensor Number |
| 687 | uint7_t, // Event Type |
| 688 | bool, // Event Direction |
| 689 | std::array<uint8_t, intel_oem::ipmi::sel::systemEventSize>>; // Event Data |
| 690 | using oemTsEventType = std::tuple< |
Patrick Williams | b37abfb | 2023-05-10 07:50:33 -0500 | [diff] [blame] | 691 | uint32_t, // Timestamp |
| 692 | std::array<uint8_t, intel_oem::ipmi::sel::oemTsEventSize>>; // Event Data |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 693 | using oemEventType = |
Patrick Williams | b37abfb | 2023-05-10 07:50:33 -0500 | [diff] [blame] | 694 | std::array<uint8_t, intel_oem::ipmi::sel::oemEventSize>; // Event Data |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 695 | |
| 696 | /** @brief implements of Read event message buffer command |
| 697 | * |
| 698 | * @returns IPMI completion code plus response data |
| 699 | * - recordID - SEL Record ID |
| 700 | * - recordType - Record Type |
| 701 | * - generatorID - Generator ID |
| 702 | * - timeStamp - Timestamp |
| 703 | * - sensorType - Sensor Type |
| 704 | * - eventMsgFormatRev - Event Message format version |
| 705 | * - sensorNumber - Sensor Number |
| 706 | * - eventType - Event Type |
| 707 | * - eventDir - Event Direction |
| 708 | * - eventData - Event Data field |
| 709 | */ |
Patrick Williams | b37abfb | 2023-05-10 07:50:33 -0500 | [diff] [blame] | 710 | ipmi::RspType<uint16_t, // Record ID |
| 711 | uint8_t, // Record Type |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 712 | std::variant<systemEventType, oemTsEventType, |
| 713 | oemEventType>> // Record Content |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 714 | ipmiAppReadEventMessageBuffer(ipmi::Context::ptr ctx) |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 715 | { |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 716 | ipmi::ChannelInfo chInfo; |
| 717 | |
| 718 | try |
| 719 | { |
| 720 | getChannelInfo(ctx->channel, chInfo); |
| 721 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 722 | catch (const sdbusplus::exception_t& e) |
Jayaprakash Mutyala | cca2140 | 2020-07-16 12:14:10 +0000 | [diff] [blame] | 723 | { |
| 724 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 725 | "ipmiAppReadEventMessageBuffer: Failed to get Channel Info", |
| 726 | phosphor::logging::entry("MSG: %s", e.description())); |
| 727 | return ipmi::responseUnspecifiedError(); |
| 728 | } |
| 729 | if (chInfo.mediumType != |
| 730 | static_cast<uint8_t>(ipmi::EChannelMediumType::systemInterface)) |
| 731 | { |
| 732 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 733 | "ipmiAppReadEventMessageBuffer: Error - supported only in " |
| 734 | "System(SMS) interface"); |
| 735 | return ipmi::responseCommandNotAvailable(); |
| 736 | } |
| 737 | |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 738 | uint16_t recordId = |
| 739 | static_cast<uint16_t>(0x5555); // recordId: 0x55 << 8 | 0x55 |
| 740 | uint16_t generatorId = |
| 741 | static_cast<uint16_t>(0xA741); // generatorId: 0xA7 << 8 | 0x41 |
| 742 | constexpr uint8_t recordType = 0xC0; |
| 743 | constexpr uint8_t eventMsgFormatRev = 0x3A; |
| 744 | constexpr uint8_t sensorNumber = 0xFF; |
| 745 | |
| 746 | // TODO need to be implemented. |
| 747 | std::array<uint8_t, intel_oem::ipmi::sel::systemEventSize> eventData{}; |
| 748 | // All '0xFF' since unused. |
| 749 | eventData.fill(0xFF); |
| 750 | |
| 751 | // Set the event message buffer flag |
| 752 | eventMessageBufferFlag = true; |
| 753 | |
| 754 | return ipmi::responseSuccess( |
| 755 | recordId, recordType, |
| 756 | systemEventType{generatorId, 0, 0, eventMsgFormatRev, sensorNumber, |
| 757 | static_cast<uint7_t>(0), false, eventData}); |
| 758 | } |
| 759 | |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 760 | static void register_bridging_functions() __attribute__((constructor)); |
| 761 | static void register_bridging_functions() |
| 762 | { |
jayaprakash Mutyala | 405f54a | 2019-10-18 18:23:27 +0000 | [diff] [blame] | 763 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnApp, |
| 764 | ipmi::app::cmdClearMessageFlags, |
| 765 | ipmi::Privilege::User, ipmiAppClearMessageFlags); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 766 | |
Yong Li | c3580e9 | 2019-08-15 14:36:47 +0800 | [diff] [blame] | 767 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnApp, |
| 768 | ipmi::app::cmdGetMessageFlags, ipmi::Privilege::User, |
| 769 | ipmiAppGetMessageFlags); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 770 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 771 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnApp, |
| 772 | ipmi::app::cmdGetMessage, ipmi::Privilege::User, |
| 773 | ipmiAppGetMessage); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 774 | |
Deepak Kumar Sahu | 24d2d56 | 2019-07-14 16:05:19 +0000 | [diff] [blame] | 775 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnApp, |
| 776 | ipmi::app::cmdSendMessage, ipmi::Privilege::User, |
| 777 | ipmiAppSendMessage); |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 778 | |
jayaprakash Mutyala | 5ba4687 | 2019-11-20 00:02:48 +0000 | [diff] [blame] | 779 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnApp, |
| 780 | ipmi::app::cmdReadEventMessageBuffer, |
| 781 | ipmi::Privilege::User, ipmiAppReadEventMessageBuffer); |
| 782 | |
Vernon Mauery | a3702c1 | 2019-05-22 13:20:59 -0700 | [diff] [blame] | 783 | return; |
| 784 | } |