Ed Tanous | 08bbe11 | 2023-04-06 13:10:02 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "dbus_utility.hpp" |
| 4 | #include "error_messages.hpp" |
| 5 | #include "http_request.hpp" |
| 6 | #include "http_response.hpp" |
| 7 | #include "logging.hpp" |
| 8 | #include "routing/baserule.hpp" |
| 9 | #include "utils/dbus_utils.hpp" |
| 10 | |
| 11 | #include <boost/url/format.hpp> |
| 12 | #include <sdbusplus/unpack_properties.hpp> |
| 13 | |
| 14 | #include <memory> |
| 15 | #include <vector> |
| 16 | |
| 17 | namespace crow |
| 18 | { |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 19 | // Populate session with user information. |
| 20 | inline bool |
| 21 | populateUserInfo(Request& req, |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 22 | const dbus::utility::DBusPropertiesMap& userInfoMap) |
| 23 | { |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 24 | if (req.session == nullptr) |
| 25 | { |
| 26 | return false; |
| 27 | } |
| 28 | |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 29 | std::string userRole; |
| 30 | bool remoteUser = false; |
| 31 | std::optional<bool> passwordExpired; |
| 32 | std::optional<std::vector<std::string>> userGroups; |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 33 | |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 34 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 35 | redfish::dbus_utils::UnpackErrorPrinter(), userInfoMap, "UserPrivilege", |
| 36 | userRole, "RemoteUser", remoteUser, "UserPasswordExpired", |
| 37 | passwordExpired, "UserGroups", userGroups); |
| 38 | |
| 39 | if (!success) |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 40 | { |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 41 | BMCWEB_LOG_ERROR("Failed to unpack user properties."); |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 42 | return false; |
| 43 | } |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 44 | |
| 45 | if (!remoteUser && (!passwordExpired || !userGroups)) |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 46 | { |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 47 | BMCWEB_LOG_ERROR( |
| 48 | "Missing UserPasswordExpired or UserGroups property for local user"); |
| 49 | return false; |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 50 | } |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 51 | |
| 52 | req.session->userRole = userRole; |
| 53 | BMCWEB_LOG_DEBUG("userName = {} userRole = {}", req.session->username, |
| 54 | userRole); |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 55 | |
| 56 | // Set isConfigureSelfOnly based on D-Bus results. This |
| 57 | // ignores the results from both pamAuthenticateUser and the |
| 58 | // value from any previous use of this session. |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 59 | req.session->isConfigureSelfOnly = passwordExpired.value_or(false); |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 60 | |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 61 | req.session->userGroups.clear(); |
| 62 | if (userGroups) |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 63 | { |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 64 | req.session->userGroups.swap(*userGroups); |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | return true; |
| 68 | } |
Ed Tanous | 08bbe11 | 2023-04-06 13:10:02 -0700 | [diff] [blame] | 69 | |
| 70 | inline bool |
| 71 | isUserPrivileged(Request& req, |
| 72 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 73 | BaseRule& rule) |
| 74 | { |
Ed Tanous | d3dfb6e | 2023-07-27 09:33:49 -0700 | [diff] [blame] | 75 | if (req.session == nullptr) |
| 76 | { |
| 77 | return false; |
| 78 | } |
Ed Tanous | 08bbe11 | 2023-04-06 13:10:02 -0700 | [diff] [blame] | 79 | // Get the user's privileges from the role |
| 80 | redfish::Privileges userPrivileges = |
| 81 | redfish::getUserPrivileges(*req.session); |
| 82 | |
| 83 | // Modify privileges if isConfigureSelfOnly. |
| 84 | if (req.session->isConfigureSelfOnly) |
| 85 | { |
| 86 | // Remove all privileges except ConfigureSelf |
| 87 | userPrivileges = |
| 88 | userPrivileges.intersection(redfish::Privileges{"ConfigureSelf"}); |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 89 | BMCWEB_LOG_DEBUG("Operation limited to ConfigureSelf"); |
Ed Tanous | 08bbe11 | 2023-04-06 13:10:02 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | if (!rule.checkPrivileges(userPrivileges)) |
| 93 | { |
| 94 | asyncResp->res.result(boost::beast::http::status::forbidden); |
| 95 | if (req.session->isConfigureSelfOnly) |
| 96 | { |
| 97 | redfish::messages::passwordChangeRequired( |
| 98 | asyncResp->res, |
| 99 | boost::urls::format("/redfish/v1/AccountService/Accounts/{}", |
| 100 | req.session->username)); |
| 101 | } |
| 102 | return false; |
| 103 | } |
| 104 | |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 105 | req.userRole = req.session->userRole; |
Ed Tanous | 08bbe11 | 2023-04-06 13:10:02 -0700 | [diff] [blame] | 106 | return true; |
| 107 | } |
| 108 | |
| 109 | template <typename CallbackFn> |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 110 | void afterGetUserInfo(Request& req, |
| 111 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 112 | BaseRule& rule, CallbackFn&& callback, |
| 113 | const boost::system::error_code& ec, |
| 114 | const dbus::utility::DBusPropertiesMap& userInfoMap) |
| 115 | { |
| 116 | if (ec) |
| 117 | { |
| 118 | BMCWEB_LOG_ERROR("GetUserInfo failed..."); |
| 119 | asyncResp->res.result( |
| 120 | boost::beast::http::status::internal_server_error); |
| 121 | return; |
| 122 | } |
| 123 | |
Jonathan Doman | 522377d | 2023-08-18 15:27:54 -0700 | [diff] [blame] | 124 | if (!populateUserInfo(req, userInfoMap)) |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 125 | { |
| 126 | BMCWEB_LOG_ERROR("Failed to populate user information"); |
| 127 | asyncResp->res.result( |
| 128 | boost::beast::http::status::internal_server_error); |
| 129 | return; |
| 130 | } |
| 131 | |
| 132 | if (!isUserPrivileged(req, asyncResp, rule)) |
| 133 | { |
| 134 | // User is not privileged |
| 135 | BMCWEB_LOG_ERROR("Insufficient Privilege"); |
| 136 | asyncResp->res.result(boost::beast::http::status::forbidden); |
| 137 | return; |
| 138 | } |
| 139 | callback(req); |
| 140 | } |
| 141 | |
| 142 | template <typename CallbackFn> |
Ed Tanous | 08bbe11 | 2023-04-06 13:10:02 -0700 | [diff] [blame] | 143 | void validatePrivilege(Request& req, |
| 144 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 145 | BaseRule& rule, CallbackFn&& callback) |
| 146 | { |
| 147 | if (req.session == nullptr) |
| 148 | { |
| 149 | return; |
| 150 | } |
| 151 | std::string username = req.session->username; |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 152 | crow::connections::systemBus->async_method_call( |
| 153 | [&req, asyncResp, &rule, callback(std::forward<CallbackFn>(callback))]( |
| 154 | const boost::system::error_code& ec, |
| 155 | const dbus::utility::DBusPropertiesMap& userInfoMap) mutable { |
| 156 | afterGetUserInfo(req, asyncResp, rule, |
| 157 | std::forward<CallbackFn>(callback), ec, userInfoMap); |
Patrick Williams | 5a39f77 | 2023-10-20 11:20:21 -0500 | [diff] [blame] | 158 | }, |
Gunnar Mills | 59ba638 | 2023-08-01 12:41:17 -0500 | [diff] [blame] | 159 | "xyz.openbmc_project.User.Manager", "/xyz/openbmc_project/user", |
| 160 | "xyz.openbmc_project.User.Manager", "GetUserInfo", username); |
Ed Tanous | 08bbe11 | 2023-04-06 13:10:02 -0700 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | } // namespace crow |