blob: 16441549c0d1ff55da67c13cf528d7934d194b3a [file] [log] [blame]
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +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#include "user_mgmt.hpp"
17
18#include "apphandler.hpp"
Saravanan Palanisamy77381f12019-05-15 22:33:17 +000019#include "channel_layer.hpp"
Johnathan Manteyfd61fc32021-04-08 11:05:38 -070020#include "channel_mgmt.hpp"
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053021
Suryakanth Sekar90b00c72019-01-16 10:37:57 +053022#include <security/pam_appl.h>
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053023#include <sys/stat.h>
24#include <unistd.h>
25
26#include <boost/interprocess/sync/named_recursive_mutex.hpp>
27#include <boost/interprocess/sync/scoped_lock.hpp>
28#include <cerrno>
29#include <fstream>
Snehalatha Venkatesh745164c2021-06-25 10:02:25 +000030#include <ipmid/types.hpp>
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053031#include <nlohmann/json.hpp>
32#include <phosphor-logging/elog-errors.hpp>
33#include <phosphor-logging/log.hpp>
34#include <regex>
35#include <sdbusplus/bus/match.hpp>
36#include <sdbusplus/server/object.hpp>
Vernon Mauery16b86932019-05-01 08:36:11 -070037#include <variant>
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053038#include <xyz/openbmc_project/Common/error.hpp>
39#include <xyz/openbmc_project/User/Common/error.hpp>
40
41namespace ipmi
42{
43
44// TODO: Move D-Bus & Object Manager related stuff, to common files
45// D-Bus property related
46static constexpr const char* dBusPropertiesInterface =
47 "org.freedesktop.DBus.Properties";
48static constexpr const char* getAllPropertiesMethod = "GetAll";
49static constexpr const char* propertiesChangedSignal = "PropertiesChanged";
50static constexpr const char* setPropertiesMethod = "Set";
51
52// Object Manager related
53static constexpr const char* dBusObjManager =
54 "org.freedesktop.DBus.ObjectManager";
55static constexpr const char* getManagedObjectsMethod = "GetManagedObjects";
56// Object Manager signals
57static constexpr const char* intfAddedSignal = "InterfacesAdded";
58static constexpr const char* intfRemovedSignal = "InterfacesRemoved";
59
60// Object Mapper related
61static constexpr const char* objMapperService =
62 "xyz.openbmc_project.ObjectMapper";
63static constexpr const char* objMapperPath =
64 "/xyz/openbmc_project/object_mapper";
65static constexpr const char* objMapperInterface =
66 "xyz.openbmc_project.ObjectMapper";
67static constexpr const char* getSubTreeMethod = "GetSubTree";
68static constexpr const char* getObjectMethod = "GetObject";
69
70static constexpr const char* ipmiUserMutex = "ipmi_usr_mutex";
71static constexpr const char* ipmiMutexCleanupLockFile =
72 "/var/lib/ipmi/ipmi_usr_mutex_cleanup";
Jayaprakash Mutyala08d3d062021-10-01 16:01:57 +000073static constexpr const char* ipmiUserSignalLockFile =
74 "/var/lib/ipmi/ipmi_usr_signal_mutex";
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053075static constexpr const char* ipmiUserDataFile = "/var/lib/ipmi/ipmi_user.json";
76static constexpr const char* ipmiGrpName = "ipmi";
77static constexpr size_t privNoAccess = 0xF;
78static constexpr size_t privMask = 0xF;
79
80// User manager related
81static constexpr const char* userMgrObjBasePath = "/xyz/openbmc_project/user";
82static constexpr const char* userObjBasePath = "/xyz/openbmc_project/user";
83static constexpr const char* userMgrInterface =
84 "xyz.openbmc_project.User.Manager";
85static constexpr const char* usersInterface =
86 "xyz.openbmc_project.User.Attributes";
87static constexpr const char* deleteUserInterface =
88 "xyz.openbmc_project.Object.Delete";
89
90static constexpr const char* createUserMethod = "CreateUser";
91static constexpr const char* deleteUserMethod = "Delete";
92static constexpr const char* renameUserMethod = "RenameUser";
93// User manager signal memebers
94static constexpr const char* userRenamedSignal = "UserRenamed";
95// Mgr interface properties
96static constexpr const char* allPrivProperty = "AllPrivileges";
97static constexpr const char* allGrpProperty = "AllGroups";
98// User interface properties
99static constexpr const char* userPrivProperty = "UserPrivilege";
100static constexpr const char* userGrpProperty = "UserGroups";
101static constexpr const char* userEnabledProperty = "UserEnabled";
102
103static std::array<std::string, (PRIVILEGE_OEM + 1)> ipmiPrivIndex = {
104 "priv-reserved", // PRIVILEGE_RESERVED - 0
105 "priv-callback", // PRIVILEGE_CALLBACK - 1
106 "priv-user", // PRIVILEGE_USER - 2
107 "priv-operator", // PRIVILEGE_OPERATOR - 3
108 "priv-admin", // PRIVILEGE_ADMIN - 4
109 "priv-custom" // PRIVILEGE_OEM - 5
110};
111
112using namespace phosphor::logging;
113using Json = nlohmann::json;
114
Vernon Mauery16b86932019-05-01 08:36:11 -0700115using PrivAndGroupType = std::variant<std::string, std::vector<std::string>>;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530116
117using NoResource =
118 sdbusplus::xyz::openbmc_project::User::Common::Error::NoResource;
119
120using InternalFailure =
121 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
122
Lei YU4b0ddb62019-01-25 16:43:50 +0800123std::unique_ptr<sdbusplus::bus::match_t> userUpdatedSignal
124 __attribute__((init_priority(101)));
125std::unique_ptr<sdbusplus::bus::match_t> userMgrRenamedSignal
126 __attribute__((init_priority(101)));
127std::unique_ptr<sdbusplus::bus::match_t> userPropertiesSignal
128 __attribute__((init_priority(101)));
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530129
130// TODO: Below code can be removed once it is moved to common layer libmiscutil
131std::string getUserService(sdbusplus::bus::bus& bus, const std::string& intf,
132 const std::string& path)
133{
134 auto mapperCall = bus.new_method_call(objMapperService, objMapperPath,
135 objMapperInterface, getObjectMethod);
136
137 mapperCall.append(path);
138 mapperCall.append(std::vector<std::string>({intf}));
139
140 auto mapperResponseMsg = bus.call(mapperCall);
141
142 std::map<std::string, std::vector<std::string>> mapperResponse;
143 mapperResponseMsg.read(mapperResponse);
144
145 if (mapperResponse.begin() == mapperResponse.end())
146 {
147 throw sdbusplus::exception::SdBusError(
148 -EIO, "ERROR in reading the mapper response");
149 }
150
151 return mapperResponse.begin()->first;
152}
153
154void setDbusProperty(sdbusplus::bus::bus& bus, const std::string& service,
155 const std::string& objPath, const std::string& interface,
156 const std::string& property,
157 const DbusUserPropVariant& value)
158{
159 try
160 {
161 auto method =
162 bus.new_method_call(service.c_str(), objPath.c_str(),
163 dBusPropertiesInterface, setPropertiesMethod);
164 method.append(interface, property, value);
165 bus.call(method);
166 }
Patrick Williamsef1259b2021-09-02 09:12:33 -0500167 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530168 {
169 log<level::ERR>("Failed to set property",
170 entry("PROPERTY=%s", property.c_str()),
171 entry("PATH=%s", objPath.c_str()),
172 entry("INTERFACE=%s", interface.c_str()));
173 throw;
174 }
175}
176
177static std::string getUserServiceName()
178{
179 static sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
180 static std::string userMgmtService;
181 if (userMgmtService.empty())
182 {
183 try
184 {
185 userMgmtService =
186 ipmi::getUserService(bus, userMgrInterface, userMgrObjBasePath);
187 }
Patrick Williamsef1259b2021-09-02 09:12:33 -0500188 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530189 {
190 userMgmtService.clear();
191 }
192 }
193 return userMgmtService;
194}
195
196UserAccess& getUserAccessObject()
197{
198 static UserAccess userAccess;
199 return userAccess;
200}
201
202int getUserNameFromPath(const std::string& path, std::string& userName)
203{
P Dheeraj Srujan Kumar0ce6a572021-12-13 09:01:55 +0530204 sdbusplus::message::object_path objPath(path);
205 userName.assign(objPath.filename());
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530206 return 0;
207}
208
209void userUpdateHelper(UserAccess& usrAccess, const UserUpdateEvent& userEvent,
210 const std::string& userName, const std::string& priv,
211 const bool& enabled, const std::string& newUserName)
212{
213 UsersTbl* userData = usrAccess.getUsersTblPtr();
214 if (userEvent == UserUpdateEvent::userCreated)
215 {
216 if (usrAccess.addUserEntry(userName, priv, enabled) == false)
217 {
218 return;
219 }
220 }
221 else
222 {
223 // user index 0 is reserved, starts with 1
224 size_t usrIndex = 1;
225 for (; usrIndex <= ipmiMaxUsers; ++usrIndex)
226 {
227 std::string curName(
228 reinterpret_cast<char*>(userData->user[usrIndex].userName), 0,
229 ipmiMaxUserName);
230 if (userName == curName)
231 {
232 break; // found the entry
233 }
234 }
235 if (usrIndex > ipmiMaxUsers)
236 {
237 log<level::DEBUG>("User not found for signal",
238 entry("USER_NAME=%s", userName.c_str()),
239 entry("USER_EVENT=%d", userEvent));
240 return;
241 }
242 switch (userEvent)
243 {
244 case UserUpdateEvent::userDeleted:
245 {
246 usrAccess.deleteUserIndex(usrIndex);
247 break;
248 }
249 case UserUpdateEvent::userPrivUpdated:
250 {
251 uint8_t userPriv =
252 static_cast<uint8_t>(
253 UserAccess::convertToIPMIPrivilege(priv)) &
254 privMask;
255 // Update all channels privileges, only if it is not equivalent
256 // to getUsrMgmtSyncIndex()
257 if (userData->user[usrIndex]
258 .userPrivAccess[UserAccess::getUsrMgmtSyncIndex()]
259 .privilege != userPriv)
260 {
261 for (size_t chIndex = 0; chIndex < ipmiMaxChannels;
262 ++chIndex)
263 {
264 userData->user[usrIndex]
265 .userPrivAccess[chIndex]
266 .privilege = userPriv;
267 }
268 }
269 break;
270 }
271 case UserUpdateEvent::userRenamed:
272 {
273 std::fill(
274 static_cast<uint8_t*>(userData->user[usrIndex].userName),
275 static_cast<uint8_t*>(userData->user[usrIndex].userName) +
276 sizeof(userData->user[usrIndex].userName),
277 0);
278 std::strncpy(
279 reinterpret_cast<char*>(userData->user[usrIndex].userName),
280 newUserName.c_str(), ipmiMaxUserName);
281 ipmiRenameUserEntryPassword(userName, newUserName);
282 break;
283 }
284 case UserUpdateEvent::userStateUpdated:
285 {
286 userData->user[usrIndex].userEnabled = enabled;
287 break;
288 }
289 default:
290 {
291 log<level::ERR>("Unhandled user event",
292 entry("USER_EVENT=%d", userEvent));
293 return;
294 }
295 }
296 }
297 usrAccess.writeUserData();
298 log<level::DEBUG>("User event handled successfully",
299 entry("USER_NAME=%s", userName.c_str()),
300 entry("USER_EVENT=%d", userEvent));
301
302 return;
303}
304
305void userUpdatedSignalHandler(UserAccess& usrAccess,
306 sdbusplus::message::message& msg)
307{
308 static sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
309 std::string signal = msg.get_member();
Patrick Venture3a697ad2019-08-19 11:12:05 -0700310 std::string userName, priv, newUserName;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530311 std::vector<std::string> groups;
312 bool enabled = false;
313 UserUpdateEvent userEvent = UserUpdateEvent::reservedEvent;
314 if (signal == intfAddedSignal)
315 {
316 DbusUserObjPath objPath;
317 DbusUserObjValue objValue;
318 msg.read(objPath, objValue);
319 getUserNameFromPath(objPath.str, userName);
320 if (usrAccess.getUserObjProperties(objValue, groups, priv, enabled) !=
321 0)
322 {
323 return;
324 }
325 if (std::find(groups.begin(), groups.end(), ipmiGrpName) ==
326 groups.end())
327 {
328 return;
329 }
330 userEvent = UserUpdateEvent::userCreated;
331 }
332 else if (signal == intfRemovedSignal)
333 {
334 DbusUserObjPath objPath;
335 std::vector<std::string> interfaces;
336 msg.read(objPath, interfaces);
337 getUserNameFromPath(objPath.str, userName);
338 userEvent = UserUpdateEvent::userDeleted;
339 }
340 else if (signal == userRenamedSignal)
341 {
342 msg.read(userName, newUserName);
343 userEvent = UserUpdateEvent::userRenamed;
344 }
345 else if (signal == propertiesChangedSignal)
346 {
347 getUserNameFromPath(msg.get_path(), userName);
348 }
349 else
350 {
351 log<level::ERR>("Unknown user update signal",
352 entry("SIGNAL=%s", signal.c_str()));
353 return;
354 }
355
356 if (signal.empty() || userName.empty() ||
357 (signal == userRenamedSignal && newUserName.empty()))
358 {
359 log<level::ERR>("Invalid inputs received");
360 return;
361 }
362
363 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
364 userLock{*(usrAccess.userMutex)};
365 usrAccess.checkAndReloadUserData();
366
367 if (signal == propertiesChangedSignal)
368 {
369 std::string intfName;
370 DbusUserObjProperties chProperties;
371 msg.read(intfName, chProperties); // skip reading 3rd argument.
372 for (const auto& prop : chProperties)
373 {
374 userEvent = UserUpdateEvent::reservedEvent;
375 std::string member = prop.first;
376 if (member == userPrivProperty)
377 {
Vernon Maueryf442e112019-04-09 11:44:36 -0700378 priv = std::get<std::string>(prop.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530379 userEvent = UserUpdateEvent::userPrivUpdated;
380 }
381 else if (member == userGrpProperty)
382 {
Vernon Maueryf442e112019-04-09 11:44:36 -0700383 groups = std::get<std::vector<std::string>>(prop.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530384 userEvent = UserUpdateEvent::userGrpUpdated;
385 }
386 else if (member == userEnabledProperty)
387 {
Vernon Maueryf442e112019-04-09 11:44:36 -0700388 enabled = std::get<bool>(prop.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530389 userEvent = UserUpdateEvent::userStateUpdated;
390 }
391 // Process based on event type.
392 if (userEvent == UserUpdateEvent::userGrpUpdated)
393 {
394 if (std::find(groups.begin(), groups.end(), ipmiGrpName) ==
395 groups.end())
396 {
397 // remove user from ipmi user list.
398 userUpdateHelper(usrAccess, UserUpdateEvent::userDeleted,
399 userName, priv, enabled, newUserName);
400 }
401 else
402 {
403 DbusUserObjProperties properties;
404 try
405 {
406 auto method = bus.new_method_call(
407 getUserServiceName().c_str(), msg.get_path(),
408 dBusPropertiesInterface, getAllPropertiesMethod);
409 method.append(usersInterface);
410 auto reply = bus.call(method);
411 reply.read(properties);
412 }
Patrick Williamsef1259b2021-09-02 09:12:33 -0500413 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530414 {
415 log<level::DEBUG>(
416 "Failed to excute method",
417 entry("METHOD=%s", getAllPropertiesMethod),
418 entry("PATH=%s", msg.get_path()));
419 return;
420 }
421 usrAccess.getUserProperties(properties, groups, priv,
422 enabled);
423 // add user to ipmi user list.
424 userUpdateHelper(usrAccess, UserUpdateEvent::userCreated,
425 userName, priv, enabled, newUserName);
426 }
427 }
428 else if (userEvent != UserUpdateEvent::reservedEvent)
429 {
430 userUpdateHelper(usrAccess, userEvent, userName, priv, enabled,
431 newUserName);
432 }
433 }
434 }
435 else if (userEvent != UserUpdateEvent::reservedEvent)
436 {
437 userUpdateHelper(usrAccess, userEvent, userName, priv, enabled,
438 newUserName);
439 }
440 return;
441}
442
443UserAccess::~UserAccess()
444{
445 if (signalHndlrObject)
446 {
447 userUpdatedSignal.reset();
448 userMgrRenamedSignal.reset();
449 userPropertiesSignal.reset();
450 sigHndlrLock.unlock();
451 }
452}
453
454UserAccess::UserAccess() : bus(ipmid_get_sd_bus_connection())
455{
456 std::ofstream mutexCleanUpFile;
457 mutexCleanUpFile.open(ipmiMutexCleanupLockFile,
458 std::ofstream::out | std::ofstream::app);
459 if (!mutexCleanUpFile.good())
460 {
461 log<level::DEBUG>("Unable to open mutex cleanup file");
462 return;
463 }
464 mutexCleanUpFile.close();
465 mutexCleanupLock = boost::interprocess::file_lock(ipmiMutexCleanupLockFile);
466 if (mutexCleanupLock.try_lock())
467 {
468 boost::interprocess::named_recursive_mutex::remove(ipmiUserMutex);
469 }
470 mutexCleanupLock.lock_sharable();
471 userMutex = std::make_unique<boost::interprocess::named_recursive_mutex>(
472 boost::interprocess::open_or_create, ipmiUserMutex);
473
arun-pmbbe728c2020-01-10 15:18:04 +0530474 cacheUserDataFile();
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530475 getSystemPrivAndGroups();
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530476}
477
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530478UserInfo* UserAccess::getUserInfo(const uint8_t userId)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530479{
480 checkAndReloadUserData();
481 return &usersTbl.user[userId];
482}
483
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530484void UserAccess::setUserInfo(const uint8_t userId, UserInfo* userInfo)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530485{
486 checkAndReloadUserData();
487 std::copy(reinterpret_cast<uint8_t*>(userInfo),
488 reinterpret_cast<uint8_t*>(userInfo) + sizeof(*userInfo),
489 reinterpret_cast<uint8_t*>(&usersTbl.user[userId]));
490 writeUserData();
491}
492
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530493bool UserAccess::isValidChannel(const uint8_t chNum)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530494{
495 return (chNum < ipmiMaxChannels);
496}
497
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530498bool UserAccess::isValidUserId(const uint8_t userId)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530499{
500 return ((userId <= ipmiMaxUsers) && (userId != reservedUserId));
501}
502
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530503bool UserAccess::isValidPrivilege(const uint8_t priv)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530504{
jayaprakash Mutyala0e2dbee2019-12-26 13:03:04 +0000505 // Callback privilege is deprecated in OpenBMC
506 return (isValidPrivLimit(priv) || priv == privNoAccess);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530507}
508
509uint8_t UserAccess::getUsrMgmtSyncIndex()
510{
Johnathan Manteyfd61fc32021-04-08 11:05:38 -0700511 // Identify the IPMI channel used to assign system user privilege levels
512 // in phosphor-user-manager. The default value is IPMI Channel 1. To
513 // assign a different channel add:
514 // "is_management_nic" : true
515 // into the channel_config.json file describing the assignment of the IPMI
516 // channels. It is only necessary to add the string above to ONE record in
517 // the channel_config.json file. All other records will be automatically
518 // assigned a "false" value.
519 return getChannelConfigObject().getManagementNICID();
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530520}
521
522CommandPrivilege UserAccess::convertToIPMIPrivilege(const std::string& value)
523{
524 auto iter = std::find(ipmiPrivIndex.begin(), ipmiPrivIndex.end(), value);
525 if (iter == ipmiPrivIndex.end())
526 {
527 if (value == "")
528 {
529 return static_cast<CommandPrivilege>(privNoAccess);
530 }
531 log<level::ERR>("Error in converting to IPMI privilege",
532 entry("PRIV=%s", value.c_str()));
533 throw std::out_of_range("Out of range - convertToIPMIPrivilege");
534 }
535 else
536 {
537 return static_cast<CommandPrivilege>(
538 std::distance(ipmiPrivIndex.begin(), iter));
539 }
540}
541
542std::string UserAccess::convertToSystemPrivilege(const CommandPrivilege& value)
543{
544 if (value == static_cast<CommandPrivilege>(privNoAccess))
545 {
546 return "";
547 }
548 try
549 {
550 return ipmiPrivIndex.at(value);
551 }
552 catch (const std::out_of_range& e)
553 {
554 log<level::ERR>("Error in converting to system privilege",
555 entry("PRIV=%d", static_cast<uint8_t>(value)));
556 throw std::out_of_range("Out of range - convertToSystemPrivilege");
557 }
558}
559
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000560bool UserAccess::isValidUserName(const std::string& userName)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530561{
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000562 if (userName.empty())
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530563 {
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000564 log<level::ERR>("userName is empty");
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530565 return false;
566 }
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530567 if (!std::regex_match(userName.c_str(),
568 std::regex("[a-zA-z_][a-zA-Z_0-9]*")))
569 {
570 log<level::ERR>("Unsupported characters in user name");
571 return false;
572 }
573 if (userName == "root")
574 {
575 log<level::ERR>("Invalid user name - root");
576 return false;
577 }
578 std::map<DbusUserObjPath, DbusUserObjValue> properties;
579 try
580 {
581 auto method = bus.new_method_call(getUserServiceName().c_str(),
582 userMgrObjBasePath, dBusObjManager,
583 getManagedObjectsMethod);
584 auto reply = bus.call(method);
585 reply.read(properties);
586 }
Patrick Williamsef1259b2021-09-02 09:12:33 -0500587 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530588 {
589 log<level::ERR>("Failed to excute method",
590 entry("METHOD=%s", getSubTreeMethod),
591 entry("PATH=%s", userMgrObjBasePath));
592 return false;
593 }
594
P Dheeraj Srujan Kumar0ce6a572021-12-13 09:01:55 +0530595 sdbusplus::message::object_path tempUserPath(userObjBasePath);
596 tempUserPath /= userName;
597 std::string usersPath(tempUserPath);
598
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530599 if (properties.find(usersPath) != properties.end())
600 {
601 log<level::DEBUG>("User name already exists",
602 entry("USER_NAME=%s", userName.c_str()));
603 return false;
604 }
605
606 return true;
607}
608
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530609/** @brief Information exchanged by pam module and application.
610 *
611 * @param[in] numMsg - length of the array of pointers,msg.
612 *
613 * @param[in] msg - pointer to an array of pointers to pam_message structure
614 *
615 * @param[out] resp - struct pam response array
616 *
617 * @param[in] appdataPtr - member of pam_conv structure
618 *
619 * @return the response in pam response structure.
620 */
621
622static int pamFunctionConversation(int numMsg, const struct pam_message** msg,
623 struct pam_response** resp, void* appdataPtr)
624{
625 if (appdataPtr == nullptr)
626 {
P Dheeraj Srujan Kumar2aeb1c12021-07-20 04:26:13 +0530627 return PAM_CONV_ERR;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530628 }
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530629
P Dheeraj Srujan Kumar2aeb1c12021-07-20 04:26:13 +0530630 if (numMsg <= 0 || numMsg >= PAM_MAX_NUM_MSG)
631 {
632 return PAM_CONV_ERR;
633 }
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530634
635 for (int i = 0; i < numMsg; ++i)
636 {
P Dheeraj Srujan Kumar2aeb1c12021-07-20 04:26:13 +0530637 /* Ignore all PAM messages except prompting for hidden input */
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530638 if (msg[i]->msg_style != PAM_PROMPT_ECHO_OFF)
639 {
640 continue;
641 }
P Dheeraj Srujan Kumar2aeb1c12021-07-20 04:26:13 +0530642
643 /* Assume PAM is only prompting for the password as hidden input */
644 /* Allocate memory only when PAM_PROMPT_ECHO_OFF is encounterred */
645
646 char* appPass = reinterpret_cast<char*>(appdataPtr);
647 size_t appPassSize = std::strlen(appPass);
648
649 if (appPassSize >= PAM_MAX_RESP_SIZE)
650 {
651 return PAM_CONV_ERR;
652 }
653
654 char* pass = reinterpret_cast<char*>(malloc(appPassSize + 1));
655 if (pass == nullptr)
656 {
657 return PAM_BUF_ERR;
658 }
659
660 void* ptr =
661 calloc(static_cast<size_t>(numMsg), sizeof(struct pam_response));
662 if (ptr == nullptr)
663 {
664 free(pass);
665 return PAM_BUF_ERR;
666 }
667
668 std::strncpy(pass, appPass, appPassSize + 1);
669
670 *resp = reinterpret_cast<pam_response*>(ptr);
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530671 resp[i]->resp = pass;
P Dheeraj Srujan Kumar2aeb1c12021-07-20 04:26:13 +0530672
673 return PAM_SUCCESS;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530674 }
P Dheeraj Srujan Kumar2aeb1c12021-07-20 04:26:13 +0530675
676 return PAM_CONV_ERR;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530677}
678
679/** @brief Updating the PAM password
680 *
681 * @param[in] username - username in string
682 *
683 * @param[in] password - new password in string
684 *
685 * @return status
686 */
687
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000688int pamUpdatePasswd(const char* username, const char* password)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530689{
690 const struct pam_conv localConversation = {pamFunctionConversation,
691 const_cast<char*>(password)};
692 pam_handle_t* localAuthHandle = NULL; // this gets set by pam_start
693
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000694 int retval =
695 pam_start("passwd", username, &localConversation, &localAuthHandle);
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530696
697 if (retval != PAM_SUCCESS)
698 {
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000699 return retval;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530700 }
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000701
702 retval = pam_chauthtok(localAuthHandle, PAM_SILENT);
703 if (retval != PAM_SUCCESS)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530704 {
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000705 pam_end(localAuthHandle, retval);
706 return retval;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530707 }
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000708
709 return pam_end(localAuthHandle, PAM_SUCCESS);
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530710}
711
Ayushi Smriti02650d52019-05-15 11:59:09 +0000712bool pamUserCheckAuthenticate(std::string_view username,
713 std::string_view password)
714{
715 const struct pam_conv localConversation = {
716 pamFunctionConversation, const_cast<char*>(password.data())};
717
718 pam_handle_t* localAuthHandle = NULL; // this gets set by pam_start
719
720 if (pam_start("dropbear", username.data(), &localConversation,
721 &localAuthHandle) != PAM_SUCCESS)
722 {
723 log<level::ERR>("User Authentication Failure");
724 return false;
725 }
726
727 int retval = pam_authenticate(localAuthHandle,
728 PAM_SILENT | PAM_DISALLOW_NULL_AUTHTOK);
729
730 if (retval != PAM_SUCCESS)
731 {
732 log<level::DEBUG>("pam_authenticate returned failure",
733 entry("ERROR=%d", retval));
734
735 pam_end(localAuthHandle, retval);
736 return false;
737 }
738
739 if (pam_acct_mgmt(localAuthHandle, PAM_DISALLOW_NULL_AUTHTOK) !=
740 PAM_SUCCESS)
741 {
742 pam_end(localAuthHandle, PAM_SUCCESS);
743 return false;
744 }
745
746 if (pam_end(localAuthHandle, PAM_SUCCESS) != PAM_SUCCESS)
747 {
748 return false;
749 }
750 return true;
751}
752
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000753Cc UserAccess::setSpecialUserPassword(const std::string& userName,
Vernon Mauery1e22a0f2021-07-30 13:36:54 -0700754 const SecureString& userPassword)
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530755{
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000756 if (pamUpdatePasswd(userName.c_str(), userPassword.c_str()) != PAM_SUCCESS)
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530757 {
758 log<level::DEBUG>("Failed to update password");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000759 return ccUnspecifiedError;
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530760 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000761 return ccSuccess;
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530762}
763
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000764Cc UserAccess::setUserPassword(const uint8_t userId, const char* userPassword)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530765{
766 std::string userName;
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000767 if (ipmiUserGetUserName(userId, userName) != ccSuccess)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530768 {
769 log<level::DEBUG>("User Name not found",
Ayushi Smriti05ad3412019-10-16 16:10:18 +0530770 entry("USER-ID=%d", (uint8_t)userId));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000771 return ccParmOutOfRange;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530772 }
Snehalatha Venkatesh61024d72021-04-08 16:24:39 +0000773
774 ipmi::SecureString passwd;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530775 passwd.assign(reinterpret_cast<const char*>(userPassword), 0,
776 maxIpmi20PasswordSize);
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000777 int retval = pamUpdatePasswd(userName.c_str(), passwd.c_str());
778
779 switch (retval)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530780 {
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000781 case PAM_SUCCESS:
782 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000783 return ccSuccess;
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000784 }
785 case PAM_AUTHTOK_ERR:
786 {
787 log<level::DEBUG>("Bad authentication token");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000788 return ccInvalidFieldRequest;
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000789 }
790 default:
791 {
792 log<level::DEBUG>("Failed to update password",
793 entry("USER-ID=%d", (uint8_t)userId));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000794 return ccUnspecifiedError;
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000795 }
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530796 }
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530797}
798
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000799Cc UserAccess::setUserEnabledState(const uint8_t userId,
800 const bool& enabledState)
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530801{
802 if (!isValidUserId(userId))
803 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000804 return ccParmOutOfRange;
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530805 }
806 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
807 userLock{*userMutex};
808 UserInfo* userInfo = getUserInfo(userId);
809 std::string userName;
810 userName.assign(reinterpret_cast<char*>(userInfo->userName), 0,
811 ipmiMaxUserName);
812 if (userName.empty())
813 {
814 log<level::DEBUG>("User name not set / invalid");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000815 return ccUnspecifiedError;
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530816 }
817 if (userInfo->userEnabled != enabledState)
818 {
P Dheeraj Srujan Kumar0ce6a572021-12-13 09:01:55 +0530819 sdbusplus::message::object_path tempUserPath(userObjBasePath);
820 tempUserPath /= userName;
821 std::string userPath(tempUserPath);
Patrick Venture99d1ba02019-02-21 15:11:24 -0800822 setDbusProperty(bus, getUserServiceName(), userPath, usersInterface,
823 userEnabledProperty, enabledState);
Richard Marian Thomaiyar2fe92822019-03-02 22:07:03 +0530824 userInfo->userEnabled = enabledState;
825 try
826 {
827 writeUserData();
828 }
829 catch (const std::exception& e)
830 {
831 log<level::DEBUG>("Write user data failed");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000832 return ccUnspecifiedError;
Richard Marian Thomaiyar2fe92822019-03-02 22:07:03 +0530833 }
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530834 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000835 return ccSuccess;
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530836}
837
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000838Cc UserAccess::setUserPayloadAccess(const uint8_t chNum,
839 const uint8_t operation,
840 const uint8_t userId,
841 const PayloadAccess& payloadAccess)
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000842{
843 constexpr uint8_t enable = 0x0;
844 constexpr uint8_t disable = 0x1;
845
846 if (!isValidChannel(chNum))
847 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000848 return ccInvalidFieldRequest;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000849 }
850 if (!isValidUserId(userId))
851 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000852 return ccParmOutOfRange;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000853 }
854 if (operation != enable && operation != disable)
855 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000856 return ccInvalidFieldRequest;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000857 }
858 // Check operation & payloadAccess if required.
859 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
860 userLock{*userMutex};
861 UserInfo* userInfo = getUserInfo(userId);
862
863 if (operation == enable)
864 {
865 userInfo->payloadAccess[chNum].stdPayloadEnables1 |=
866 payloadAccess.stdPayloadEnables1;
867
868 userInfo->payloadAccess[chNum].oemPayloadEnables1 |=
869 payloadAccess.oemPayloadEnables1;
870 }
871 else
872 {
873 userInfo->payloadAccess[chNum].stdPayloadEnables1 &=
874 ~(payloadAccess.stdPayloadEnables1);
875
876 userInfo->payloadAccess[chNum].oemPayloadEnables1 &=
877 ~(payloadAccess.oemPayloadEnables1);
878 }
879
880 try
881 {
882 writeUserData();
883 }
884 catch (const std::exception& e)
885 {
886 log<level::ERR>("Write user data failed");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000887 return ccUnspecifiedError;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000888 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000889 return ccSuccess;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000890}
891
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000892Cc UserAccess::setUserPrivilegeAccess(const uint8_t userId, const uint8_t chNum,
893 const UserPrivAccess& privAccess,
894 const bool& otherPrivUpdates)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530895{
896 if (!isValidChannel(chNum))
897 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000898 return ccInvalidFieldRequest;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530899 }
900 if (!isValidUserId(userId))
901 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000902 return ccParmOutOfRange;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530903 }
904 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
905 userLock{*userMutex};
906 UserInfo* userInfo = getUserInfo(userId);
907 std::string userName;
908 userName.assign(reinterpret_cast<char*>(userInfo->userName), 0,
909 ipmiMaxUserName);
910 if (userName.empty())
911 {
912 log<level::DEBUG>("User name not set / invalid");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000913 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530914 }
915 std::string priv = convertToSystemPrivilege(
916 static_cast<CommandPrivilege>(privAccess.privilege));
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530917 uint8_t syncIndex = getUsrMgmtSyncIndex();
918 if (chNum == syncIndex &&
919 privAccess.privilege != userInfo->userPrivAccess[syncIndex].privilege)
920 {
P Dheeraj Srujan Kumar0ce6a572021-12-13 09:01:55 +0530921 sdbusplus::message::object_path tempUserPath(userObjBasePath);
922 tempUserPath /= userName;
923 std::string userPath(tempUserPath);
Patrick Venture99d1ba02019-02-21 15:11:24 -0800924 setDbusProperty(bus, getUserServiceName(), userPath, usersInterface,
925 userPrivProperty, priv);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530926 }
927 userInfo->userPrivAccess[chNum].privilege = privAccess.privilege;
928
929 if (otherPrivUpdates)
930 {
931 userInfo->userPrivAccess[chNum].ipmiEnabled = privAccess.ipmiEnabled;
932 userInfo->userPrivAccess[chNum].linkAuthEnabled =
933 privAccess.linkAuthEnabled;
934 userInfo->userPrivAccess[chNum].accessCallback =
935 privAccess.accessCallback;
936 }
937 try
938 {
939 writeUserData();
940 }
941 catch (const std::exception& e)
942 {
943 log<level::DEBUG>("Write user data failed");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000944 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530945 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000946 return ccSuccess;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530947}
948
949uint8_t UserAccess::getUserId(const std::string& userName)
950{
951 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
952 userLock{*userMutex};
953 checkAndReloadUserData();
954 // user index 0 is reserved, starts with 1
955 size_t usrIndex = 1;
956 for (; usrIndex <= ipmiMaxUsers; ++usrIndex)
957 {
958 std::string curName(
959 reinterpret_cast<char*>(usersTbl.user[usrIndex].userName), 0,
960 ipmiMaxUserName);
961 if (userName == curName)
962 {
963 break; // found the entry
964 }
965 }
966 if (usrIndex > ipmiMaxUsers)
967 {
968 log<level::DEBUG>("User not found",
969 entry("USER_NAME=%s", userName.c_str()));
970 return invalidUserId;
971 }
972
973 return usrIndex;
974}
975
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000976Cc UserAccess::getUserName(const uint8_t userId, std::string& userName)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530977{
978 if (!isValidUserId(userId))
979 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000980 return ccParmOutOfRange;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530981 }
982 UserInfo* userInfo = getUserInfo(userId);
983 userName.assign(reinterpret_cast<char*>(userInfo->userName), 0,
984 ipmiMaxUserName);
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000985 return ccSuccess;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530986}
987
Richard Marian Thomaiyar489a4ed2020-01-17 11:48:40 +0530988bool UserAccess::isIpmiInAvailableGroupList()
989{
990 if (std::find(availableGroups.begin(), availableGroups.end(),
991 ipmiGrpName) != availableGroups.end())
992 {
993 return true;
994 }
995 if (availableGroups.empty())
996 {
997 // available groups shouldn't be empty, re-query
998 getSystemPrivAndGroups();
999 if (std::find(availableGroups.begin(), availableGroups.end(),
1000 ipmiGrpName) != availableGroups.end())
1001 {
1002 return true;
1003 }
1004 }
1005 return false;
1006}
1007
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001008Cc UserAccess::setUserName(const uint8_t userId, const std::string& userName)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301009{
1010 if (!isValidUserId(userId))
1011 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001012 return ccParmOutOfRange;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301013 }
1014
1015 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
1016 userLock{*userMutex};
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301017 std::string oldUser;
1018 getUserName(userId, oldUser);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301019
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001020 if (oldUser == userName)
Richard Marian Thomaiyar8550b602018-12-06 13:20:38 +05301021 {
1022 // requesting to set the same user name, return success.
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001023 return ccSuccess;
Richard Marian Thomaiyar8550b602018-12-06 13:20:38 +05301024 }
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001025
1026 bool validUser = isValidUserName(userName);
Richard Marian Thomaiyar8550b602018-12-06 13:20:38 +05301027 UserInfo* userInfo = getUserInfo(userId);
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001028 if (userName.empty() && !oldUser.empty())
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301029 {
1030 // Delete existing user
P Dheeraj Srujan Kumar0ce6a572021-12-13 09:01:55 +05301031 sdbusplus::message::object_path tempUserPath(userObjBasePath);
1032 tempUserPath /= oldUser;
1033 std::string userPath(tempUserPath);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301034 try
1035 {
1036 auto method = bus.new_method_call(
1037 getUserServiceName().c_str(), userPath.c_str(),
1038 deleteUserInterface, deleteUserMethod);
1039 auto reply = bus.call(method);
1040 }
Patrick Williamsef1259b2021-09-02 09:12:33 -05001041 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301042 {
1043 log<level::DEBUG>("Failed to excute method",
1044 entry("METHOD=%s", deleteUserMethod),
1045 entry("PATH=%s", userPath.c_str()));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001046 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301047 }
Richard Marian Thomaiyar02710bb2018-11-28 20:42:25 +05301048 deleteUserIndex(userId);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301049 }
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001050 else if (oldUser.empty() && !userName.empty() && validUser)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301051 {
1052 try
1053 {
Richard Marian Thomaiyar489a4ed2020-01-17 11:48:40 +05301054 if (!isIpmiInAvailableGroupList())
1055 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001056 return ccUnspecifiedError;
Richard Marian Thomaiyar489a4ed2020-01-17 11:48:40 +05301057 }
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301058 // Create new user
1059 auto method = bus.new_method_call(
1060 getUserServiceName().c_str(), userMgrObjBasePath,
1061 userMgrInterface, createUserMethod);
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001062 method.append(userName.c_str(), availableGroups, "", false);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301063 auto reply = bus.call(method);
1064 }
Patrick Williamsef1259b2021-09-02 09:12:33 -05001065 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301066 {
1067 log<level::DEBUG>("Failed to excute method",
1068 entry("METHOD=%s", createUserMethod),
1069 entry("PATH=%s", userMgrObjBasePath));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001070 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301071 }
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001072
1073 std::memset(userInfo->userName, 0, sizeof(userInfo->userName));
1074 std::memcpy(userInfo->userName,
1075 static_cast<const void*>(userName.data()), userName.size());
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301076 userInfo->userInSystem = true;
1077 }
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001078 else if (oldUser != userName && validUser)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301079 {
1080 try
1081 {
1082 // User rename
1083 auto method = bus.new_method_call(
1084 getUserServiceName().c_str(), userMgrObjBasePath,
1085 userMgrInterface, renameUserMethod);
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001086 method.append(oldUser.c_str(), userName.c_str());
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301087 auto reply = bus.call(method);
1088 }
Patrick Williamsef1259b2021-09-02 09:12:33 -05001089 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301090 {
1091 log<level::DEBUG>("Failed to excute method",
1092 entry("METHOD=%s", renameUserMethod),
1093 entry("PATH=%s", userMgrObjBasePath));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001094 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301095 }
1096 std::fill(static_cast<uint8_t*>(userInfo->userName),
1097 static_cast<uint8_t*>(userInfo->userName) +
1098 sizeof(userInfo->userName),
1099 0);
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001100
1101 std::memset(userInfo->userName, 0, sizeof(userInfo->userName));
1102 std::memcpy(userInfo->userName,
1103 static_cast<const void*>(userName.data()), userName.size());
1104
1105 ipmiRenameUserEntryPassword(oldUser, userName);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301106 userInfo->userInSystem = true;
1107 }
1108 else if (!validUser)
1109 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001110 return ccInvalidFieldRequest;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301111 }
1112 try
1113 {
1114 writeUserData();
1115 }
1116 catch (const std::exception& e)
1117 {
1118 log<level::DEBUG>("Write user data failed");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001119 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301120 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001121 return ccSuccess;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301122}
1123
1124static constexpr const char* jsonUserName = "user_name";
1125static constexpr const char* jsonPriv = "privilege";
1126static constexpr const char* jsonIpmiEnabled = "ipmi_enabled";
1127static constexpr const char* jsonLinkAuthEnabled = "link_auth_enabled";
1128static constexpr const char* jsonAccCallbk = "access_callback";
1129static constexpr const char* jsonUserEnabled = "user_enabled";
1130static constexpr const char* jsonUserInSys = "user_in_system";
1131static constexpr const char* jsonFixedUser = "fixed_user_name";
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001132static constexpr const char* payloadEnabledStr = "payload_enabled";
1133static constexpr const char* stdPayloadStr = "std_payload";
1134static constexpr const char* oemPayloadStr = "OEM_payload";
1135
1136/** @brief to construct a JSON object from the given payload access details.
1137 *
1138 * @param[in] stdPayload - stdPayloadEnables1 in a 2D-array. (input)
1139 * @param[in] oemPayload - oemPayloadEnables1 in a 2D-array. (input)
1140 *
1141 * @details Sample output JSON object format :
1142 * "payload_enabled":{
1143 * "OEM_payload0":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1144 * "OEM_payload1":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1145 * "OEM_payload2":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1146 * "OEM_payload3":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1147 * "OEM_payload4":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1148 * "OEM_payload5":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1149 * "OEM_payload6":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1150 * "OEM_payload7":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1151 * "std_payload0":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1152 * "std_payload1":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1153 * "std_payload2":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1154 * "std_payload3":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1155 * "std_payload4":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1156 * "std_payload5":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1157 * "std_payload6":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1158 * "std_payload7":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1159 * }
1160 */
1161static const Json constructJsonPayloadEnables(
1162 const std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>&
1163 stdPayload,
1164 const std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>&
1165 oemPayload)
1166{
1167 Json jsonPayloadEnabled;
1168
1169 for (auto payloadNum = 0; payloadNum < payloadsPerByte; payloadNum++)
1170 {
1171 std::ostringstream stdPayloadStream;
1172 std::ostringstream oemPayloadStream;
1173
1174 stdPayloadStream << stdPayloadStr << payloadNum;
1175 oemPayloadStream << oemPayloadStr << payloadNum;
1176
1177 jsonPayloadEnabled.push_back(Json::object_t::value_type(
1178 stdPayloadStream.str(), stdPayload[payloadNum]));
1179
1180 jsonPayloadEnabled.push_back(Json::object_t::value_type(
1181 oemPayloadStream.str(), oemPayload[payloadNum]));
1182 }
1183 return jsonPayloadEnabled;
1184}
1185
1186void UserAccess::readPayloadAccessFromUserInfo(
1187 const UserInfo& userInfo,
1188 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>& stdPayload,
1189 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>& oemPayload)
1190{
1191 for (auto payloadNum = 0; payloadNum < payloadsPerByte; payloadNum++)
1192 {
1193 for (auto chIndex = 0; chIndex < ipmiMaxChannels; chIndex++)
1194 {
1195 stdPayload[payloadNum][chIndex] =
1196 userInfo.payloadAccess[chIndex].stdPayloadEnables1[payloadNum];
1197
1198 oemPayload[payloadNum][chIndex] =
1199 userInfo.payloadAccess[chIndex].oemPayloadEnables1[payloadNum];
1200 }
1201 }
1202}
1203
1204void UserAccess::updatePayloadAccessInUserInfo(
1205 const std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>&
1206 stdPayload,
1207 const std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>&
1208 oemPayload,
1209 UserInfo& userInfo)
1210{
1211 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1212 {
1213 // Ensure that reserved/unsupported payloads are marked to zero.
1214 userInfo.payloadAccess[chIndex].stdPayloadEnables1.reset();
1215 userInfo.payloadAccess[chIndex].oemPayloadEnables1.reset();
1216 userInfo.payloadAccess[chIndex].stdPayloadEnables2Reserved.reset();
1217 userInfo.payloadAccess[chIndex].oemPayloadEnables2Reserved.reset();
1218 // Update SOL status as it is the only supported payload currently.
1219 userInfo.payloadAccess[chIndex]
1220 .stdPayloadEnables1[static_cast<uint8_t>(ipmi::PayloadType::SOL)] =
1221 stdPayload[static_cast<uint8_t>(ipmi::PayloadType::SOL)][chIndex];
1222 }
1223}
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301224
1225void UserAccess::readUserData()
1226{
1227 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
1228 userLock{*userMutex};
1229
1230 std::ifstream iUsrData(ipmiUserDataFile, std::ios::in | std::ios::binary);
1231 if (!iUsrData.good())
1232 {
1233 log<level::ERR>("Error in reading IPMI user data file");
1234 throw std::ios_base::failure("Error opening IPMI user data file");
1235 }
1236
1237 Json jsonUsersTbl = Json::array();
1238 jsonUsersTbl = Json::parse(iUsrData, nullptr, false);
1239
1240 if (jsonUsersTbl.size() != ipmiMaxUsers)
1241 {
1242 log<level::ERR>(
1243 "Error in reading IPMI user data file - User count issues");
1244 throw std::runtime_error(
1245 "Corrupted IPMI user data file - invalid user count");
1246 }
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001247
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301248 // user index 0 is reserved, starts with 1
1249 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex)
1250 {
1251 Json userInfo = jsonUsersTbl[usrIndex - 1]; // json array starts with 0.
1252 if (userInfo.is_null())
1253 {
1254 log<level::ERR>("Error in reading IPMI user data file - "
1255 "user info corrupted");
1256 throw std::runtime_error(
1257 "Corrupted IPMI user data file - invalid user info");
1258 }
1259 std::string userName = userInfo[jsonUserName].get<std::string>();
1260 std::strncpy(reinterpret_cast<char*>(usersTbl.user[usrIndex].userName),
1261 userName.c_str(), ipmiMaxUserName);
1262
1263 std::vector<std::string> privilege =
1264 userInfo[jsonPriv].get<std::vector<std::string>>();
1265 std::vector<bool> ipmiEnabled =
1266 userInfo[jsonIpmiEnabled].get<std::vector<bool>>();
1267 std::vector<bool> linkAuthEnabled =
1268 userInfo[jsonLinkAuthEnabled].get<std::vector<bool>>();
1269 std::vector<bool> accessCallback =
1270 userInfo[jsonAccCallbk].get<std::vector<bool>>();
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001271
1272 // Payload Enables Processing.
Saravanan Palanisamyc86045c2019-07-26 22:52:40 +00001273 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>
1274 stdPayload = {};
1275 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>
1276 oemPayload = {};
1277 try
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001278 {
Saravanan Palanisamyc86045c2019-07-26 22:52:40 +00001279 const auto jsonPayloadEnabled = userInfo.at(payloadEnabledStr);
1280 for (auto payloadNum = 0; payloadNum < payloadsPerByte;
1281 payloadNum++)
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001282 {
Saravanan Palanisamyc86045c2019-07-26 22:52:40 +00001283 std::ostringstream stdPayloadStream;
1284 std::ostringstream oemPayloadStream;
1285
1286 stdPayloadStream << stdPayloadStr << payloadNum;
1287 oemPayloadStream << oemPayloadStr << payloadNum;
1288
1289 stdPayload[payloadNum] =
1290 jsonPayloadEnabled[stdPayloadStream.str()]
1291 .get<std::array<bool, ipmiMaxChannels>>();
1292 oemPayload[payloadNum] =
1293 jsonPayloadEnabled[oemPayloadStream.str()]
1294 .get<std::array<bool, ipmiMaxChannels>>();
1295
1296 if (stdPayload[payloadNum].size() != ipmiMaxChannels ||
1297 oemPayload[payloadNum].size() != ipmiMaxChannels)
1298 {
1299 log<level::ERR>("Error in reading IPMI user data file - "
1300 "payload properties corrupted");
1301 throw std::runtime_error(
1302 "Corrupted IPMI user data file - payload properties");
1303 }
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001304 }
1305 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -05001306 catch (const Json::out_of_range& e)
Saravanan Palanisamyc86045c2019-07-26 22:52:40 +00001307 {
1308 // Key not found in 'userInfo'; possibly an old JSON file. Use
1309 // default values for all payloads, and SOL payload default is true.
1310 stdPayload[static_cast<uint8_t>(ipmi::PayloadType::SOL)].fill(true);
1311 }
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001312
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301313 if (privilege.size() != ipmiMaxChannels ||
1314 ipmiEnabled.size() != ipmiMaxChannels ||
1315 linkAuthEnabled.size() != ipmiMaxChannels ||
1316 accessCallback.size() != ipmiMaxChannels)
1317 {
1318 log<level::ERR>("Error in reading IPMI user data file - "
1319 "properties corrupted");
1320 throw std::runtime_error(
1321 "Corrupted IPMI user data file - properties");
1322 }
1323 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1324 {
1325 usersTbl.user[usrIndex].userPrivAccess[chIndex].privilege =
1326 static_cast<uint8_t>(
1327 convertToIPMIPrivilege(privilege[chIndex]));
1328 usersTbl.user[usrIndex].userPrivAccess[chIndex].ipmiEnabled =
1329 ipmiEnabled[chIndex];
1330 usersTbl.user[usrIndex].userPrivAccess[chIndex].linkAuthEnabled =
1331 linkAuthEnabled[chIndex];
1332 usersTbl.user[usrIndex].userPrivAccess[chIndex].accessCallback =
1333 accessCallback[chIndex];
1334 }
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001335 updatePayloadAccessInUserInfo(stdPayload, oemPayload,
1336 usersTbl.user[usrIndex]);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301337 usersTbl.user[usrIndex].userEnabled =
1338 userInfo[jsonUserEnabled].get<bool>();
1339 usersTbl.user[usrIndex].userInSystem =
1340 userInfo[jsonUserInSys].get<bool>();
1341 usersTbl.user[usrIndex].fixedUserName =
1342 userInfo[jsonFixedUser].get<bool>();
1343 }
1344
1345 log<level::DEBUG>("User data read from IPMI data file");
1346 iUsrData.close();
1347 // Update the timestamp
1348 fileLastUpdatedTime = getUpdatedFileTime();
1349 return;
1350}
1351
1352void UserAccess::writeUserData()
1353{
1354 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
1355 userLock{*userMutex};
1356
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301357 Json jsonUsersTbl = Json::array();
1358 // user index 0 is reserved, starts with 1
1359 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex)
1360 {
1361 Json jsonUserInfo;
1362 jsonUserInfo[jsonUserName] = std::string(
1363 reinterpret_cast<char*>(usersTbl.user[usrIndex].userName), 0,
1364 ipmiMaxUserName);
1365 std::vector<std::string> privilege(ipmiMaxChannels);
1366 std::vector<bool> ipmiEnabled(ipmiMaxChannels);
1367 std::vector<bool> linkAuthEnabled(ipmiMaxChannels);
1368 std::vector<bool> accessCallback(ipmiMaxChannels);
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001369
1370 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>
1371 stdPayload;
1372 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>
1373 oemPayload;
1374
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301375 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; chIndex++)
1376 {
1377 privilege[chIndex] =
1378 convertToSystemPrivilege(static_cast<CommandPrivilege>(
1379 usersTbl.user[usrIndex].userPrivAccess[chIndex].privilege));
1380 ipmiEnabled[chIndex] =
1381 usersTbl.user[usrIndex].userPrivAccess[chIndex].ipmiEnabled;
1382 linkAuthEnabled[chIndex] =
1383 usersTbl.user[usrIndex].userPrivAccess[chIndex].linkAuthEnabled;
1384 accessCallback[chIndex] =
1385 usersTbl.user[usrIndex].userPrivAccess[chIndex].accessCallback;
1386 }
1387 jsonUserInfo[jsonPriv] = privilege;
1388 jsonUserInfo[jsonIpmiEnabled] = ipmiEnabled;
1389 jsonUserInfo[jsonLinkAuthEnabled] = linkAuthEnabled;
1390 jsonUserInfo[jsonAccCallbk] = accessCallback;
1391 jsonUserInfo[jsonUserEnabled] = usersTbl.user[usrIndex].userEnabled;
1392 jsonUserInfo[jsonUserInSys] = usersTbl.user[usrIndex].userInSystem;
1393 jsonUserInfo[jsonFixedUser] = usersTbl.user[usrIndex].fixedUserName;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001394
1395 readPayloadAccessFromUserInfo(usersTbl.user[usrIndex], stdPayload,
1396 oemPayload);
1397 Json jsonPayloadEnabledInfo =
1398 constructJsonPayloadEnables(stdPayload, oemPayload);
1399 jsonUserInfo[payloadEnabledStr] = jsonPayloadEnabledInfo;
1400
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301401 jsonUsersTbl.push_back(jsonUserInfo);
1402 }
1403
Richard Marian Thomaiyar687df402019-05-09 00:16:53 +05301404 static std::string tmpFile{std::string(ipmiUserDataFile) + "_tmp"};
1405 int fd = open(tmpFile.c_str(), O_CREAT | O_WRONLY | O_TRUNC | O_SYNC,
1406 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
1407 if (fd < 0)
1408 {
1409 log<level::ERR>("Error in creating temporary IPMI user data file");
1410 throw std::ios_base::failure(
1411 "Error in creating temporary IPMI user data file");
1412 }
1413 const auto& writeStr = jsonUsersTbl.dump();
1414 if (write(fd, writeStr.c_str(), writeStr.size()) !=
1415 static_cast<ssize_t>(writeStr.size()))
1416 {
1417 close(fd);
1418 log<level::ERR>("Error in writing temporary IPMI user data file");
1419 throw std::ios_base::failure(
1420 "Error in writing temporary IPMI user data file");
1421 }
1422 close(fd);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301423
1424 if (std::rename(tmpFile.c_str(), ipmiUserDataFile) != 0)
1425 {
1426 log<level::ERR>("Error in renaming temporary IPMI user data file");
1427 throw std::runtime_error("Error in renaming IPMI user data file");
1428 }
1429 // Update the timestamp
1430 fileLastUpdatedTime = getUpdatedFileTime();
1431 return;
1432}
1433
1434bool UserAccess::addUserEntry(const std::string& userName,
1435 const std::string& sysPriv, const bool& enabled)
1436{
1437 UsersTbl* userData = getUsersTblPtr();
1438 size_t freeIndex = 0xFF;
1439 // user index 0 is reserved, starts with 1
1440 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex)
1441 {
1442 std::string curName(
1443 reinterpret_cast<char*>(userData->user[usrIndex].userName), 0,
1444 ipmiMaxUserName);
1445 if (userName == curName)
1446 {
1447 log<level::DEBUG>("User name exists",
1448 entry("USER_NAME=%s", userName.c_str()));
1449 return false; // user name exists.
1450 }
1451
1452 if ((!userData->user[usrIndex].userInSystem) &&
1453 (userData->user[usrIndex].userName[0] == '\0') &&
1454 (freeIndex == 0xFF))
1455 {
1456 freeIndex = usrIndex;
1457 }
1458 }
1459 if (freeIndex == 0xFF)
1460 {
1461 log<level::ERR>("No empty slots found");
1462 return false;
1463 }
1464 std::strncpy(reinterpret_cast<char*>(userData->user[freeIndex].userName),
1465 userName.c_str(), ipmiMaxUserName);
1466 uint8_t priv =
1467 static_cast<uint8_t>(UserAccess::convertToIPMIPrivilege(sysPriv)) &
1468 privMask;
1469 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1470 {
1471 userData->user[freeIndex].userPrivAccess[chIndex].privilege = priv;
1472 userData->user[freeIndex].userPrivAccess[chIndex].ipmiEnabled = true;
1473 userData->user[freeIndex].userPrivAccess[chIndex].linkAuthEnabled =
1474 true;
1475 userData->user[freeIndex].userPrivAccess[chIndex].accessCallback = true;
1476 }
1477 userData->user[freeIndex].userInSystem = true;
1478 userData->user[freeIndex].userEnabled = enabled;
1479
1480 return true;
1481}
1482
1483void UserAccess::deleteUserIndex(const size_t& usrIdx)
1484{
1485 UsersTbl* userData = getUsersTblPtr();
1486
1487 std::string userName(
1488 reinterpret_cast<char*>(userData->user[usrIdx].userName), 0,
1489 ipmiMaxUserName);
1490 ipmiClearUserEntryPassword(userName);
1491 std::fill(static_cast<uint8_t*>(userData->user[usrIdx].userName),
1492 static_cast<uint8_t*>(userData->user[usrIdx].userName) +
1493 sizeof(userData->user[usrIdx].userName),
1494 0);
1495 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1496 {
1497 userData->user[usrIdx].userPrivAccess[chIndex].privilege = privNoAccess;
1498 userData->user[usrIdx].userPrivAccess[chIndex].ipmiEnabled = false;
1499 userData->user[usrIdx].userPrivAccess[chIndex].linkAuthEnabled = false;
1500 userData->user[usrIdx].userPrivAccess[chIndex].accessCallback = false;
1501 }
1502 userData->user[usrIdx].userInSystem = false;
1503 userData->user[usrIdx].userEnabled = false;
1504 return;
1505}
1506
1507void UserAccess::checkAndReloadUserData()
1508{
Jayaprakash Mutyala08d3d062021-10-01 16:01:57 +00001509 std::timespec updateTime = getUpdatedFileTime();
1510 if ((updateTime.tv_sec != fileLastUpdatedTime.tv_sec ||
1511 updateTime.tv_nsec != fileLastUpdatedTime.tv_nsec) ||
1512 (updateTime.tv_sec == 0 && updateTime.tv_nsec == 0))
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301513 {
1514 std::fill(reinterpret_cast<uint8_t*>(&usersTbl),
1515 reinterpret_cast<uint8_t*>(&usersTbl) + sizeof(usersTbl), 0);
1516 readUserData();
1517 }
1518 return;
1519}
1520
1521UsersTbl* UserAccess::getUsersTblPtr()
1522{
1523 // reload data before using it.
1524 checkAndReloadUserData();
1525 return &usersTbl;
1526}
1527
1528void UserAccess::getSystemPrivAndGroups()
1529{
1530 std::map<std::string, PrivAndGroupType> properties;
1531 try
1532 {
1533 auto method = bus.new_method_call(
1534 getUserServiceName().c_str(), userMgrObjBasePath,
1535 dBusPropertiesInterface, getAllPropertiesMethod);
1536 method.append(userMgrInterface);
1537
1538 auto reply = bus.call(method);
1539 reply.read(properties);
1540 }
Patrick Williamsef1259b2021-09-02 09:12:33 -05001541 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301542 {
1543 log<level::DEBUG>("Failed to excute method",
1544 entry("METHOD=%s", getAllPropertiesMethod),
1545 entry("PATH=%s", userMgrObjBasePath));
1546 return;
1547 }
1548 for (const auto& t : properties)
1549 {
1550 auto key = t.first;
1551 if (key == allPrivProperty)
1552 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001553 availablePrivileges = std::get<std::vector<std::string>>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301554 }
1555 else if (key == allGrpProperty)
1556 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001557 availableGroups = std::get<std::vector<std::string>>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301558 }
1559 }
1560 // TODO: Implement Supported Privilege & Groups verification logic
1561 return;
1562}
1563
Jayaprakash Mutyala08d3d062021-10-01 16:01:57 +00001564std::timespec UserAccess::getUpdatedFileTime()
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301565{
1566 struct stat fileStat;
1567 if (stat(ipmiUserDataFile, &fileStat) != 0)
1568 {
1569 log<level::DEBUG>("Error in getting last updated time stamp");
Jayaprakash Mutyala08d3d062021-10-01 16:01:57 +00001570 return std::timespec{0, 0};
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301571 }
Jayaprakash Mutyala08d3d062021-10-01 16:01:57 +00001572 return fileStat.st_mtim;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301573}
1574
1575void UserAccess::getUserProperties(const DbusUserObjProperties& properties,
1576 std::vector<std::string>& usrGrps,
1577 std::string& usrPriv, bool& usrEnabled)
1578{
1579 for (const auto& t : properties)
1580 {
1581 std::string key = t.first;
1582 if (key == userPrivProperty)
1583 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001584 usrPriv = std::get<std::string>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301585 }
1586 else if (key == userGrpProperty)
1587 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001588 usrGrps = std::get<std::vector<std::string>>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301589 }
1590 else if (key == userEnabledProperty)
1591 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001592 usrEnabled = std::get<bool>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301593 }
1594 }
1595 return;
1596}
1597
1598int UserAccess::getUserObjProperties(const DbusUserObjValue& userObjs,
1599 std::vector<std::string>& usrGrps,
1600 std::string& usrPriv, bool& usrEnabled)
1601{
1602 auto usrObj = userObjs.find(usersInterface);
1603 if (usrObj != userObjs.end())
1604 {
1605 getUserProperties(usrObj->second, usrGrps, usrPriv, usrEnabled);
1606 return 0;
1607 }
1608 return -EIO;
1609}
1610
arun-pmbbe728c2020-01-10 15:18:04 +05301611void UserAccess::cacheUserDataFile()
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301612{
1613 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
1614 userLock{*userMutex};
1615 try
1616 {
1617 readUserData();
1618 }
1619 catch (const std::ios_base::failure& e)
1620 { // File is empty, create it for the first time
1621 std::fill(reinterpret_cast<uint8_t*>(&usersTbl),
1622 reinterpret_cast<uint8_t*>(&usersTbl) + sizeof(usersTbl), 0);
1623 // user index 0 is reserved, starts with 1
1624 for (size_t userIndex = 1; userIndex <= ipmiMaxUsers; ++userIndex)
1625 {
1626 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1627 {
1628 usersTbl.user[userIndex].userPrivAccess[chIndex].privilege =
1629 privNoAccess;
Saravanan Palanisamy92d81192019-08-07 18:00:04 +00001630 usersTbl.user[userIndex]
1631 .payloadAccess[chIndex]
1632 .stdPayloadEnables1[static_cast<uint8_t>(
1633 ipmi::PayloadType::SOL)] = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301634 }
1635 }
1636 writeUserData();
1637 }
Jayaprakash Mutyala08d3d062021-10-01 16:01:57 +00001638 // Create lock file if it does not exist
1639 int fd = open(ipmiUserSignalLockFile, O_CREAT | O_TRUNC | O_SYNC,
1640 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
1641 if (fd < 0)
1642 {
1643 log<level::ERR>("Error in creating IPMI user signal lock file");
1644 throw std::ios_base::failure(
1645 "Error in creating temporary IPMI user signal lock file");
1646 }
1647 close(fd);
1648
1649 sigHndlrLock = boost::interprocess::file_lock(ipmiUserSignalLockFile);
arun-pmbbe728c2020-01-10 15:18:04 +05301650 // Register it for single object and single process either netipimd /
1651 // host-ipmid
1652 if (userUpdatedSignal == nullptr && sigHndlrLock.try_lock())
1653 {
1654 log<level::DEBUG>("Registering signal handler");
1655 userUpdatedSignal = std::make_unique<sdbusplus::bus::match_t>(
1656 bus,
1657 sdbusplus::bus::match::rules::type::signal() +
1658 sdbusplus::bus::match::rules::interface(dBusObjManager) +
1659 sdbusplus::bus::match::rules::path(userMgrObjBasePath),
1660 [&](sdbusplus::message::message& msg) {
1661 userUpdatedSignalHandler(*this, msg);
1662 });
1663 userMgrRenamedSignal = std::make_unique<sdbusplus::bus::match_t>(
1664 bus,
1665 sdbusplus::bus::match::rules::type::signal() +
1666 sdbusplus::bus::match::rules::interface(userMgrInterface) +
1667 sdbusplus::bus::match::rules::path(userMgrObjBasePath),
1668 [&](sdbusplus::message::message& msg) {
1669 userUpdatedSignalHandler(*this, msg);
1670 });
1671 userPropertiesSignal = std::make_unique<sdbusplus::bus::match_t>(
1672 bus,
1673 sdbusplus::bus::match::rules::type::signal() +
1674 sdbusplus::bus::match::rules::path_namespace(userObjBasePath) +
1675 sdbusplus::bus::match::rules::interface(
1676 dBusPropertiesInterface) +
1677 sdbusplus::bus::match::rules::member(propertiesChangedSignal) +
1678 sdbusplus::bus::match::rules::argN(0, usersInterface),
1679 [&](sdbusplus::message::message& msg) {
1680 userUpdatedSignalHandler(*this, msg);
1681 });
1682 signalHndlrObject = true;
1683 }
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301684 std::map<DbusUserObjPath, DbusUserObjValue> managedObjs;
1685 try
1686 {
1687 auto method = bus.new_method_call(getUserServiceName().c_str(),
1688 userMgrObjBasePath, dBusObjManager,
1689 getManagedObjectsMethod);
1690 auto reply = bus.call(method);
1691 reply.read(managedObjs);
1692 }
Patrick Williamsef1259b2021-09-02 09:12:33 -05001693 catch (const sdbusplus::exception::exception& e)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301694 {
1695 log<level::DEBUG>("Failed to excute method",
1696 entry("METHOD=%s", getSubTreeMethod),
1697 entry("PATH=%s", userMgrObjBasePath));
1698 return;
1699 }
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301700 bool updateRequired = false;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301701 UsersTbl* userData = &usersTbl;
1702 // user index 0 is reserved, starts with 1
1703 for (size_t usrIdx = 1; usrIdx <= ipmiMaxUsers; ++usrIdx)
1704 {
1705 if ((userData->user[usrIdx].userInSystem) &&
1706 (userData->user[usrIdx].userName[0] != '\0'))
1707 {
1708 std::vector<std::string> usrGrps;
1709 std::string usrPriv;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301710
1711 std::string userName(
1712 reinterpret_cast<char*>(userData->user[usrIdx].userName), 0,
1713 ipmiMaxUserName);
P Dheeraj Srujan Kumar0ce6a572021-12-13 09:01:55 +05301714 sdbusplus::message::object_path tempUserPath(userObjBasePath);
1715 tempUserPath /= userName;
1716 std::string usersPath(tempUserPath);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301717
1718 auto usrObj = managedObjs.find(usersPath);
1719 if (usrObj != managedObjs.end())
1720 {
Chen,Yugang0e862fa2019-09-06 11:03:05 +08001721 bool usrEnabled = false;
Patrick Venture3a697ad2019-08-19 11:12:05 -07001722
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301723 // User exist. Lets check and update other fileds
1724 getUserObjProperties(usrObj->second, usrGrps, usrPriv,
1725 usrEnabled);
1726 if (std::find(usrGrps.begin(), usrGrps.end(), ipmiGrpName) ==
1727 usrGrps.end())
1728 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301729 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301730 // Group "ipmi" is removed so lets remove user in IPMI
1731 deleteUserIndex(usrIdx);
1732 }
1733 else
1734 {
1735 // Group "ipmi" is present so lets update other properties
1736 // in IPMI
1737 uint8_t priv =
1738 UserAccess::convertToIPMIPrivilege(usrPriv) & privMask;
1739 // Update all channels priv, only if it is not equivalent to
1740 // getUsrMgmtSyncIndex()
1741 if (userData->user[usrIdx]
1742 .userPrivAccess[getUsrMgmtSyncIndex()]
1743 .privilege != priv)
1744 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301745 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301746 for (size_t chIndex = 0; chIndex < ipmiMaxChannels;
1747 ++chIndex)
1748 {
1749 userData->user[usrIdx]
1750 .userPrivAccess[chIndex]
1751 .privilege = priv;
1752 }
1753 }
1754 if (userData->user[usrIdx].userEnabled != usrEnabled)
1755 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301756 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301757 userData->user[usrIdx].userEnabled = usrEnabled;
1758 }
1759 }
1760
1761 // We are done with this obj. lets delete from MAP
1762 managedObjs.erase(usrObj);
1763 }
1764 else
1765 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301766 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301767 deleteUserIndex(usrIdx);
1768 }
1769 }
1770 }
1771
1772 // Walk through remnaining managedObj users list
1773 // Add them to ipmi data base
1774 for (const auto& usrObj : managedObjs)
1775 {
1776 std::vector<std::string> usrGrps;
1777 std::string usrPriv, userName;
Chen,Yugang0e862fa2019-09-06 11:03:05 +08001778 bool usrEnabled = false;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301779 std::string usrObjPath = std::string(usrObj.first);
1780 if (getUserNameFromPath(usrObj.first.str, userName) != 0)
1781 {
1782 log<level::ERR>("Error in user object path");
1783 continue;
1784 }
1785 getUserObjProperties(usrObj.second, usrGrps, usrPriv, usrEnabled);
1786 // Add 'ipmi' group users
1787 if (std::find(usrGrps.begin(), usrGrps.end(), ipmiGrpName) !=
1788 usrGrps.end())
1789 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301790 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301791 // CREATE NEW USER
1792 if (true != addUserEntry(userName, usrPriv, usrEnabled))
1793 {
1794 break;
1795 }
1796 }
1797 }
1798
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301799 if (updateRequired)
1800 {
1801 // All userData slots update done. Lets write the data
1802 writeUserData();
1803 }
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301804
1805 return;
1806}
1807} // namespace ipmi