blob: d7b731c1cda4ab730b470b0d330d07eb32ae6cf7 [file] [log] [blame]
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +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
Patrick Williams9638afb2021-02-22 17:16:24 -060017#include "users.hpp"
18
Nan Zhou49c81362022-10-25 00:07:08 +000019#include <boost/process/child.hpp>
20#include <boost/process/io.hpp>
21#include <phosphor-logging/elog-errors.hpp>
22#include <phosphor-logging/elog.hpp>
Jiaqing Zhao11ec6662022-07-05 20:55:34 +080023#include <phosphor-logging/lg2.hpp>
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +053024#include <sdbusplus/bus.hpp>
25#include <sdbusplus/server/object.hpp>
Nan Zhou49c81362022-10-25 00:07:08 +000026#include <xyz/openbmc_project/Common/error.hpp>
Richard Marian Thomaiyar9164fd92018-06-13 16:51:00 +053027#include <xyz/openbmc_project/User/AccountPolicy/server.hpp>
Patrick Williams9638afb2021-02-22 17:16:24 -060028#include <xyz/openbmc_project/User/Manager/server.hpp>
29
Nan Zhoue47c09d2022-10-25 00:06:41 +000030#include <span>
31#include <string>
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +053032#include <unordered_map>
Ratan Guptaaeaf9412019-02-11 04:41:52 -060033#include <variant>
Nan Zhoue47c09d2022-10-25 00:06:41 +000034#include <vector>
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +053035
36namespace phosphor
37{
38namespace user
39{
40
Nan Zhou49c81362022-10-25 00:07:08 +000041inline constexpr size_t ipmiMaxUsers = 15;
42inline constexpr size_t maxSystemUsers = 30;
Nan Zhou4bc69812022-10-25 00:07:13 +000043inline constexpr uint8_t minPasswdLength = 8;
Nan Zhouda401fe2022-10-25 00:07:18 +000044inline constexpr size_t maxSystemGroupNameLength = 32;
45inline constexpr size_t maxSystemGroupCount = 64;
Nan Zhou49c81362022-10-25 00:07:08 +000046
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +053047using UserMgrIface = sdbusplus::xyz::openbmc_project::User::server::Manager;
48using UserSSHLists =
49 std::pair<std::vector<std::string>, std::vector<std::string>>;
Richard Marian Thomaiyar9164fd92018-06-13 16:51:00 +053050using AccountPolicyIface =
51 sdbusplus::xyz::openbmc_project::User::server::AccountPolicy;
52
Patrick Williamsb3ef4e12022-07-22 19:26:55 -050053using Ifaces = sdbusplus::server::object_t<UserMgrIface, AccountPolicyIface>;
Ratan Gupta1af12232018-11-03 00:35:38 +053054
Ratan Guptaaeaf9412019-02-11 04:41:52 -060055using Privilege = std::string;
56using GroupList = std::vector<std::string>;
57using UserEnabled = bool;
58using PropertyName = std::string;
Ravi Teja5fe724a2019-05-07 05:14:42 -050059using ServiceEnabled = bool;
Ratan Guptaaeaf9412019-02-11 04:41:52 -060060
61using UserInfo = std::variant<Privilege, GroupList, UserEnabled>;
62using UserInfoMap = std::map<PropertyName, UserInfo>;
63
64using DbusUserObjPath = sdbusplus::message::object_path;
65
Patrick Williamsfdf09372020-05-13 18:01:45 -050066using DbusUserPropVariant = std::variant<Privilege, ServiceEnabled>;
Ratan Guptaaeaf9412019-02-11 04:41:52 -060067
Alexander Filippov75626582022-02-09 18:42:37 +030068using DbusUserObjProperties = std::map<PropertyName, DbusUserPropVariant>;
Ratan Guptaaeaf9412019-02-11 04:41:52 -060069
70using Interface = std::string;
71
72using DbusUserObjValue = std::map<Interface, DbusUserObjProperties>;
73
74using DbusUserObj = std::map<DbusUserObjPath, DbusUserObjValue>;
75
Nan Zhoue47c09d2022-10-25 00:06:41 +000076std::string getCSVFromVector(std::span<const std::string> vec);
77
Nan Zhou332fb9d2022-10-25 00:07:03 +000078bool removeStringFromCSV(std::string& csvStr, const std::string& delStr);
79
Nan Zhou8a11d992022-10-25 00:07:06 +000080template <typename... ArgTypes>
Nan Zhou49c81362022-10-25 00:07:08 +000081std::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 {
Jiaqing Zhao11ec6662022-07-05 20:55:34 +0800100 lg2::error("Command {PATH} execution failed, return code {RETCODE}",
101 "PATH", path, "RETCODE", retCode);
Nan Zhou49c81362022-10-25 00:07:08 +0000102 phosphor::logging::elog<
103 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure>();
104 }
105
106 return stdOutput;
107}
Nan Zhou8a11d992022-10-25 00:07:06 +0000108
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530109/** @class UserMgr
110 * @brief Responsible for managing user accounts over the D-Bus interface.
111 */
Ratan Gupta1af12232018-11-03 00:35:38 +0530112class UserMgr : public Ifaces
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530113{
114 public:
115 UserMgr() = delete;
116 ~UserMgr() = default;
Patrick Williams9638afb2021-02-22 17:16:24 -0600117 UserMgr(const UserMgr&) = delete;
118 UserMgr& operator=(const UserMgr&) = delete;
119 UserMgr(UserMgr&&) = delete;
120 UserMgr& operator=(UserMgr&&) = delete;
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530121
122 /** @brief Constructs UserMgr object.
123 *
124 * @param[in] bus - sdbusplus handler
125 * @param[in] path - D-Bus path
126 */
Patrick Williamsb3ef4e12022-07-22 19:26:55 -0500127 UserMgr(sdbusplus::bus_t& bus, const char* path);
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530128
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 */
Patrick Williams9638afb2021-02-22 17:16:24 -0600162 void updateGroupsAndPriv(const std::string& userName,
Nan Zhoufef63032022-10-25 00:07:12 +0000163 std::vector<std::string> groups,
Patrick Williams9638afb2021-02-22 17:16:24 -0600164 const std::string& priv);
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530165
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 */
Patrick Williams9638afb2021-02-22 17:16:24 -0600172 void userEnable(const std::string& userName, bool enabled);
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530173
Richard Marian Thomaiyar9164fd92018-06-13 16:51:00 +0530174 /** @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
Jason M. Bills2d042d12023-03-28 15:32:45 -0700203 /** @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
Richard Marian Thomaiyarc7045192018-06-13 16:51:00 +0530211 /** @brief lists user locked state for failed attempt
212 *
213 * @param[in] - user name
214 * @return - true / false indicating user locked / un-locked
215 **/
Patrick Williams9638afb2021-02-22 17:16:24 -0600216 virtual bool userLockedForFailedAttempt(const std::string& userName);
Richard Marian Thomaiyarc7045192018-06-13 16:51:00 +0530217
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 **/
Patrick Williams9638afb2021-02-22 17:16:24 -0600223 bool userLockedForFailedAttempt(const std::string& userName,
224 const bool& value);
Richard Marian Thomaiyarc7045192018-06-13 16:51:00 +0530225
Joseph Reynolds3ab6cc22020-03-03 14:09:03 -0600226 /** @brief shows if the user's password is expired
227 *
228 * @param[in]: user name
229 * @return - true / false indicating user password expired
230 **/
Patrick Williams9638afb2021-02-22 17:16:24 -0600231 virtual bool userPasswordExpired(const std::string& userName);
Joseph Reynolds3ab6cc22020-03-03 14:09:03 -0600232
Ratan Guptaaeaf9412019-02-11 04:41:52 -0600233 /** @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
Nan Zhou49c81362022-10-25 00:07:08 +0000244 /** @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
Nan Zhouda401fe2022-10-25 00:07:18 +0000251 void createGroup(std::string groupName) override;
252
253 void deleteGroup(std::string groupName) override;
254
255 static std::vector<std::string> readAllGroupsOnSystem();
256
Nan Zhoue48085d2022-10-25 00:07:04 +0000257 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
Jason M. Bills2d042d12023-03-28 15:32:45 -0700270 /** @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
Nan Zhoue48085d2022-10-25 00:07:04 +0000284 /** @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
Jason M. Bills2d042d12023-03-28 15:32:45 -0700298 /** @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
Nan Zhou8a11d992022-10-25 00:07:06 +0000312 /** @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
Nan Zhou49c81362022-10-25 00:07:08 +0000320 size_t getNonIpmiUsersCount();
321
Nan Zhou8a11d992022-10-25 00:07:06 +0000322 /** @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
Nan Zhou40e44972022-10-25 00:07:07 +0000336 /** @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
Nan Zhou49c81362022-10-25 00:07:08 +0000346 /** @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
Jayanth Othayothac921a52023-07-21 03:48:55 -0500358 /** @brief clear user's failure records
359 * method to clear user fail records and throw if failed.
360 *
361 * @param[in] userName - name of the user
362 */
363 virtual void executeUserClearFailRecords(const char* userName);
364
Nan Zhouf25443e2022-10-25 00:07:11 +0000365 virtual void executeUserRename(const char* userName,
366 const char* newUserName);
367
Nan Zhoufef63032022-10-25 00:07:12 +0000368 virtual void executeUserModify(const char* userName, const char* newGroups,
369 bool sshRequested);
370
Nan Zhou6b6f2d82022-10-25 00:07:17 +0000371 virtual void executeUserModifyUserEnable(const char* userName,
372 bool enabled);
373
Nan Zhouda401fe2022-10-25 00:07:18 +0000374 virtual void executeGroupCreation(const char* groupName);
Nan Zhou86040c22022-11-17 02:08:24 +0000375
Nan Zhouda401fe2022-10-25 00:07:18 +0000376 virtual void executeGroupDeletion(const char* groupName);
Nan Zhou86040c22022-11-17 02:08:24 +0000377
Nan Zhoua2953032022-11-11 21:50:32 +0000378 virtual std::vector<std::string> getFailedAttempt(const char* userName);
379
Nan Zhou589aeb42022-10-25 00:07:09 +0000380 /** @brief check for valid privielge
381 * method to check valid privilege, and throw if invalid
382 *
383 * @param[in] priv - privilege of the user
384 */
385 void throwForInvalidPrivilege(const std::string& priv);
386
Nan Zhouecf88762022-10-25 00:07:10 +0000387 /** @brief check for valid groups
388 * method to check valid groups, and throw if invalid
389 *
390 * @param[in] groupNames - user groups
391 */
392 void throwForInvalidGroups(const std::vector<std::string>& groupName);
393
Nan Zhou4bc69812022-10-25 00:07:13 +0000394 void initializeAccountPolicy();
395
Nan Zhouda401fe2022-10-25 00:07:18 +0000396 /** @brief checks if the group creation meets all constraints
397 * @param groupName - group to check
398 */
399 void checkCreateGroupConstraints(const std::string& groupName);
400
401 /** @brief checks if the group deletion meets all constraints
402 * @param groupName - group to check
403 */
404 void checkDeleteGroupConstraints(const std::string& groupName);
405
406 /** @brief checks if the group name is legal and whether it's allowed to
407 * change. The daemon doesn't allow arbitrary group to be created
408 * @param groupName - group to check
409 */
410 void checkAndThrowForDisallowedGroupCreation(const std::string& groupName);
411
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530412 private:
413 /** @brief sdbusplus handler */
Patrick Williamsb3ef4e12022-07-22 19:26:55 -0500414 sdbusplus::bus_t& bus;
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530415
416 /** @brief object path */
417 const std::string path;
418
419 /** @brief privilege manager container */
Nan Zhouda401fe2022-10-25 00:07:18 +0000420 const std::vector<std::string> privMgr = {"priv-admin", "priv-operator",
421 "priv-user"};
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530422
423 /** @brief groups manager container */
Nan Zhouda401fe2022-10-25 00:07:18 +0000424 std::vector<std::string> groupsMgr;
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530425
426 /** @brief map container to hold users object */
427 using UserName = std::string;
428 std::unordered_map<UserName, std::unique_ptr<phosphor::user::Users>>
429 usersList;
430
431 /** @brief get users in group
432 * method to get group user list
433 *
434 * @param[in] groupName - group name
435 *
436 * @return userList - list of users in the group.
437 */
Patrick Williams9638afb2021-02-22 17:16:24 -0600438 std::vector<std::string> getUsersInGroup(const std::string& groupName);
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530439
440 /** @brief get user & SSH users list
441 * method to get the users and ssh users list.
442 *
443 *@return - vector of User & SSH user lists
444 */
445 UserSSHLists getUserAndSshGrpList(void);
446
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530447 /** @brief get user enabled state
448 * method to get user enabled state.
449 *
450 * @param[in] userName - name of the user
451 * @return - user enabled status (true/false)
452 */
Patrick Williams9638afb2021-02-22 17:16:24 -0600453 bool isUserEnabled(const std::string& userName);
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530454
455 /** @brief initialize the user manager objects
456 * method to initialize the user manager objects accordingly
457 *
458 */
459 void initUserObjects(void);
460
Ratan Guptaaeaf9412019-02-11 04:41:52 -0600461 /** @brief get service name
462 * method to get dbus service name
463 *
464 * @param[in] path - object path
465 * @param[in] intf - interface
466 * @return - service name
467 */
Patrick Williams9638afb2021-02-22 17:16:24 -0600468 std::string getServiceName(std::string&& path, std::string&& intf);
Ratan Guptaaeaf9412019-02-11 04:41:52 -0600469
Alexander Filippov75626582022-02-09 18:42:37 +0300470 /** @brief get primary group ID of specified user
Ratan Guptaaeaf9412019-02-11 04:41:52 -0600471 *
Alexander Filippov75626582022-02-09 18:42:37 +0300472 * @param[in] - userName
473 * @return - primary group ID
Ratan Guptaaeaf9412019-02-11 04:41:52 -0600474 */
Alexander Filippov75626582022-02-09 18:42:37 +0300475 virtual gid_t getPrimaryGroup(const std::string& userName) const;
Ratan Guptaaeaf9412019-02-11 04:41:52 -0600476
Alexander Filippov75626582022-02-09 18:42:37 +0300477 /** @brief check whether if the user is a member of the group
478 *
479 * @param[in] - userName
480 * @param[in] - ID of the user's primary group
481 * @param[in] - groupName
482 * @return - true if the user is a member of the group
483 */
484 virtual bool isGroupMember(const std::string& userName, gid_t primaryGid,
485 const std::string& groupName) const;
486
487 protected:
Ratan Guptaaeaf9412019-02-11 04:41:52 -0600488 /** @brief get privilege mapper object
489 * method to get dbus privilege mapper object
490 *
491 * @return - map of user object
492 */
raviteja-b8cc44052019-02-27 23:29:36 -0600493 virtual DbusUserObj getPrivilegeMapperObject(void);
494
495 friend class TestUserMgr;
Nan Zhoue48085d2022-10-25 00:07:04 +0000496
Jason M. Bills2d042d12023-03-28 15:32:45 -0700497 std::string faillockConfigFile;
Jason M. Bills3b280ec2023-08-15 16:15:48 -0700498 std::string pwHistoryConfigFile;
Jason M. Bills2d042d12023-03-28 15:32:45 -0700499 std::string pwQualityConfigFile;
Richard Marian Thomaiyar9f630d92018-05-24 10:49:10 +0530500};
501
502} // namespace user
503} // namespace phosphor