blob: 933659633de90fc389ac98e51a3b33f1a034eac3 [file] [log] [blame]
AppaRao Puli071f3f22018-05-24 16:45:30 +05301/*
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#include "channel_layer.hpp"
18
19#include "channel_mgmt.hpp"
20
21#include <phosphor-logging/log.hpp>
22
23namespace ipmi
24{
25
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +053026bool doesDeviceExist(const uint8_t chNum)
AppaRao Puli071f3f22018-05-24 16:45:30 +053027{
28 // TODO: This is not the reliable way to find the device
29 // associated with ethernet interface as the channel number to
30 // eth association is not done. Need to revisit later
Richard Marian Thomaiyar73906b92019-01-04 23:48:02 +053031 struct stat fileStat = {0};
Johnathan Mantey74a21022018-12-13 13:17:56 -080032 std::string devName("/sys/class/net/" + getChannelName(chNum));
AppaRao Puli071f3f22018-05-24 16:45:30 +053033
34 if (stat(devName.data(), &fileStat) != 0)
35 {
36 phosphor::logging::log<phosphor::logging::level::DEBUG>(
37 "Ethernet device not found");
38 return false;
39 }
40
41 return true;
42}
43
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +053044bool isValidPrivLimit(const uint8_t privLimit)
AppaRao Puli071f3f22018-05-24 16:45:30 +053045{
46 return ((privLimit >= PRIVILEGE_CALLBACK) && (privLimit <= PRIVILEGE_OEM));
47}
48
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +053049bool isValidAccessMode(const uint8_t accessMode)
AppaRao Puli071f3f22018-05-24 16:45:30 +053050{
51 return (
52 (accessMode >= static_cast<uint8_t>(EChannelAccessMode::disabled)) &&
53 (accessMode <= static_cast<uint8_t>(EChannelAccessMode::shared)));
54}
55
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +053056bool isValidChannel(const uint8_t chNum)
AppaRao Puli071f3f22018-05-24 16:45:30 +053057{
58 return getChannelConfigObject().isValidChannel(chNum);
59}
60
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +053061bool isValidAuthType(const uint8_t chNum, const EAuthType& authType)
AppaRao Puli071f3f22018-05-24 16:45:30 +053062{
63 return getChannelConfigObject().isValidAuthType(chNum, authType);
64}
65
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +053066EChannelSessSupported getChannelSessionSupport(const uint8_t chNum)
AppaRao Puli071f3f22018-05-24 16:45:30 +053067{
68 return getChannelConfigObject().getChannelSessionSupport(chNum);
69}
70
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +053071int getChannelActiveSessions(const uint8_t chNum)
AppaRao Puli071f3f22018-05-24 16:45:30 +053072{
73 return getChannelConfigObject().getChannelActiveSessions(chNum);
74}
75
Vernon Mauery58317122018-11-28 11:02:43 -080076size_t getChannelMaxTransferSize(uint8_t chNum)
77{
78 return getChannelConfigObject().getChannelMaxTransferSize(chNum);
79}
80
NITIN SHARMAb541a5a2019-07-18 12:46:59 +000081Cc ipmiChannelInit()
AppaRao Puli071f3f22018-05-24 16:45:30 +053082{
83 getChannelConfigObject();
NITIN SHARMAb541a5a2019-07-18 12:46:59 +000084 return ccSuccess;
AppaRao Puli071f3f22018-05-24 16:45:30 +053085}
86
NITIN SHARMAb541a5a2019-07-18 12:46:59 +000087Cc getChannelInfo(const uint8_t chNum, ChannelInfo& chInfo)
AppaRao Puli071f3f22018-05-24 16:45:30 +053088{
89 return getChannelConfigObject().getChannelInfo(chNum, chInfo);
90}
91
NITIN SHARMAb541a5a2019-07-18 12:46:59 +000092Cc getChannelAccessData(const uint8_t chNum, ChannelAccess& chAccessData)
AppaRao Puli071f3f22018-05-24 16:45:30 +053093{
94 return getChannelConfigObject().getChannelAccessData(chNum, chAccessData);
95}
96
NITIN SHARMAb541a5a2019-07-18 12:46:59 +000097Cc setChannelAccessData(const uint8_t chNum, const ChannelAccess& chAccessData,
98 const uint8_t setFlag)
AppaRao Puli071f3f22018-05-24 16:45:30 +053099{
100 return getChannelConfigObject().setChannelAccessData(chNum, chAccessData,
101 setFlag);
102}
103
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000104Cc getChannelAccessPersistData(const uint8_t chNum, ChannelAccess& chAccessData)
AppaRao Puli071f3f22018-05-24 16:45:30 +0530105{
106 return getChannelConfigObject().getChannelAccessPersistData(chNum,
107 chAccessData);
108}
109
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000110Cc setChannelAccessPersistData(const uint8_t chNum,
111 const ChannelAccess& chAccessData,
112 const uint8_t setFlag)
AppaRao Puli071f3f22018-05-24 16:45:30 +0530113{
114 return getChannelConfigObject().setChannelAccessPersistData(
115 chNum, chAccessData, setFlag);
116}
117
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000118Cc getChannelAuthTypeSupported(const uint8_t chNum, uint8_t& authTypeSupported)
AppaRao Puli071f3f22018-05-24 16:45:30 +0530119{
120 return getChannelConfigObject().getChannelAuthTypeSupported(
121 chNum, authTypeSupported);
122}
123
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000124Cc getChannelEnabledAuthType(const uint8_t chNum, const uint8_t priv,
125 EAuthType& authType)
AppaRao Puli071f3f22018-05-24 16:45:30 +0530126{
127 return getChannelConfigObject().getChannelEnabledAuthType(chNum, priv,
128 authType);
129}
130
Richard Marian Thomaiyar55768e32019-03-02 22:54:37 +0530131std::string getChannelName(const uint8_t chNum)
Johnathan Mantey74a21022018-12-13 13:17:56 -0800132{
133 return getChannelConfigObject().getChannelName(chNum);
134}
135
Vernon Mauery735ee952019-02-15 13:38:52 -0800136uint8_t getChannelByName(const std::string& chName)
137{
138 return getChannelConfigObject().getChannelByName(chName);
139}
Ayushi Smriti6fd812d2019-04-12 18:51:31 +0000140
141bool isValidPayloadType(const PayloadType payloadType)
142{
143 return (
144 payloadType == PayloadType::IPMI || payloadType == PayloadType::SOL ||
145 payloadType == PayloadType::OPEN_SESSION_REQUEST ||
146 payloadType == PayloadType::OPEN_SESSION_RESPONSE ||
147 payloadType == PayloadType::RAKP1 ||
148 payloadType == PayloadType::RAKP2 ||
149 payloadType == PayloadType::RAKP3 || payloadType == PayloadType::RAKP4);
150}
AppaRao Puli071f3f22018-05-24 16:45:30 +0530151} // namespace ipmi