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 #include "users.hpp" 18 19 #include <boost/process/child.hpp> 20 #include <boost/process/io.hpp> 21 #include <phosphor-logging/elog-errors.hpp> 22 #include <phosphor-logging/elog.hpp> 23 #include <phosphor-logging/lg2.hpp> 24 #include <sdbusplus/bus.hpp> 25 #include <sdbusplus/server/object.hpp> 26 #include <xyz/openbmc_project/Common/error.hpp> 27 #include <xyz/openbmc_project/User/AccountPolicy/server.hpp> 28 #include <xyz/openbmc_project/User/Manager/server.hpp> 29 30 #include <span> 31 #include <string> 32 #include <unordered_map> 33 #include <variant> 34 #include <vector> 35 36 namespace phosphor 37 { 38 namespace user 39 { 40 41 inline constexpr size_t ipmiMaxUsers = 15; 42 inline constexpr size_t maxSystemUsers = 30; 43 inline constexpr uint8_t minPasswdLength = 8; 44 inline constexpr size_t maxSystemGroupNameLength = 32; 45 inline constexpr size_t maxSystemGroupCount = 64; 46 47 using UserMgrIface = sdbusplus::xyz::openbmc_project::User::server::Manager; 48 using UserSSHLists = 49 std::pair<std::vector<std::string>, std::vector<std::string>>; 50 using AccountPolicyIface = 51 sdbusplus::xyz::openbmc_project::User::server::AccountPolicy; 52 53 using Ifaces = sdbusplus::server::object_t<UserMgrIface, AccountPolicyIface>; 54 55 using Privilege = std::string; 56 using GroupList = std::vector<std::string>; 57 using UserEnabled = bool; 58 using PropertyName = std::string; 59 using ServiceEnabled = bool; 60 61 using UserInfo = std::variant<Privilege, GroupList, UserEnabled>; 62 using UserInfoMap = std::map<PropertyName, UserInfo>; 63 64 using DbusUserObjPath = sdbusplus::message::object_path; 65 66 using DbusUserPropVariant = std::variant<Privilege, ServiceEnabled>; 67 68 using DbusUserObjProperties = std::map<PropertyName, DbusUserPropVariant>; 69 70 using Interface = std::string; 71 72 using DbusUserObjValue = std::map<Interface, DbusUserObjProperties>; 73 74 using DbusUserObj = std::map<DbusUserObjPath, DbusUserObjValue>; 75 76 std::string getCSVFromVector(std::span<const std::string> vec); 77 78 bool removeStringFromCSV(std::string& csvStr, const std::string& delStr); 79 80 template <typename... ArgTypes> 81 std::vector<std::string> executeCmd(const char* path, ArgTypes&&... tArgs) 82 { 83 std::vector<std::string> stdOutput; 84 boost::process::ipstream stdOutStream; 85 boost::process::child execProg(path, const_cast<char*>(tArgs)..., 86 boost::process::std_out > stdOutStream); 87 std::string stdOutLine; 88 89 while (stdOutStream && std::getline(stdOutStream, stdOutLine) && 90 !stdOutLine.empty()) 91 { 92 stdOutput.emplace_back(stdOutLine); 93 } 94 95 execProg.wait(); 96 97 int retCode = execProg.exit_code(); 98 if (retCode) 99 { 100 lg2::error("Command {PATH} execution failed, return code {RETCODE}", 101 "PATH", path, "RETCODE", retCode); 102 phosphor::logging::elog< 103 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure>(); 104 } 105 106 return stdOutput; 107 } 108 109 /** @class UserMgr 110 * @brief Responsible for managing user accounts over the D-Bus interface. 111 */ 112 class UserMgr : public Ifaces 113 { 114 public: 115 UserMgr() = delete; 116 ~UserMgr() = default; 117 UserMgr(const UserMgr&) = delete; 118 UserMgr& operator=(const UserMgr&) = delete; 119 UserMgr(UserMgr&&) = delete; 120 UserMgr& operator=(UserMgr&&) = delete; 121 122 /** @brief Constructs UserMgr object. 123 * 124 * @param[in] bus - sdbusplus handler 125 * @param[in] path - D-Bus path 126 */ 127 UserMgr(sdbusplus::bus_t& bus, const char* path); 128 129 /** @brief create user method. 130 * This method creates a new user as requested 131 * 132 * @param[in] userName - Name of the user which has to be created 133 * @param[in] groupNames - Group names list, to which user has to be added. 134 * @param[in] priv - Privilege of the user. 135 * @param[in] enabled - State of the user enabled / disabled. 136 */ 137 void createUser(std::string userName, std::vector<std::string> groupNames, 138 std::string priv, bool enabled) override; 139 140 /** @brief rename user method. 141 * This method renames the user as requested 142 * 143 * @param[in] userName - current name of the user 144 * @param[in] newUserName - new user name to which it has to be renamed. 145 */ 146 void renameUser(std::string userName, std::string newUserName) override; 147 148 /** @brief delete user method. 149 * This method deletes the user as requested 150 * 151 * @param[in] userName - Name of the user which has to be deleted 152 */ 153 void deleteUser(std::string userName); 154 155 /** @brief Update user groups & privilege. 156 * This method updates user groups & privilege 157 * 158 * @param[in] userName - user name, for which update is requested 159 * @param[in] groupName - Group to be updated.. 160 * @param[in] priv - Privilege to be updated. 161 */ 162 void updateGroupsAndPriv(const std::string& userName, 163 std::vector<std::string> groups, 164 const std::string& priv); 165 166 /** @brief Update user enabled state. 167 * This method enables / disables user 168 * 169 * @param[in] userName - user name, for which update is requested 170 * @param[in] enabled - enable / disable the user 171 */ 172 void userEnable(const std::string& userName, bool enabled); 173 174 /** @brief update minimum password length requirement 175 * 176 * @param[in] val - minimum password length 177 * @return - minimum password length 178 */ 179 uint8_t minPasswordLength(uint8_t val) override; 180 181 /** @brief update old password history count 182 * 183 * @param[in] val - number of times old passwords has to be avoided 184 * @return - number of times old password has to be avoided 185 */ 186 uint8_t rememberOldPasswordTimes(uint8_t val) override; 187 188 /** @brief update maximum number of failed login attempt before locked 189 * out. 190 * 191 * @param[in] val - number of allowed attempt 192 * @return - number of allowed attempt 193 */ 194 uint16_t maxLoginAttemptBeforeLockout(uint16_t val) override; 195 196 /** @brief update timeout to unlock the account 197 * 198 * @param[in] val - value in seconds 199 * @return - value in seconds 200 */ 201 uint32_t accountUnlockTimeout(uint32_t val) override; 202 203 /** @brief parses the faillock output for locked user status 204 * 205 * @param[in] - output from faillock for the user 206 * @return - true / false indicating user locked / un-locked 207 **/ 208 bool 209 parseFaillockForLockout(const std::vector<std::string>& faillockOutput); 210 211 /** @brief lists user locked state for failed attempt 212 * 213 * @param[in] - user name 214 * @return - true / false indicating user locked / un-locked 215 **/ 216 virtual bool userLockedForFailedAttempt(const std::string& userName); 217 218 /** @brief lists user locked state for failed attempt 219 * 220 * @param[in]: user name 221 * @param[in]: value - false -unlock user account, true - no action taken 222 **/ 223 bool userLockedForFailedAttempt(const std::string& userName, 224 const bool& value); 225 226 /** @brief shows if the user's password is expired 227 * 228 * @param[in]: user name 229 * @return - true / false indicating user password expired 230 **/ 231 virtual bool userPasswordExpired(const std::string& userName); 232 233 /** @brief returns user info 234 * Checks if user is local user, then returns map of properties of user. 235 * like user privilege, list of user groups, user enabled state and user 236 * locked state. If its not local user, then it checks if its a ldap user, 237 * then it gets the privilege mapping of the LDAP group. 238 * 239 * @param[in] - user name 240 * @return - map of user properties 241 **/ 242 UserInfoMap getUserInfo(std::string userName) override; 243 244 /** @brief get IPMI user count 245 * method to get IPMI user count 246 * 247 * @return - returns user count 248 */ 249 virtual size_t getIpmiUsersCount(void); 250 251 void createGroup(std::string groupName) override; 252 253 void deleteGroup(std::string groupName) override; 254 255 static std::vector<std::string> readAllGroupsOnSystem(); 256 257 protected: 258 /** @brief get pam argument value 259 * method to get argument value from pam configuration 260 * 261 * @param[in] moduleName - name of the module from where arg has to be read 262 * @param[in] argName - argument name 263 * @param[out] argValue - argument value 264 * 265 * @return 0 - success state of the function 266 */ 267 int getPamModuleArgValue(const std::string& moduleName, 268 const std::string& argName, std::string& argValue); 269 270 /** @brief get pam argument value 271 * method to get argument value from pam configuration 272 * 273 * @param[in] confFile - path of the module config file from where arg has 274 * to be read 275 * @param[in] argName - argument name 276 * @param[out] argValue - argument value 277 * 278 * @return 0 - success state of the function 279 */ 280 int getPamModuleConfValue(const std::string& confFile, 281 const std::string& argName, 282 std::string& argValue); 283 284 /** @brief set pam argument value 285 * method to set argument value in pam configuration 286 * 287 * @param[in] moduleName - name of the module in which argument value has 288 * to be set 289 * @param[in] argName - argument name 290 * @param[out] argValue - argument value 291 * 292 * @return 0 - success state of the function 293 */ 294 int setPamModuleArgValue(const std::string& moduleName, 295 const std::string& argName, 296 const std::string& argValue); 297 298 /** @brief set pam argument value 299 * method to set argument value in pam configuration 300 * 301 * @param[in] confFile - path of the module config file in which argument 302 * value has to be set 303 * @param[in] argName - argument name 304 * @param[out] argValue - argument value 305 * 306 * @return 0 - success state of the function 307 */ 308 int setPamModuleConfValue(const std::string& confFile, 309 const std::string& argName, 310 const std::string& argValue); 311 312 /** @brief check for user presence 313 * method to check for user existence 314 * 315 * @param[in] userName - name of the user 316 * @return -true if user exists and false if not. 317 */ 318 bool isUserExist(const std::string& userName); 319 320 size_t getNonIpmiUsersCount(); 321 322 /** @brief check user exists 323 * method to check whether user exist, and throw if not. 324 * 325 * @param[in] userName - name of the user 326 */ 327 void throwForUserDoesNotExist(const std::string& userName); 328 329 /** @brief check user does not exist 330 * method to check whether does not exist, and throw if exists. 331 * 332 * @param[in] userName - name of the user 333 */ 334 void throwForUserExists(const std::string& userName); 335 336 /** @brief check user name constraints 337 * method to check user name constraints and throw if failed. 338 * 339 * @param[in] userName - name of the user 340 * @param[in] groupNames - user groups 341 */ 342 void 343 throwForUserNameConstraints(const std::string& userName, 344 const std::vector<std::string>& groupNames); 345 346 /** @brief check group user count 347 * method to check max group user count, and throw if limit reached 348 * 349 * @param[in] groupNames - group name 350 */ 351 void throwForMaxGrpUserCount(const std::vector<std::string>& groupNames); 352 353 virtual void executeUserAdd(const char* userName, const char* groups, 354 bool sshRequested, bool enabled); 355 356 virtual void executeUserDelete(const char* userName); 357 358 virtual void executeUserRename(const char* userName, 359 const char* newUserName); 360 361 virtual void executeUserModify(const char* userName, const char* newGroups, 362 bool sshRequested); 363 364 virtual void executeUserModifyUserEnable(const char* userName, 365 bool enabled); 366 367 virtual void executeGroupCreation(const char* groupName); 368 369 virtual void executeGroupDeletion(const char* groupName); 370 371 virtual std::vector<std::string> getFailedAttempt(const char* userName); 372 373 /** @brief check for valid privielge 374 * method to check valid privilege, and throw if invalid 375 * 376 * @param[in] priv - privilege of the user 377 */ 378 void throwForInvalidPrivilege(const std::string& priv); 379 380 /** @brief check for valid groups 381 * method to check valid groups, and throw if invalid 382 * 383 * @param[in] groupNames - user groups 384 */ 385 void throwForInvalidGroups(const std::vector<std::string>& groupName); 386 387 void initializeAccountPolicy(); 388 389 /** @brief checks if the group creation meets all constraints 390 * @param groupName - group to check 391 */ 392 void checkCreateGroupConstraints(const std::string& groupName); 393 394 /** @brief checks if the group deletion meets all constraints 395 * @param groupName - group to check 396 */ 397 void checkDeleteGroupConstraints(const std::string& groupName); 398 399 /** @brief checks if the group name is legal and whether it's allowed to 400 * change. The daemon doesn't allow arbitrary group to be created 401 * @param groupName - group to check 402 */ 403 void checkAndThrowForDisallowedGroupCreation(const std::string& groupName); 404 405 private: 406 /** @brief sdbusplus handler */ 407 sdbusplus::bus_t& bus; 408 409 /** @brief object path */ 410 const std::string path; 411 412 /** @brief privilege manager container */ 413 const std::vector<std::string> privMgr = {"priv-admin", "priv-operator", 414 "priv-user"}; 415 416 /** @brief groups manager container */ 417 std::vector<std::string> groupsMgr; 418 419 /** @brief map container to hold users object */ 420 using UserName = std::string; 421 std::unordered_map<UserName, std::unique_ptr<phosphor::user::Users>> 422 usersList; 423 424 /** @brief get users in group 425 * method to get group user list 426 * 427 * @param[in] groupName - group name 428 * 429 * @return userList - list of users in the group. 430 */ 431 std::vector<std::string> getUsersInGroup(const std::string& groupName); 432 433 /** @brief get user & SSH users list 434 * method to get the users and ssh users list. 435 * 436 *@return - vector of User & SSH user lists 437 */ 438 UserSSHLists getUserAndSshGrpList(void); 439 440 /** @brief get user enabled state 441 * method to get user enabled state. 442 * 443 * @param[in] userName - name of the user 444 * @return - user enabled status (true/false) 445 */ 446 bool isUserEnabled(const std::string& userName); 447 448 /** @brief initialize the user manager objects 449 * method to initialize the user manager objects accordingly 450 * 451 */ 452 void initUserObjects(void); 453 454 /** @brief get service name 455 * method to get dbus service name 456 * 457 * @param[in] path - object path 458 * @param[in] intf - interface 459 * @return - service name 460 */ 461 std::string getServiceName(std::string&& path, std::string&& intf); 462 463 /** @brief get primary group ID of specified user 464 * 465 * @param[in] - userName 466 * @return - primary group ID 467 */ 468 virtual gid_t getPrimaryGroup(const std::string& userName) const; 469 470 /** @brief check whether if the user is a member of the group 471 * 472 * @param[in] - userName 473 * @param[in] - ID of the user's primary group 474 * @param[in] - groupName 475 * @return - true if the user is a member of the group 476 */ 477 virtual bool isGroupMember(const std::string& userName, gid_t primaryGid, 478 const std::string& groupName) const; 479 480 protected: 481 /** @brief get privilege mapper object 482 * method to get dbus privilege mapper object 483 * 484 * @return - map of user object 485 */ 486 virtual DbusUserObj getPrivilegeMapperObject(void); 487 488 friend class TestUserMgr; 489 490 std::string pamPasswdConfigFile; 491 std::string faillockConfigFile; 492 std::string pwQualityConfigFile; 493 }; 494 495 } // namespace user 496 } // namespace phosphor 497