blob: 26f980aa559d4ca0b1d07ce6b90b4726bb9b6472 [file] [log] [blame]
Richard Marian Thomaiyar4654d992018-04-19 05:38:37 +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#pragma once
Richard Marian Thomaiyar4654d992018-04-19 05:38:37 +053017
Saravanan Palanisamy77381f12019-05-15 22:33:17 +000018#include <bitset>
NITIN SHARMAb541a5a2019-07-18 12:46:59 +000019#include <ipmid/api.hpp>
Richard Marian Thomaiyar4654d992018-04-19 05:38:37 +053020#include <string>
21
22namespace ipmi
23{
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053024
25// TODO: Has to be replaced with proper channel number assignment logic
Richard Marian Thomaiyar6e1ba9e2018-11-29 06:29:21 +053026/**
27 * @enum Channel Id
28 */
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053029enum class EChannelID : uint8_t
30{
31 chanLan1 = 0x01
32};
33
34static constexpr uint8_t invalidUserId = 0xFF;
35static constexpr uint8_t reservedUserId = 0x0;
36static constexpr uint8_t ipmiMaxUserName = 16;
37static constexpr uint8_t ipmiMaxUsers = 15;
38static constexpr uint8_t ipmiMaxChannels = 16;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +053039static constexpr uint8_t maxIpmi20PasswordSize = 20;
40static constexpr uint8_t maxIpmi15PasswordSize = 16;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +000041static constexpr uint8_t payloadsPerByte = 8;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053042
Richard Marian Thomaiyar6e1ba9e2018-11-29 06:29:21 +053043/** @struct PrivAccess
44 *
45 * User privilege related access data as per IPMI specification.(refer spec
46 * sec 22.26)
47 */
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053048struct PrivAccess
49{
50#if BYTE_ORDER == LITTLE_ENDIAN
51 uint8_t privilege : 4;
52 uint8_t ipmiEnabled : 1;
53 uint8_t linkAuthEnabled : 1;
54 uint8_t accessCallback : 1;
55 uint8_t reserved : 1;
56#endif
57#if BYTE_ORDER == BIG_ENDIAN
58 uint8_t reserved : 1;
59 uint8_t accessCallback : 1;
60 uint8_t linkAuthEnabled : 1;
61 uint8_t ipmiEnabled : 1;
62 uint8_t privilege : 4;
63#endif
64} __attribute__((packed));
65
Saravanan Palanisamy77381f12019-05-15 22:33:17 +000066/** @struct UserPayloadAccess
67 *
68 * Structure to denote payload access restrictions applicable for a
69 * given user and channel. (refer spec sec 24.6)
70 */
71struct PayloadAccess
72{
73 std::bitset<payloadsPerByte> stdPayloadEnables1;
74 std::bitset<payloadsPerByte> stdPayloadEnables2Reserved;
75 std::bitset<payloadsPerByte> oemPayloadEnables1;
76 std::bitset<payloadsPerByte> oemPayloadEnables2Reserved;
77};
78
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053079/** @brief initializes user management
80 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +000081 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053082 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +000083Cc ipmiUserInit();
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053084
Richard Marian Thomaiyar4654d992018-04-19 05:38:37 +053085/** @brief The ipmi get user password layer call
86 *
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053087 * @param[in] userName - user name
Richard Marian Thomaiyar4654d992018-04-19 05:38:37 +053088 *
89 * @return password or empty string
90 */
91std::string ipmiUserGetPassword(const std::string& userName);
92
AppaRao Pulib29b5ab2018-05-17 10:28:48 +053093/** @brief The IPMI call to clear password entry associated with specified
94 * username
95 *
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053096 * @param[in] userName - user name to be removed
AppaRao Pulib29b5ab2018-05-17 10:28:48 +053097 *
98 * @return 0 on success, non-zero otherwise.
99 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000100Cc ipmiClearUserEntryPassword(const std::string& userName);
Richard Marian Thomaiyar42bed642018-09-21 12:28:57 +0530101
102/** @brief The IPMI call to reuse password entry for the renamed user
103 * to another one
104 *
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530105 * @param[in] userName - user name which has to be renamed
106 * @param[in] newUserName - new user name
Richard Marian Thomaiyar42bed642018-09-21 12:28:57 +0530107 *
108 * @return 0 on success, non-zero otherwise.
109 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000110Cc ipmiRenameUserEntryPassword(const std::string& userName,
111 const std::string& newUserName);
AppaRao Pulib29b5ab2018-05-17 10:28:48 +0530112
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530113/** @brief determines valid userId
114 *
115 * @param[in] userId - user id
116 *
117 * @return true if valid, false otherwise
118 */
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530119bool ipmiUserIsValidUserId(const uint8_t userId);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530120
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530121/** @brief determines valid privilege level
122 *
123 * @param[in] priv - privilege level
124 *
125 * @return true if valid, false otherwise
126 */
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530127bool ipmiUserIsValidPrivilege(const uint8_t priv);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530128
129/** @brief get user id corresponding to the user name
130 *
131 * @param[in] userName - user name
132 *
133 * @return userid. Will return 0xff if no user id found
134 */
135uint8_t ipmiUserGetUserId(const std::string& userName);
136
137/** @brief set's user name
138 *
139 * @param[in] userId - user id
140 * @param[in] userName - user name
141 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000142 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530143 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000144Cc ipmiUserSetUserName(const uint8_t userId, const std::string& userName);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530145
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530146/** @brief set user password
147 *
148 * @param[in] userId - user id
149 * @param[in] userPassword - New Password
150 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000151 * @return ccSuccess for success, others for failure.
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530152 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000153Cc ipmiUserSetUserPassword(const uint8_t userId, const char* userPassword);
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530154
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530155/** @brief set special user password (non-ipmi accounts)
156 *
157 * @param[in] userName - user name
158 * @param[in] userPassword - New Password
159 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000160 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530161 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000162Cc ipmiSetSpecialUserPassword(const std::string& userName,
163 const std::string& userPassword);
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530164
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530165/** @brief get user name
166 *
167 * @param[in] userId - user id
168 * @param[out] userName - user name
169 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000170 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530171 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000172Cc ipmiUserGetUserName(const uint8_t userId, std::string& userName);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530173
174/** @brief provides available fixed, max, and enabled user counts
175 *
176 * @param[out] maxChUsers - max channel users
177 * @param[out] enabledUsers - enabled user count
178 * @param[out] fixedUsers - fixed user count
179 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000180 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530181 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000182Cc ipmiUserGetAllCounts(uint8_t& maxChUsers, uint8_t& enabledUsers,
183 uint8_t& fixedUsers);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530184
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530185/** @brief function to update user enabled state
186 *
187 * @param[in] userId - user id
188 *..@param[in] state - state of the user to be updated, true - user enabled.
189 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000190 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530191 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000192Cc ipmiUserUpdateEnabledState(const uint8_t userId, const bool& state);
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530193
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530194/** @brief determines whether user is enabled
195 *
196 * @param[in] userId - user id
197 *..@param[out] state - state of the user
198 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000199 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530200 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000201Cc ipmiUserCheckEnabled(const uint8_t userId, bool& state);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530202
203/** @brief provides user privilege access data
204 *
205 * @param[in] userId - user id
206 * @param[in] chNum - channel number
207 * @param[out] privAccess - privilege access data
208 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000209 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530210 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000211Cc ipmiUserGetPrivilegeAccess(const uint8_t userId, const uint8_t chNum,
212 PrivAccess& privAccess);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530213
214/** @brief sets user privilege access data
215 *
216 * @param[in] userId - user id
217 * @param[in] chNum - channel number
218 * @param[in] privAccess - privilege access data
219 * @param[in] otherPrivUpdate - flags to indicate other fields update
220 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000221 * @return ccSuccess for success, others for failure.
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530222 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000223Cc ipmiUserSetPrivilegeAccess(const uint8_t userId, const uint8_t chNum,
224 const PrivAccess& privAccess,
225 const bool& otherPrivUpdate);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530226
Ayushi Smriti02650d52019-05-15 11:59:09 +0000227/** @brief check for user pam authentication. This is to determine, whether user
228 * is already locked out for failed login attempt
229 *
230 * @param[in] username - username
231 * @param[in] password - password
232 *
233 * @return status
234 */
235bool ipmiUserPamAuthenticate(std::string_view userName,
236 std::string_view userPassword);
237
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000238/** @brief sets user payload access data
239 *
240 * @param[in] chNum - channel number
241 * @param[in] operation - ENABLE / DISABLE operation
242 * @param[in] userId - user id
243 * @param[in] payloadAccess - payload access data
244 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000245 * @return ccSuccess for success, others for failure.
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000246 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000247Cc ipmiUserSetUserPayloadAccess(const uint8_t chNum, const uint8_t operation,
248 const uint8_t userId,
249 const PayloadAccess& payloadAccess);
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000250
251/** @brief provides user payload access data
252 *
253 * @param[in] chNum - channel number
254 * @param[in] userId - user id
255 * @param[out] payloadAccess - payload access data
256 *
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000257 * @return ccSuccess for success, others for failure.
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000258 */
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000259Cc ipmiUserGetUserPayloadAccess(const uint8_t chNum, const uint8_t userId,
260 PayloadAccess& payloadAccess);
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000261
Richard Marian Thomaiyar4654d992018-04-19 05:38:37 +0530262} // namespace ipmi