Borawski.Lukasz | 86e1b66 | 2018-01-19 14:22:14 +0100 | [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 | #pragma once |
| 17 | |
Tanous | f00032d | 2018-11-05 01:18:10 -0300 | [diff] [blame] | 18 | #include <boost/beast/http/verb.hpp> |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 19 | #include <boost/container/flat_map.hpp> |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 20 | #include <logging.hpp> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 21 | |
| 22 | #include <array> |
| 23 | #include <bitset> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 24 | #include <cstdint> |
| 25 | #include <vector> |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 26 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 27 | namespace redfish |
| 28 | { |
| 29 | |
| 30 | enum class PrivilegeType |
| 31 | { |
| 32 | BASE, |
| 33 | OEM |
| 34 | }; |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 35 | |
Ed Tanous | a692779 | 2018-03-06 10:01:57 -0800 | [diff] [blame] | 36 | /** @brief A fixed array of compile time privileges */ |
| 37 | constexpr std::array<const char*, 5> basePrivileges{ |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 38 | "Login", "ConfigureManager", "ConfigureComponents", "ConfigureSelf", |
| 39 | "ConfigureUsers"}; |
Borawski.Lukasz | 43a095a | 2018-02-19 15:39:01 +0100 | [diff] [blame] | 40 | |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 41 | constexpr const size_t basePrivilegeCount = basePrivileges.size(); |
Ed Tanous | a692779 | 2018-03-06 10:01:57 -0800 | [diff] [blame] | 42 | |
| 43 | /** @brief Max number of privileges per type */ |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 44 | constexpr const size_t maxPrivilegeCount = 32; |
Ed Tanous | a692779 | 2018-03-06 10:01:57 -0800 | [diff] [blame] | 45 | |
| 46 | /** @brief A vector of all privilege names and their indexes */ |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 47 | static const std::array<std::string, maxPrivilegeCount> privilegeNames{ |
| 48 | "Login", "ConfigureManager", "ConfigureComponents", "ConfigureSelf", |
| 49 | "ConfigureUsers"}; |
Borawski.Lukasz | 43a095a | 2018-02-19 15:39:01 +0100 | [diff] [blame] | 50 | |
Borawski.Lukasz | 86e1b66 | 2018-01-19 14:22:14 +0100 | [diff] [blame] | 51 | /** |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 52 | * @brief Redfish privileges |
| 53 | * |
Joseph Reynolds | 900f949 | 2019-11-25 15:37:29 -0600 | [diff] [blame] | 54 | * This implements a set of Redfish privileges. These directly represent |
| 55 | * user privileges and help represent entity privileges. |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 56 | * |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 57 | * Each incoming Connection requires a comparison between privileges held |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 58 | * by the user issuing a request and the target entity's privileges. |
| 59 | * |
| 60 | * To ensure best runtime performance of this comparison, privileges |
| 61 | * are represented as bitsets. Each bit in the bitset corresponds to a |
| 62 | * unique privilege name. |
| 63 | * |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 64 | * A bit is set if the privilege is required (entity domain) or granted |
| 65 | * (user domain) and false otherwise. |
| 66 | * |
Borawski.Lukasz | 86e1b66 | 2018-01-19 14:22:14 +0100 | [diff] [blame] | 67 | */ |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 68 | class Privileges |
| 69 | { |
| 70 | public: |
| 71 | /** |
| 72 | * @brief Constructs object without any privileges active |
| 73 | * |
| 74 | */ |
| 75 | Privileges() = default; |
Borawski.Lukasz | 43a095a | 2018-02-19 15:39:01 +0100 | [diff] [blame] | 76 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 77 | /** |
| 78 | * @brief Constructs object with given privileges active |
| 79 | * |
| 80 | * @param[in] privilegeList List of privileges to be activated |
| 81 | * |
| 82 | */ |
| 83 | Privileges(std::initializer_list<const char*> privilegeList) |
| 84 | { |
| 85 | for (const char* privilege : privilegeList) |
| 86 | { |
| 87 | if (!setSinglePrivilege(privilege)) |
| 88 | { |
| 89 | BMCWEB_LOG_CRITICAL << "Unable to set privilege " << privilege |
| 90 | << "in constructor"; |
| 91 | } |
| 92 | } |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 93 | } |
| 94 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 95 | /** |
| 96 | * @brief Sets given privilege in the bitset |
| 97 | * |
| 98 | * @param[in] privilege Privilege to be set |
| 99 | * |
| 100 | * @return None |
| 101 | * |
| 102 | */ |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 103 | bool setSinglePrivilege(const std::string_view privilege) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 104 | { |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 105 | for (size_t searchIndex = 0; searchIndex < privilegeNames.size(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 106 | searchIndex++) |
| 107 | { |
| 108 | if (privilege == privilegeNames[searchIndex]) |
| 109 | { |
| 110 | privilegeBitset.set(searchIndex); |
| 111 | return true; |
| 112 | } |
| 113 | } |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 114 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 115 | return false; |
Ed Tanous | a692779 | 2018-03-06 10:01:57 -0800 | [diff] [blame] | 116 | } |
| 117 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 118 | /** |
Joseph Reynolds | 900f949 | 2019-11-25 15:37:29 -0600 | [diff] [blame] | 119 | * @brief Resets the given privilege in the bitset |
| 120 | * |
| 121 | * @param[in] privilege Privilege to be reset |
| 122 | * |
| 123 | * @return None |
| 124 | * |
| 125 | */ |
| 126 | bool resetSinglePrivilege(const char* privilege) |
| 127 | { |
| 128 | for (size_t searchIndex = 0; searchIndex < privilegeNames.size(); |
| 129 | searchIndex++) |
| 130 | { |
| 131 | if (privilege == privilegeNames[searchIndex]) |
| 132 | { |
| 133 | privilegeBitset.reset(searchIndex); |
| 134 | return true; |
| 135 | } |
| 136 | } |
| 137 | return false; |
| 138 | } |
| 139 | |
| 140 | /** |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 141 | * @brief Retrieves names of all active privileges for a given type |
| 142 | * |
| 143 | * @param[in] type Base or OEM |
| 144 | * |
| 145 | * @return Vector of active privileges. Pointers are valid until |
| 146 | * the setSinglePrivilege is called, or the Privilege structure is destroyed |
| 147 | * |
| 148 | */ |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 149 | std::vector<std::string> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 150 | getActivePrivilegeNames(const PrivilegeType type) const |
| 151 | { |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 152 | std::vector<std::string> activePrivileges; |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 153 | |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 154 | size_t searchIndex = 0; |
| 155 | size_t endIndex = basePrivilegeCount; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 156 | if (type == PrivilegeType::OEM) |
| 157 | { |
| 158 | searchIndex = basePrivilegeCount - 1; |
| 159 | endIndex = privilegeNames.size(); |
| 160 | } |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 161 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 162 | for (; searchIndex < endIndex; searchIndex++) |
| 163 | { |
| 164 | if (privilegeBitset.test(searchIndex)) |
| 165 | { |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 166 | activePrivileges.emplace_back(privilegeNames[searchIndex]); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 167 | } |
| 168 | } |
| 169 | |
| 170 | return activePrivileges; |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * @brief Determines if this Privilege set is a superset of the given |
| 175 | * privilege set |
| 176 | * |
| 177 | * @param[in] privilege Privilege to be checked |
| 178 | * |
| 179 | * @return None |
| 180 | * |
| 181 | */ |
| 182 | bool isSupersetOf(const Privileges& p) const |
| 183 | { |
| 184 | return (privilegeBitset & p.privilegeBitset) == p.privilegeBitset; |
| 185 | } |
| 186 | |
Joseph Reynolds | 3bf4e63 | 2020-02-06 14:44:32 -0600 | [diff] [blame] | 187 | /** |
| 188 | * @brief Returns the intersection of two Privilege sets. |
| 189 | * |
| 190 | * @param[in] privilege Privilege set to intersect with. |
| 191 | * |
| 192 | * @return The new Privilege set. |
| 193 | * |
| 194 | */ |
| 195 | Privileges intersection(const Privileges& p) const |
| 196 | { |
| 197 | return Privileges{privilegeBitset & p.privilegeBitset}; |
| 198 | } |
| 199 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 200 | private: |
Joseph Reynolds | 3bf4e63 | 2020-02-06 14:44:32 -0600 | [diff] [blame] | 201 | Privileges(const std::bitset<maxPrivilegeCount>& p) : privilegeBitset{p} |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 202 | {} |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 203 | std::bitset<maxPrivilegeCount> privilegeBitset = 0; |
Borawski.Lukasz | 86e1b66 | 2018-01-19 14:22:14 +0100 | [diff] [blame] | 204 | }; |
| 205 | |
Ratan Gupta | 6f35956 | 2019-04-03 10:39:08 +0530 | [diff] [blame] | 206 | inline const Privileges& getUserPrivileges(const std::string& userRole) |
| 207 | { |
| 208 | // Redfish privilege : Administrator |
| 209 | if (userRole == "priv-admin") |
| 210 | { |
| 211 | static Privileges admin{"Login", "ConfigureManager", "ConfigureSelf", |
| 212 | "ConfigureUsers", "ConfigureComponents"}; |
| 213 | return admin; |
| 214 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 215 | if (userRole == "priv-operator") |
Ratan Gupta | 6f35956 | 2019-04-03 10:39:08 +0530 | [diff] [blame] | 216 | { |
| 217 | // Redfish privilege : Operator |
| 218 | static Privileges op{"Login", "ConfigureSelf", "ConfigureComponents"}; |
| 219 | return op; |
| 220 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 221 | if (userRole == "priv-user") |
Ratan Gupta | 6f35956 | 2019-04-03 10:39:08 +0530 | [diff] [blame] | 222 | { |
| 223 | // Redfish privilege : Readonly |
| 224 | static Privileges readOnly{"Login", "ConfigureSelf"}; |
| 225 | return readOnly; |
| 226 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 227 | // Redfish privilege : NoAccess |
| 228 | static Privileges noaccess; |
| 229 | return noaccess; |
Ratan Gupta | 6f35956 | 2019-04-03 10:39:08 +0530 | [diff] [blame] | 230 | } |
| 231 | |
Joseph Reynolds | 900f949 | 2019-11-25 15:37:29 -0600 | [diff] [blame] | 232 | /** |
| 233 | * @brief The OperationMap represents the privileges required for a |
| 234 | * single entity (URI). It maps from the allowable verbs to the |
| 235 | * privileges required to use that operation. |
| 236 | * |
| 237 | * This represents the Redfish "Privilege AND and OR syntax" as given |
| 238 | * in the spec and shown in the Privilege Registry. This does not |
| 239 | * implement any Redfish property overrides, subordinate overrides, or |
| 240 | * resource URI overrides. This does not implement the limitation of |
| 241 | * the ConfigureSelf privilege to operate only on your own account or |
| 242 | * session. |
| 243 | **/ |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 244 | using OperationMap = boost::container::flat_map<boost::beast::http::verb, |
| 245 | std::vector<Privileges>>; |
Borawski.Lukasz | 43a095a | 2018-02-19 15:39:01 +0100 | [diff] [blame] | 246 | |
Joseph Reynolds | 900f949 | 2019-11-25 15:37:29 -0600 | [diff] [blame] | 247 | /* @brief Checks if user is allowed to call an operation |
| 248 | * |
| 249 | * @param[in] operationPrivilegesRequired Privileges required |
| 250 | * @param[in] userPrivileges Privileges the user has |
| 251 | * |
| 252 | * @return True if operation is allowed, false otherwise |
| 253 | */ |
| 254 | inline bool isOperationAllowedWithPrivileges( |
| 255 | const std::vector<Privileges>& operationPrivilegesRequired, |
| 256 | const Privileges& userPrivileges) |
| 257 | { |
| 258 | // If there are no privileges assigned, there are no privileges required |
| 259 | if (operationPrivilegesRequired.empty()) |
| 260 | { |
| 261 | return true; |
| 262 | } |
| 263 | for (auto& requiredPrivileges : operationPrivilegesRequired) |
| 264 | { |
| 265 | BMCWEB_LOG_ERROR << "Checking operation privileges..."; |
| 266 | if (userPrivileges.isSupersetOf(requiredPrivileges)) |
| 267 | { |
| 268 | BMCWEB_LOG_ERROR << "...success"; |
| 269 | return true; |
| 270 | } |
| 271 | } |
| 272 | return false; |
| 273 | } |
| 274 | |
Borawski.Lukasz | 43a095a | 2018-02-19 15:39:01 +0100 | [diff] [blame] | 275 | /** |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 276 | * @brief Checks if given privileges allow to call an HTTP method |
| 277 | * |
| 278 | * @param[in] method HTTP method |
| 279 | * @param[in] user Privileges |
| 280 | * |
| 281 | * @return True if method allowed, false otherwise |
Borawski.Lukasz | 43a095a | 2018-02-19 15:39:01 +0100 | [diff] [blame] | 282 | * |
| 283 | */ |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 284 | inline bool isMethodAllowedWithPrivileges(const boost::beast::http::verb method, |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 285 | const OperationMap& operationMap, |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 286 | const Privileges& userPrivileges) |
| 287 | { |
| 288 | const auto& it = operationMap.find(method); |
| 289 | if (it == operationMap.end()) |
| 290 | { |
| 291 | return false; |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 292 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 293 | |
Joseph Reynolds | 900f949 | 2019-11-25 15:37:29 -0600 | [diff] [blame] | 294 | return isOperationAllowedWithPrivileges(it->second, userPrivileges); |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 295 | } |
Borawski.Lukasz | aecb47a | 2018-01-25 12:14:14 +0100 | [diff] [blame] | 296 | |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 297 | /** |
| 298 | * @brief Checks if a user is allowed to call an HTTP method |
| 299 | * |
| 300 | * @param[in] method HTTP method |
| 301 | * @param[in] user Username |
| 302 | * |
| 303 | * @return True if method allowed, false otherwise |
| 304 | * |
| 305 | */ |
Ed Tanous | e0d918b | 2018-03-27 17:41:04 -0700 | [diff] [blame] | 306 | inline bool isMethodAllowedForUser(const boost::beast::http::verb method, |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 307 | const OperationMap& operationMap, |
Ed Tanous | cb13a39 | 2020-07-25 19:02:03 +0000 | [diff] [blame] | 308 | const std::string&) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 309 | { |
| 310 | // TODO: load user privileges from configuration as soon as its available |
| 311 | // now we are granting all privileges to everyone. |
| 312 | Privileges userPrivileges{"Login", "ConfigureManager", "ConfigureSelf", |
| 313 | "ConfigureUsers", "ConfigureComponents"}; |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 314 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 315 | return isMethodAllowedWithPrivileges(method, operationMap, userPrivileges); |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 316 | } |
Borawski.Lukasz | 86e1b66 | 2018-01-19 14:22:14 +0100 | [diff] [blame] | 317 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 318 | } // namespace redfish |