blob: e1e21c9f177b43186d7738d552930efc5b55464f [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"
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053020
Suryakanth Sekar90b00c72019-01-16 10:37:57 +053021#include <security/pam_appl.h>
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053022#include <sys/stat.h>
23#include <unistd.h>
24
25#include <boost/interprocess/sync/named_recursive_mutex.hpp>
26#include <boost/interprocess/sync/scoped_lock.hpp>
27#include <cerrno>
28#include <fstream>
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053029#include <nlohmann/json.hpp>
30#include <phosphor-logging/elog-errors.hpp>
31#include <phosphor-logging/log.hpp>
32#include <regex>
33#include <sdbusplus/bus/match.hpp>
34#include <sdbusplus/server/object.hpp>
Vernon Mauery16b86932019-05-01 08:36:11 -070035#include <variant>
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +053036#include <xyz/openbmc_project/Common/error.hpp>
37#include <xyz/openbmc_project/User/Common/error.hpp>
38
39namespace ipmi
40{
41
42// TODO: Move D-Bus & Object Manager related stuff, to common files
43// D-Bus property related
44static constexpr const char* dBusPropertiesInterface =
45 "org.freedesktop.DBus.Properties";
46static constexpr const char* getAllPropertiesMethod = "GetAll";
47static constexpr const char* propertiesChangedSignal = "PropertiesChanged";
48static constexpr const char* setPropertiesMethod = "Set";
49
50// Object Manager related
51static constexpr const char* dBusObjManager =
52 "org.freedesktop.DBus.ObjectManager";
53static constexpr const char* getManagedObjectsMethod = "GetManagedObjects";
54// Object Manager signals
55static constexpr const char* intfAddedSignal = "InterfacesAdded";
56static constexpr const char* intfRemovedSignal = "InterfacesRemoved";
57
58// Object Mapper related
59static constexpr const char* objMapperService =
60 "xyz.openbmc_project.ObjectMapper";
61static constexpr const char* objMapperPath =
62 "/xyz/openbmc_project/object_mapper";
63static constexpr const char* objMapperInterface =
64 "xyz.openbmc_project.ObjectMapper";
65static constexpr const char* getSubTreeMethod = "GetSubTree";
66static constexpr const char* getObjectMethod = "GetObject";
67
68static constexpr const char* ipmiUserMutex = "ipmi_usr_mutex";
69static constexpr const char* ipmiMutexCleanupLockFile =
70 "/var/lib/ipmi/ipmi_usr_mutex_cleanup";
71static constexpr const char* ipmiUserDataFile = "/var/lib/ipmi/ipmi_user.json";
72static constexpr const char* ipmiGrpName = "ipmi";
73static constexpr size_t privNoAccess = 0xF;
74static constexpr size_t privMask = 0xF;
75
76// User manager related
77static constexpr const char* userMgrObjBasePath = "/xyz/openbmc_project/user";
78static constexpr const char* userObjBasePath = "/xyz/openbmc_project/user";
79static constexpr const char* userMgrInterface =
80 "xyz.openbmc_project.User.Manager";
81static constexpr const char* usersInterface =
82 "xyz.openbmc_project.User.Attributes";
83static constexpr const char* deleteUserInterface =
84 "xyz.openbmc_project.Object.Delete";
85
86static constexpr const char* createUserMethod = "CreateUser";
87static constexpr const char* deleteUserMethod = "Delete";
88static constexpr const char* renameUserMethod = "RenameUser";
89// User manager signal memebers
90static constexpr const char* userRenamedSignal = "UserRenamed";
91// Mgr interface properties
92static constexpr const char* allPrivProperty = "AllPrivileges";
93static constexpr const char* allGrpProperty = "AllGroups";
94// User interface properties
95static constexpr const char* userPrivProperty = "UserPrivilege";
96static constexpr const char* userGrpProperty = "UserGroups";
97static constexpr const char* userEnabledProperty = "UserEnabled";
98
99static std::array<std::string, (PRIVILEGE_OEM + 1)> ipmiPrivIndex = {
100 "priv-reserved", // PRIVILEGE_RESERVED - 0
101 "priv-callback", // PRIVILEGE_CALLBACK - 1
102 "priv-user", // PRIVILEGE_USER - 2
103 "priv-operator", // PRIVILEGE_OPERATOR - 3
104 "priv-admin", // PRIVILEGE_ADMIN - 4
105 "priv-custom" // PRIVILEGE_OEM - 5
106};
107
108using namespace phosphor::logging;
109using Json = nlohmann::json;
110
Vernon Mauery16b86932019-05-01 08:36:11 -0700111using PrivAndGroupType = std::variant<std::string, std::vector<std::string>>;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530112
113using NoResource =
114 sdbusplus::xyz::openbmc_project::User::Common::Error::NoResource;
115
116using InternalFailure =
117 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
118
Lei YU4b0ddb62019-01-25 16:43:50 +0800119std::unique_ptr<sdbusplus::bus::match_t> userUpdatedSignal
120 __attribute__((init_priority(101)));
121std::unique_ptr<sdbusplus::bus::match_t> userMgrRenamedSignal
122 __attribute__((init_priority(101)));
123std::unique_ptr<sdbusplus::bus::match_t> userPropertiesSignal
124 __attribute__((init_priority(101)));
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530125
126// TODO: Below code can be removed once it is moved to common layer libmiscutil
127std::string getUserService(sdbusplus::bus::bus& bus, const std::string& intf,
128 const std::string& path)
129{
130 auto mapperCall = bus.new_method_call(objMapperService, objMapperPath,
131 objMapperInterface, getObjectMethod);
132
133 mapperCall.append(path);
134 mapperCall.append(std::vector<std::string>({intf}));
135
136 auto mapperResponseMsg = bus.call(mapperCall);
137
138 std::map<std::string, std::vector<std::string>> mapperResponse;
139 mapperResponseMsg.read(mapperResponse);
140
141 if (mapperResponse.begin() == mapperResponse.end())
142 {
143 throw sdbusplus::exception::SdBusError(
144 -EIO, "ERROR in reading the mapper response");
145 }
146
147 return mapperResponse.begin()->first;
148}
149
150void setDbusProperty(sdbusplus::bus::bus& bus, const std::string& service,
151 const std::string& objPath, const std::string& interface,
152 const std::string& property,
153 const DbusUserPropVariant& value)
154{
155 try
156 {
157 auto method =
158 bus.new_method_call(service.c_str(), objPath.c_str(),
159 dBusPropertiesInterface, setPropertiesMethod);
160 method.append(interface, property, value);
161 bus.call(method);
162 }
163 catch (const sdbusplus::exception::SdBusError& e)
164 {
165 log<level::ERR>("Failed to set property",
166 entry("PROPERTY=%s", property.c_str()),
167 entry("PATH=%s", objPath.c_str()),
168 entry("INTERFACE=%s", interface.c_str()));
169 throw;
170 }
171}
172
173static std::string getUserServiceName()
174{
175 static sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
176 static std::string userMgmtService;
177 if (userMgmtService.empty())
178 {
179 try
180 {
181 userMgmtService =
182 ipmi::getUserService(bus, userMgrInterface, userMgrObjBasePath);
183 }
184 catch (const sdbusplus::exception::SdBusError& e)
185 {
186 userMgmtService.clear();
187 }
188 }
189 return userMgmtService;
190}
191
192UserAccess& getUserAccessObject()
193{
194 static UserAccess userAccess;
195 return userAccess;
196}
197
198int getUserNameFromPath(const std::string& path, std::string& userName)
199{
Richard Marian Thomaiyare3d144f2020-01-09 11:55:06 +0530200 constexpr size_t length = strlen(userObjBasePath);
201 if (((length + 1) >= path.size()) ||
202 path.compare(0, length, userObjBasePath))
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530203 {
204 return -EINVAL;
205 }
Richard Marian Thomaiyare3d144f2020-01-09 11:55:06 +0530206 userName.assign(path, length + 1, path.size());
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530207 return 0;
208}
209
210void userUpdateHelper(UserAccess& usrAccess, const UserUpdateEvent& userEvent,
211 const std::string& userName, const std::string& priv,
212 const bool& enabled, const std::string& newUserName)
213{
214 UsersTbl* userData = usrAccess.getUsersTblPtr();
215 if (userEvent == UserUpdateEvent::userCreated)
216 {
217 if (usrAccess.addUserEntry(userName, priv, enabled) == false)
218 {
219 return;
220 }
221 }
222 else
223 {
224 // user index 0 is reserved, starts with 1
225 size_t usrIndex = 1;
226 for (; usrIndex <= ipmiMaxUsers; ++usrIndex)
227 {
228 std::string curName(
229 reinterpret_cast<char*>(userData->user[usrIndex].userName), 0,
230 ipmiMaxUserName);
231 if (userName == curName)
232 {
233 break; // found the entry
234 }
235 }
236 if (usrIndex > ipmiMaxUsers)
237 {
238 log<level::DEBUG>("User not found for signal",
239 entry("USER_NAME=%s", userName.c_str()),
240 entry("USER_EVENT=%d", userEvent));
241 return;
242 }
243 switch (userEvent)
244 {
245 case UserUpdateEvent::userDeleted:
246 {
247 usrAccess.deleteUserIndex(usrIndex);
248 break;
249 }
250 case UserUpdateEvent::userPrivUpdated:
251 {
252 uint8_t userPriv =
253 static_cast<uint8_t>(
254 UserAccess::convertToIPMIPrivilege(priv)) &
255 privMask;
256 // Update all channels privileges, only if it is not equivalent
257 // to getUsrMgmtSyncIndex()
258 if (userData->user[usrIndex]
259 .userPrivAccess[UserAccess::getUsrMgmtSyncIndex()]
260 .privilege != userPriv)
261 {
262 for (size_t chIndex = 0; chIndex < ipmiMaxChannels;
263 ++chIndex)
264 {
265 userData->user[usrIndex]
266 .userPrivAccess[chIndex]
267 .privilege = userPriv;
268 }
269 }
270 break;
271 }
272 case UserUpdateEvent::userRenamed:
273 {
274 std::fill(
275 static_cast<uint8_t*>(userData->user[usrIndex].userName),
276 static_cast<uint8_t*>(userData->user[usrIndex].userName) +
277 sizeof(userData->user[usrIndex].userName),
278 0);
279 std::strncpy(
280 reinterpret_cast<char*>(userData->user[usrIndex].userName),
281 newUserName.c_str(), ipmiMaxUserName);
282 ipmiRenameUserEntryPassword(userName, newUserName);
283 break;
284 }
285 case UserUpdateEvent::userStateUpdated:
286 {
287 userData->user[usrIndex].userEnabled = enabled;
288 break;
289 }
290 default:
291 {
292 log<level::ERR>("Unhandled user event",
293 entry("USER_EVENT=%d", userEvent));
294 return;
295 }
296 }
297 }
298 usrAccess.writeUserData();
299 log<level::DEBUG>("User event handled successfully",
300 entry("USER_NAME=%s", userName.c_str()),
301 entry("USER_EVENT=%d", userEvent));
302
303 return;
304}
305
306void userUpdatedSignalHandler(UserAccess& usrAccess,
307 sdbusplus::message::message& msg)
308{
309 static sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
310 std::string signal = msg.get_member();
Patrick Venture3a697ad2019-08-19 11:12:05 -0700311 std::string userName, priv, newUserName;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530312 std::vector<std::string> groups;
313 bool enabled = false;
314 UserUpdateEvent userEvent = UserUpdateEvent::reservedEvent;
315 if (signal == intfAddedSignal)
316 {
317 DbusUserObjPath objPath;
318 DbusUserObjValue objValue;
319 msg.read(objPath, objValue);
320 getUserNameFromPath(objPath.str, userName);
321 if (usrAccess.getUserObjProperties(objValue, groups, priv, enabled) !=
322 0)
323 {
324 return;
325 }
326 if (std::find(groups.begin(), groups.end(), ipmiGrpName) ==
327 groups.end())
328 {
329 return;
330 }
331 userEvent = UserUpdateEvent::userCreated;
332 }
333 else if (signal == intfRemovedSignal)
334 {
335 DbusUserObjPath objPath;
336 std::vector<std::string> interfaces;
337 msg.read(objPath, interfaces);
338 getUserNameFromPath(objPath.str, userName);
339 userEvent = UserUpdateEvent::userDeleted;
340 }
341 else if (signal == userRenamedSignal)
342 {
343 msg.read(userName, newUserName);
344 userEvent = UserUpdateEvent::userRenamed;
345 }
346 else if (signal == propertiesChangedSignal)
347 {
348 getUserNameFromPath(msg.get_path(), userName);
349 }
350 else
351 {
352 log<level::ERR>("Unknown user update signal",
353 entry("SIGNAL=%s", signal.c_str()));
354 return;
355 }
356
357 if (signal.empty() || userName.empty() ||
358 (signal == userRenamedSignal && newUserName.empty()))
359 {
360 log<level::ERR>("Invalid inputs received");
361 return;
362 }
363
364 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
365 userLock{*(usrAccess.userMutex)};
366 usrAccess.checkAndReloadUserData();
367
368 if (signal == propertiesChangedSignal)
369 {
370 std::string intfName;
371 DbusUserObjProperties chProperties;
372 msg.read(intfName, chProperties); // skip reading 3rd argument.
373 for (const auto& prop : chProperties)
374 {
375 userEvent = UserUpdateEvent::reservedEvent;
376 std::string member = prop.first;
377 if (member == userPrivProperty)
378 {
Vernon Maueryf442e112019-04-09 11:44:36 -0700379 priv = std::get<std::string>(prop.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530380 userEvent = UserUpdateEvent::userPrivUpdated;
381 }
382 else if (member == userGrpProperty)
383 {
Vernon Maueryf442e112019-04-09 11:44:36 -0700384 groups = std::get<std::vector<std::string>>(prop.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530385 userEvent = UserUpdateEvent::userGrpUpdated;
386 }
387 else if (member == userEnabledProperty)
388 {
Vernon Maueryf442e112019-04-09 11:44:36 -0700389 enabled = std::get<bool>(prop.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530390 userEvent = UserUpdateEvent::userStateUpdated;
391 }
392 // Process based on event type.
393 if (userEvent == UserUpdateEvent::userGrpUpdated)
394 {
395 if (std::find(groups.begin(), groups.end(), ipmiGrpName) ==
396 groups.end())
397 {
398 // remove user from ipmi user list.
399 userUpdateHelper(usrAccess, UserUpdateEvent::userDeleted,
400 userName, priv, enabled, newUserName);
401 }
402 else
403 {
404 DbusUserObjProperties properties;
405 try
406 {
407 auto method = bus.new_method_call(
408 getUserServiceName().c_str(), msg.get_path(),
409 dBusPropertiesInterface, getAllPropertiesMethod);
410 method.append(usersInterface);
411 auto reply = bus.call(method);
412 reply.read(properties);
413 }
414 catch (const sdbusplus::exception::SdBusError& e)
415 {
416 log<level::DEBUG>(
417 "Failed to excute method",
418 entry("METHOD=%s", getAllPropertiesMethod),
419 entry("PATH=%s", msg.get_path()));
420 return;
421 }
422 usrAccess.getUserProperties(properties, groups, priv,
423 enabled);
424 // add user to ipmi user list.
425 userUpdateHelper(usrAccess, UserUpdateEvent::userCreated,
426 userName, priv, enabled, newUserName);
427 }
428 }
429 else if (userEvent != UserUpdateEvent::reservedEvent)
430 {
431 userUpdateHelper(usrAccess, userEvent, userName, priv, enabled,
432 newUserName);
433 }
434 }
435 }
436 else if (userEvent != UserUpdateEvent::reservedEvent)
437 {
438 userUpdateHelper(usrAccess, userEvent, userName, priv, enabled,
439 newUserName);
440 }
441 return;
442}
443
444UserAccess::~UserAccess()
445{
446 if (signalHndlrObject)
447 {
448 userUpdatedSignal.reset();
449 userMgrRenamedSignal.reset();
450 userPropertiesSignal.reset();
451 sigHndlrLock.unlock();
452 }
453}
454
455UserAccess::UserAccess() : bus(ipmid_get_sd_bus_connection())
456{
457 std::ofstream mutexCleanUpFile;
458 mutexCleanUpFile.open(ipmiMutexCleanupLockFile,
459 std::ofstream::out | std::ofstream::app);
460 if (!mutexCleanUpFile.good())
461 {
462 log<level::DEBUG>("Unable to open mutex cleanup file");
463 return;
464 }
465 mutexCleanUpFile.close();
466 mutexCleanupLock = boost::interprocess::file_lock(ipmiMutexCleanupLockFile);
467 if (mutexCleanupLock.try_lock())
468 {
469 boost::interprocess::named_recursive_mutex::remove(ipmiUserMutex);
470 }
471 mutexCleanupLock.lock_sharable();
472 userMutex = std::make_unique<boost::interprocess::named_recursive_mutex>(
473 boost::interprocess::open_or_create, ipmiUserMutex);
474
arun-pmbbe728c2020-01-10 15:18:04 +0530475 cacheUserDataFile();
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530476 getSystemPrivAndGroups();
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530477}
478
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530479UserInfo* UserAccess::getUserInfo(const uint8_t userId)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530480{
481 checkAndReloadUserData();
482 return &usersTbl.user[userId];
483}
484
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530485void UserAccess::setUserInfo(const uint8_t userId, UserInfo* userInfo)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530486{
487 checkAndReloadUserData();
488 std::copy(reinterpret_cast<uint8_t*>(userInfo),
489 reinterpret_cast<uint8_t*>(userInfo) + sizeof(*userInfo),
490 reinterpret_cast<uint8_t*>(&usersTbl.user[userId]));
491 writeUserData();
492}
493
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530494bool UserAccess::isValidChannel(const uint8_t chNum)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530495{
496 return (chNum < ipmiMaxChannels);
497}
498
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530499bool UserAccess::isValidUserId(const uint8_t userId)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530500{
501 return ((userId <= ipmiMaxUsers) && (userId != reservedUserId));
502}
503
Richard Marian Thomaiyara45cb342018-12-03 15:08:59 +0530504bool UserAccess::isValidPrivilege(const uint8_t priv)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530505{
jayaprakash Mutyala0e2dbee2019-12-26 13:03:04 +0000506 // Callback privilege is deprecated in OpenBMC
507 return (isValidPrivLimit(priv) || priv == privNoAccess);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530508}
509
510uint8_t UserAccess::getUsrMgmtSyncIndex()
511{
512 // TODO: Need to get LAN1 channel number dynamically,
513 // which has to be in sync with system user privilege
514 // level(Phosphor-user-manager). Note: For time being chanLan1 is marked as
515 // sync index to the user-manager privilege..
516 return static_cast<uint8_t>(EChannelID::chanLan1);
517}
518
519CommandPrivilege UserAccess::convertToIPMIPrivilege(const std::string& value)
520{
521 auto iter = std::find(ipmiPrivIndex.begin(), ipmiPrivIndex.end(), value);
522 if (iter == ipmiPrivIndex.end())
523 {
524 if (value == "")
525 {
526 return static_cast<CommandPrivilege>(privNoAccess);
527 }
528 log<level::ERR>("Error in converting to IPMI privilege",
529 entry("PRIV=%s", value.c_str()));
530 throw std::out_of_range("Out of range - convertToIPMIPrivilege");
531 }
532 else
533 {
534 return static_cast<CommandPrivilege>(
535 std::distance(ipmiPrivIndex.begin(), iter));
536 }
537}
538
539std::string UserAccess::convertToSystemPrivilege(const CommandPrivilege& value)
540{
541 if (value == static_cast<CommandPrivilege>(privNoAccess))
542 {
543 return "";
544 }
545 try
546 {
547 return ipmiPrivIndex.at(value);
548 }
549 catch (const std::out_of_range& e)
550 {
551 log<level::ERR>("Error in converting to system privilege",
552 entry("PRIV=%d", static_cast<uint8_t>(value)));
553 throw std::out_of_range("Out of range - convertToSystemPrivilege");
554 }
555}
556
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000557bool UserAccess::isValidUserName(const std::string& userName)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530558{
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000559 if (userName.empty())
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530560 {
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000561 log<level::ERR>("userName is empty");
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530562 return false;
563 }
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530564 if (!std::regex_match(userName.c_str(),
565 std::regex("[a-zA-z_][a-zA-Z_0-9]*")))
566 {
567 log<level::ERR>("Unsupported characters in user name");
568 return false;
569 }
570 if (userName == "root")
571 {
572 log<level::ERR>("Invalid user name - root");
573 return false;
574 }
575 std::map<DbusUserObjPath, DbusUserObjValue> properties;
576 try
577 {
578 auto method = bus.new_method_call(getUserServiceName().c_str(),
579 userMgrObjBasePath, dBusObjManager,
580 getManagedObjectsMethod);
581 auto reply = bus.call(method);
582 reply.read(properties);
583 }
584 catch (const sdbusplus::exception::SdBusError& e)
585 {
586 log<level::ERR>("Failed to excute method",
587 entry("METHOD=%s", getSubTreeMethod),
588 entry("PATH=%s", userMgrObjBasePath));
589 return false;
590 }
591
592 std::string usersPath = std::string(userObjBasePath) + "/" + userName;
593 if (properties.find(usersPath) != properties.end())
594 {
595 log<level::DEBUG>("User name already exists",
596 entry("USER_NAME=%s", userName.c_str()));
597 return false;
598 }
599
600 return true;
601}
602
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530603/** @brief Information exchanged by pam module and application.
604 *
605 * @param[in] numMsg - length of the array of pointers,msg.
606 *
607 * @param[in] msg - pointer to an array of pointers to pam_message structure
608 *
609 * @param[out] resp - struct pam response array
610 *
611 * @param[in] appdataPtr - member of pam_conv structure
612 *
613 * @return the response in pam response structure.
614 */
615
616static int pamFunctionConversation(int numMsg, const struct pam_message** msg,
617 struct pam_response** resp, void* appdataPtr)
618{
619 if (appdataPtr == nullptr)
620 {
621 return PAM_AUTH_ERR;
622 }
623 size_t passSize = std::strlen(reinterpret_cast<char*>(appdataPtr)) + 1;
624 char* pass = reinterpret_cast<char*>(malloc(passSize));
625 std::strncpy(pass, reinterpret_cast<char*>(appdataPtr), passSize);
626
627 *resp = reinterpret_cast<pam_response*>(
628 calloc(numMsg, sizeof(struct pam_response)));
629
630 for (int i = 0; i < numMsg; ++i)
631 {
632 if (msg[i]->msg_style != PAM_PROMPT_ECHO_OFF)
633 {
634 continue;
635 }
636 resp[i]->resp = pass;
637 }
638 return PAM_SUCCESS;
639}
640
641/** @brief Updating the PAM password
642 *
643 * @param[in] username - username in string
644 *
645 * @param[in] password - new password in string
646 *
647 * @return status
648 */
649
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000650int pamUpdatePasswd(const char* username, const char* password)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530651{
652 const struct pam_conv localConversation = {pamFunctionConversation,
653 const_cast<char*>(password)};
654 pam_handle_t* localAuthHandle = NULL; // this gets set by pam_start
655
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000656 int retval =
657 pam_start("passwd", username, &localConversation, &localAuthHandle);
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530658
659 if (retval != PAM_SUCCESS)
660 {
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000661 return retval;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530662 }
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000663
664 retval = pam_chauthtok(localAuthHandle, PAM_SILENT);
665 if (retval != PAM_SUCCESS)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530666 {
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000667 pam_end(localAuthHandle, retval);
668 return retval;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530669 }
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000670
671 return pam_end(localAuthHandle, PAM_SUCCESS);
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530672}
673
Ayushi Smriti02650d52019-05-15 11:59:09 +0000674bool pamUserCheckAuthenticate(std::string_view username,
675 std::string_view password)
676{
677 const struct pam_conv localConversation = {
678 pamFunctionConversation, const_cast<char*>(password.data())};
679
680 pam_handle_t* localAuthHandle = NULL; // this gets set by pam_start
681
682 if (pam_start("dropbear", username.data(), &localConversation,
683 &localAuthHandle) != PAM_SUCCESS)
684 {
685 log<level::ERR>("User Authentication Failure");
686 return false;
687 }
688
689 int retval = pam_authenticate(localAuthHandle,
690 PAM_SILENT | PAM_DISALLOW_NULL_AUTHTOK);
691
692 if (retval != PAM_SUCCESS)
693 {
694 log<level::DEBUG>("pam_authenticate returned failure",
695 entry("ERROR=%d", retval));
696
697 pam_end(localAuthHandle, retval);
698 return false;
699 }
700
701 if (pam_acct_mgmt(localAuthHandle, PAM_DISALLOW_NULL_AUTHTOK) !=
702 PAM_SUCCESS)
703 {
704 pam_end(localAuthHandle, PAM_SUCCESS);
705 return false;
706 }
707
708 if (pam_end(localAuthHandle, PAM_SUCCESS) != PAM_SUCCESS)
709 {
710 return false;
711 }
712 return true;
713}
714
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000715Cc UserAccess::setSpecialUserPassword(const std::string& userName,
716 const std::string& userPassword)
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530717{
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000718 if (pamUpdatePasswd(userName.c_str(), userPassword.c_str()) != PAM_SUCCESS)
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530719 {
720 log<level::DEBUG>("Failed to update password");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000721 return ccUnspecifiedError;
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530722 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000723 return ccSuccess;
Richard Marian Thomaiyar788362c2019-04-14 15:12:47 +0530724}
725
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000726Cc UserAccess::setUserPassword(const uint8_t userId, const char* userPassword)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530727{
728 std::string userName;
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000729 if (ipmiUserGetUserName(userId, userName) != ccSuccess)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530730 {
731 log<level::DEBUG>("User Name not found",
Ayushi Smriti05ad3412019-10-16 16:10:18 +0530732 entry("USER-ID=%d", (uint8_t)userId));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000733 return ccParmOutOfRange;
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530734 }
735 std::string passwd;
736 passwd.assign(reinterpret_cast<const char*>(userPassword), 0,
737 maxIpmi20PasswordSize);
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000738
739 int retval = pamUpdatePasswd(userName.c_str(), passwd.c_str());
740
741 switch (retval)
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530742 {
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000743 case PAM_SUCCESS:
744 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000745 return ccSuccess;
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000746 }
747 case PAM_AUTHTOK_ERR:
748 {
749 log<level::DEBUG>("Bad authentication token");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000750 return ccInvalidFieldRequest;
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000751 }
752 default:
753 {
754 log<level::DEBUG>("Failed to update password",
755 entry("USER-ID=%d", (uint8_t)userId));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000756 return ccUnspecifiedError;
jayaprakash Mutyala9fc5fa12019-08-29 15:14:06 +0000757 }
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530758 }
Suryakanth Sekar90b00c72019-01-16 10:37:57 +0530759}
760
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000761Cc UserAccess::setUserEnabledState(const uint8_t userId,
762 const bool& enabledState)
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530763{
764 if (!isValidUserId(userId))
765 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000766 return ccParmOutOfRange;
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530767 }
768 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
769 userLock{*userMutex};
770 UserInfo* userInfo = getUserInfo(userId);
771 std::string userName;
772 userName.assign(reinterpret_cast<char*>(userInfo->userName), 0,
773 ipmiMaxUserName);
774 if (userName.empty())
775 {
776 log<level::DEBUG>("User name not set / invalid");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000777 return ccUnspecifiedError;
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530778 }
779 if (userInfo->userEnabled != enabledState)
780 {
781 std::string userPath = std::string(userObjBasePath) + "/" + userName;
Patrick Venture99d1ba02019-02-21 15:11:24 -0800782 setDbusProperty(bus, getUserServiceName(), userPath, usersInterface,
783 userEnabledProperty, enabledState);
Richard Marian Thomaiyar2fe92822019-03-02 22:07:03 +0530784 userInfo->userEnabled = enabledState;
785 try
786 {
787 writeUserData();
788 }
789 catch (const std::exception& e)
790 {
791 log<level::DEBUG>("Write user data failed");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000792 return ccUnspecifiedError;
Richard Marian Thomaiyar2fe92822019-03-02 22:07:03 +0530793 }
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530794 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000795 return ccSuccess;
Richard Marian Thomaiyar282e79b2018-11-13 19:00:58 +0530796}
797
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000798Cc UserAccess::setUserPayloadAccess(const uint8_t chNum,
799 const uint8_t operation,
800 const uint8_t userId,
801 const PayloadAccess& payloadAccess)
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000802{
803 constexpr uint8_t enable = 0x0;
804 constexpr uint8_t disable = 0x1;
805
806 if (!isValidChannel(chNum))
807 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000808 return ccInvalidFieldRequest;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000809 }
810 if (!isValidUserId(userId))
811 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000812 return ccParmOutOfRange;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000813 }
814 if (operation != enable && operation != disable)
815 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000816 return ccInvalidFieldRequest;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000817 }
818 // Check operation & payloadAccess if required.
819 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
820 userLock{*userMutex};
821 UserInfo* userInfo = getUserInfo(userId);
822
823 if (operation == enable)
824 {
825 userInfo->payloadAccess[chNum].stdPayloadEnables1 |=
826 payloadAccess.stdPayloadEnables1;
827
828 userInfo->payloadAccess[chNum].oemPayloadEnables1 |=
829 payloadAccess.oemPayloadEnables1;
830 }
831 else
832 {
833 userInfo->payloadAccess[chNum].stdPayloadEnables1 &=
834 ~(payloadAccess.stdPayloadEnables1);
835
836 userInfo->payloadAccess[chNum].oemPayloadEnables1 &=
837 ~(payloadAccess.oemPayloadEnables1);
838 }
839
840 try
841 {
842 writeUserData();
843 }
844 catch (const std::exception& e)
845 {
846 log<level::ERR>("Write user data failed");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000847 return ccUnspecifiedError;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000848 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000849 return ccSuccess;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +0000850}
851
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000852Cc UserAccess::setUserPrivilegeAccess(const uint8_t userId, const uint8_t chNum,
853 const UserPrivAccess& privAccess,
854 const bool& otherPrivUpdates)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530855{
856 if (!isValidChannel(chNum))
857 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000858 return ccInvalidFieldRequest;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530859 }
860 if (!isValidUserId(userId))
861 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000862 return ccParmOutOfRange;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530863 }
864 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
865 userLock{*userMutex};
866 UserInfo* userInfo = getUserInfo(userId);
867 std::string userName;
868 userName.assign(reinterpret_cast<char*>(userInfo->userName), 0,
869 ipmiMaxUserName);
870 if (userName.empty())
871 {
872 log<level::DEBUG>("User name not set / invalid");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000873 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530874 }
875 std::string priv = convertToSystemPrivilege(
876 static_cast<CommandPrivilege>(privAccess.privilege));
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530877 uint8_t syncIndex = getUsrMgmtSyncIndex();
878 if (chNum == syncIndex &&
879 privAccess.privilege != userInfo->userPrivAccess[syncIndex].privilege)
880 {
881 std::string userPath = std::string(userObjBasePath) + "/" + userName;
Patrick Venture99d1ba02019-02-21 15:11:24 -0800882 setDbusProperty(bus, getUserServiceName(), userPath, usersInterface,
883 userPrivProperty, priv);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530884 }
885 userInfo->userPrivAccess[chNum].privilege = privAccess.privilege;
886
887 if (otherPrivUpdates)
888 {
889 userInfo->userPrivAccess[chNum].ipmiEnabled = privAccess.ipmiEnabled;
890 userInfo->userPrivAccess[chNum].linkAuthEnabled =
891 privAccess.linkAuthEnabled;
892 userInfo->userPrivAccess[chNum].accessCallback =
893 privAccess.accessCallback;
894 }
895 try
896 {
897 writeUserData();
898 }
899 catch (const std::exception& e)
900 {
901 log<level::DEBUG>("Write user data failed");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000902 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530903 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000904 return ccSuccess;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530905}
906
907uint8_t UserAccess::getUserId(const std::string& userName)
908{
909 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
910 userLock{*userMutex};
911 checkAndReloadUserData();
912 // user index 0 is reserved, starts with 1
913 size_t usrIndex = 1;
914 for (; usrIndex <= ipmiMaxUsers; ++usrIndex)
915 {
916 std::string curName(
917 reinterpret_cast<char*>(usersTbl.user[usrIndex].userName), 0,
918 ipmiMaxUserName);
919 if (userName == curName)
920 {
921 break; // found the entry
922 }
923 }
924 if (usrIndex > ipmiMaxUsers)
925 {
926 log<level::DEBUG>("User not found",
927 entry("USER_NAME=%s", userName.c_str()));
928 return invalidUserId;
929 }
930
931 return usrIndex;
932}
933
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000934Cc UserAccess::getUserName(const uint8_t userId, std::string& userName)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530935{
936 if (!isValidUserId(userId))
937 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000938 return ccParmOutOfRange;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530939 }
940 UserInfo* userInfo = getUserInfo(userId);
941 userName.assign(reinterpret_cast<char*>(userInfo->userName), 0,
942 ipmiMaxUserName);
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000943 return ccSuccess;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530944}
945
Richard Marian Thomaiyar489a4ed2020-01-17 11:48:40 +0530946bool UserAccess::isIpmiInAvailableGroupList()
947{
948 if (std::find(availableGroups.begin(), availableGroups.end(),
949 ipmiGrpName) != availableGroups.end())
950 {
951 return true;
952 }
953 if (availableGroups.empty())
954 {
955 // available groups shouldn't be empty, re-query
956 getSystemPrivAndGroups();
957 if (std::find(availableGroups.begin(), availableGroups.end(),
958 ipmiGrpName) != availableGroups.end())
959 {
960 return true;
961 }
962 }
963 return false;
964}
965
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000966Cc UserAccess::setUserName(const uint8_t userId, const std::string& userName)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530967{
968 if (!isValidUserId(userId))
969 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000970 return ccParmOutOfRange;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530971 }
972
973 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
974 userLock{*userMutex};
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530975 std::string oldUser;
976 getUserName(userId, oldUser);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530977
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000978 if (oldUser == userName)
Richard Marian Thomaiyar8550b602018-12-06 13:20:38 +0530979 {
980 // requesting to set the same user name, return success.
NITIN SHARMAb541a5a2019-07-18 12:46:59 +0000981 return ccSuccess;
Richard Marian Thomaiyar8550b602018-12-06 13:20:38 +0530982 }
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000983
984 bool validUser = isValidUserName(userName);
Richard Marian Thomaiyar8550b602018-12-06 13:20:38 +0530985 UserInfo* userInfo = getUserInfo(userId);
jayaprakash Mutyala76363302020-02-14 23:50:38 +0000986 if (userName.empty() && !oldUser.empty())
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +0530987 {
988 // Delete existing user
989 std::string userPath = std::string(userObjBasePath) + "/" + oldUser;
990 try
991 {
992 auto method = bus.new_method_call(
993 getUserServiceName().c_str(), userPath.c_str(),
994 deleteUserInterface, deleteUserMethod);
995 auto reply = bus.call(method);
996 }
997 catch (const sdbusplus::exception::SdBusError& e)
998 {
999 log<level::DEBUG>("Failed to excute method",
1000 entry("METHOD=%s", deleteUserMethod),
1001 entry("PATH=%s", userPath.c_str()));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001002 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301003 }
Richard Marian Thomaiyar02710bb2018-11-28 20:42:25 +05301004 deleteUserIndex(userId);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301005 }
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001006 else if (oldUser.empty() && !userName.empty() && validUser)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301007 {
1008 try
1009 {
Richard Marian Thomaiyar489a4ed2020-01-17 11:48:40 +05301010 if (!isIpmiInAvailableGroupList())
1011 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001012 return ccUnspecifiedError;
Richard Marian Thomaiyar489a4ed2020-01-17 11:48:40 +05301013 }
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301014 // Create new user
1015 auto method = bus.new_method_call(
1016 getUserServiceName().c_str(), userMgrObjBasePath,
1017 userMgrInterface, createUserMethod);
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001018 method.append(userName.c_str(), availableGroups, "", false);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301019 auto reply = bus.call(method);
1020 }
1021 catch (const sdbusplus::exception::SdBusError& e)
1022 {
1023 log<level::DEBUG>("Failed to excute method",
1024 entry("METHOD=%s", createUserMethod),
1025 entry("PATH=%s", userMgrObjBasePath));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001026 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301027 }
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001028
1029 std::memset(userInfo->userName, 0, sizeof(userInfo->userName));
1030 std::memcpy(userInfo->userName,
1031 static_cast<const void*>(userName.data()), userName.size());
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301032 userInfo->userInSystem = true;
1033 }
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001034 else if (oldUser != userName && validUser)
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301035 {
1036 try
1037 {
1038 // User rename
1039 auto method = bus.new_method_call(
1040 getUserServiceName().c_str(), userMgrObjBasePath,
1041 userMgrInterface, renameUserMethod);
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001042 method.append(oldUser.c_str(), userName.c_str());
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301043 auto reply = bus.call(method);
1044 }
1045 catch (const sdbusplus::exception::SdBusError& e)
1046 {
1047 log<level::DEBUG>("Failed to excute method",
1048 entry("METHOD=%s", renameUserMethod),
1049 entry("PATH=%s", userMgrObjBasePath));
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001050 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301051 }
1052 std::fill(static_cast<uint8_t*>(userInfo->userName),
1053 static_cast<uint8_t*>(userInfo->userName) +
1054 sizeof(userInfo->userName),
1055 0);
jayaprakash Mutyala76363302020-02-14 23:50:38 +00001056
1057 std::memset(userInfo->userName, 0, sizeof(userInfo->userName));
1058 std::memcpy(userInfo->userName,
1059 static_cast<const void*>(userName.data()), userName.size());
1060
1061 ipmiRenameUserEntryPassword(oldUser, userName);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301062 userInfo->userInSystem = true;
1063 }
1064 else if (!validUser)
1065 {
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001066 return ccInvalidFieldRequest;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301067 }
1068 try
1069 {
1070 writeUserData();
1071 }
1072 catch (const std::exception& e)
1073 {
1074 log<level::DEBUG>("Write user data failed");
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001075 return ccUnspecifiedError;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301076 }
NITIN SHARMAb541a5a2019-07-18 12:46:59 +00001077 return ccSuccess;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301078}
1079
1080static constexpr const char* jsonUserName = "user_name";
1081static constexpr const char* jsonPriv = "privilege";
1082static constexpr const char* jsonIpmiEnabled = "ipmi_enabled";
1083static constexpr const char* jsonLinkAuthEnabled = "link_auth_enabled";
1084static constexpr const char* jsonAccCallbk = "access_callback";
1085static constexpr const char* jsonUserEnabled = "user_enabled";
1086static constexpr const char* jsonUserInSys = "user_in_system";
1087static constexpr const char* jsonFixedUser = "fixed_user_name";
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001088static constexpr const char* payloadEnabledStr = "payload_enabled";
1089static constexpr const char* stdPayloadStr = "std_payload";
1090static constexpr const char* oemPayloadStr = "OEM_payload";
1091
1092/** @brief to construct a JSON object from the given payload access details.
1093 *
1094 * @param[in] stdPayload - stdPayloadEnables1 in a 2D-array. (input)
1095 * @param[in] oemPayload - oemPayloadEnables1 in a 2D-array. (input)
1096 *
1097 * @details Sample output JSON object format :
1098 * "payload_enabled":{
1099 * "OEM_payload0":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1100 * "OEM_payload1":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1101 * "OEM_payload2":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1102 * "OEM_payload3":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1103 * "OEM_payload4":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1104 * "OEM_payload5":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1105 * "OEM_payload6":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1106 * "OEM_payload7":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1107 * "std_payload0":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1108 * "std_payload1":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1109 * "std_payload2":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1110 * "std_payload3":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1111 * "std_payload4":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1112 * "std_payload5":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1113 * "std_payload6":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1114 * "std_payload7":[false,...<repeat 'ipmiMaxChannels - 1' times>],
1115 * }
1116 */
1117static const Json constructJsonPayloadEnables(
1118 const std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>&
1119 stdPayload,
1120 const std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>&
1121 oemPayload)
1122{
1123 Json jsonPayloadEnabled;
1124
1125 for (auto payloadNum = 0; payloadNum < payloadsPerByte; payloadNum++)
1126 {
1127 std::ostringstream stdPayloadStream;
1128 std::ostringstream oemPayloadStream;
1129
1130 stdPayloadStream << stdPayloadStr << payloadNum;
1131 oemPayloadStream << oemPayloadStr << payloadNum;
1132
1133 jsonPayloadEnabled.push_back(Json::object_t::value_type(
1134 stdPayloadStream.str(), stdPayload[payloadNum]));
1135
1136 jsonPayloadEnabled.push_back(Json::object_t::value_type(
1137 oemPayloadStream.str(), oemPayload[payloadNum]));
1138 }
1139 return jsonPayloadEnabled;
1140}
1141
1142void UserAccess::readPayloadAccessFromUserInfo(
1143 const UserInfo& userInfo,
1144 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>& stdPayload,
1145 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>& oemPayload)
1146{
1147 for (auto payloadNum = 0; payloadNum < payloadsPerByte; payloadNum++)
1148 {
1149 for (auto chIndex = 0; chIndex < ipmiMaxChannels; chIndex++)
1150 {
1151 stdPayload[payloadNum][chIndex] =
1152 userInfo.payloadAccess[chIndex].stdPayloadEnables1[payloadNum];
1153
1154 oemPayload[payloadNum][chIndex] =
1155 userInfo.payloadAccess[chIndex].oemPayloadEnables1[payloadNum];
1156 }
1157 }
1158}
1159
1160void UserAccess::updatePayloadAccessInUserInfo(
1161 const std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>&
1162 stdPayload,
1163 const std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>&
1164 oemPayload,
1165 UserInfo& userInfo)
1166{
1167 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1168 {
1169 // Ensure that reserved/unsupported payloads are marked to zero.
1170 userInfo.payloadAccess[chIndex].stdPayloadEnables1.reset();
1171 userInfo.payloadAccess[chIndex].oemPayloadEnables1.reset();
1172 userInfo.payloadAccess[chIndex].stdPayloadEnables2Reserved.reset();
1173 userInfo.payloadAccess[chIndex].oemPayloadEnables2Reserved.reset();
1174 // Update SOL status as it is the only supported payload currently.
1175 userInfo.payloadAccess[chIndex]
1176 .stdPayloadEnables1[static_cast<uint8_t>(ipmi::PayloadType::SOL)] =
1177 stdPayload[static_cast<uint8_t>(ipmi::PayloadType::SOL)][chIndex];
1178 }
1179}
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301180
1181void UserAccess::readUserData()
1182{
1183 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
1184 userLock{*userMutex};
1185
1186 std::ifstream iUsrData(ipmiUserDataFile, std::ios::in | std::ios::binary);
1187 if (!iUsrData.good())
1188 {
1189 log<level::ERR>("Error in reading IPMI user data file");
1190 throw std::ios_base::failure("Error opening IPMI user data file");
1191 }
1192
1193 Json jsonUsersTbl = Json::array();
1194 jsonUsersTbl = Json::parse(iUsrData, nullptr, false);
1195
1196 if (jsonUsersTbl.size() != ipmiMaxUsers)
1197 {
1198 log<level::ERR>(
1199 "Error in reading IPMI user data file - User count issues");
1200 throw std::runtime_error(
1201 "Corrupted IPMI user data file - invalid user count");
1202 }
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001203
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301204 // user index 0 is reserved, starts with 1
1205 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex)
1206 {
1207 Json userInfo = jsonUsersTbl[usrIndex - 1]; // json array starts with 0.
1208 if (userInfo.is_null())
1209 {
1210 log<level::ERR>("Error in reading IPMI user data file - "
1211 "user info corrupted");
1212 throw std::runtime_error(
1213 "Corrupted IPMI user data file - invalid user info");
1214 }
1215 std::string userName = userInfo[jsonUserName].get<std::string>();
1216 std::strncpy(reinterpret_cast<char*>(usersTbl.user[usrIndex].userName),
1217 userName.c_str(), ipmiMaxUserName);
1218
1219 std::vector<std::string> privilege =
1220 userInfo[jsonPriv].get<std::vector<std::string>>();
1221 std::vector<bool> ipmiEnabled =
1222 userInfo[jsonIpmiEnabled].get<std::vector<bool>>();
1223 std::vector<bool> linkAuthEnabled =
1224 userInfo[jsonLinkAuthEnabled].get<std::vector<bool>>();
1225 std::vector<bool> accessCallback =
1226 userInfo[jsonAccCallbk].get<std::vector<bool>>();
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001227
1228 // Payload Enables Processing.
Saravanan Palanisamyc86045c2019-07-26 22:52:40 +00001229 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>
1230 stdPayload = {};
1231 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>
1232 oemPayload = {};
1233 try
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001234 {
Saravanan Palanisamyc86045c2019-07-26 22:52:40 +00001235 const auto jsonPayloadEnabled = userInfo.at(payloadEnabledStr);
1236 for (auto payloadNum = 0; payloadNum < payloadsPerByte;
1237 payloadNum++)
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001238 {
Saravanan Palanisamyc86045c2019-07-26 22:52:40 +00001239 std::ostringstream stdPayloadStream;
1240 std::ostringstream oemPayloadStream;
1241
1242 stdPayloadStream << stdPayloadStr << payloadNum;
1243 oemPayloadStream << oemPayloadStr << payloadNum;
1244
1245 stdPayload[payloadNum] =
1246 jsonPayloadEnabled[stdPayloadStream.str()]
1247 .get<std::array<bool, ipmiMaxChannels>>();
1248 oemPayload[payloadNum] =
1249 jsonPayloadEnabled[oemPayloadStream.str()]
1250 .get<std::array<bool, ipmiMaxChannels>>();
1251
1252 if (stdPayload[payloadNum].size() != ipmiMaxChannels ||
1253 oemPayload[payloadNum].size() != ipmiMaxChannels)
1254 {
1255 log<level::ERR>("Error in reading IPMI user data file - "
1256 "payload properties corrupted");
1257 throw std::runtime_error(
1258 "Corrupted IPMI user data file - payload properties");
1259 }
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001260 }
1261 }
Saravanan Palanisamyc86045c2019-07-26 22:52:40 +00001262 catch (Json::out_of_range& e)
1263 {
1264 // Key not found in 'userInfo'; possibly an old JSON file. Use
1265 // default values for all payloads, and SOL payload default is true.
1266 stdPayload[static_cast<uint8_t>(ipmi::PayloadType::SOL)].fill(true);
1267 }
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001268
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301269 if (privilege.size() != ipmiMaxChannels ||
1270 ipmiEnabled.size() != ipmiMaxChannels ||
1271 linkAuthEnabled.size() != ipmiMaxChannels ||
1272 accessCallback.size() != ipmiMaxChannels)
1273 {
1274 log<level::ERR>("Error in reading IPMI user data file - "
1275 "properties corrupted");
1276 throw std::runtime_error(
1277 "Corrupted IPMI user data file - properties");
1278 }
1279 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1280 {
1281 usersTbl.user[usrIndex].userPrivAccess[chIndex].privilege =
1282 static_cast<uint8_t>(
1283 convertToIPMIPrivilege(privilege[chIndex]));
1284 usersTbl.user[usrIndex].userPrivAccess[chIndex].ipmiEnabled =
1285 ipmiEnabled[chIndex];
1286 usersTbl.user[usrIndex].userPrivAccess[chIndex].linkAuthEnabled =
1287 linkAuthEnabled[chIndex];
1288 usersTbl.user[usrIndex].userPrivAccess[chIndex].accessCallback =
1289 accessCallback[chIndex];
1290 }
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001291 updatePayloadAccessInUserInfo(stdPayload, oemPayload,
1292 usersTbl.user[usrIndex]);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301293 usersTbl.user[usrIndex].userEnabled =
1294 userInfo[jsonUserEnabled].get<bool>();
1295 usersTbl.user[usrIndex].userInSystem =
1296 userInfo[jsonUserInSys].get<bool>();
1297 usersTbl.user[usrIndex].fixedUserName =
1298 userInfo[jsonFixedUser].get<bool>();
1299 }
1300
1301 log<level::DEBUG>("User data read from IPMI data file");
1302 iUsrData.close();
1303 // Update the timestamp
1304 fileLastUpdatedTime = getUpdatedFileTime();
1305 return;
1306}
1307
1308void UserAccess::writeUserData()
1309{
1310 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
1311 userLock{*userMutex};
1312
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301313 Json jsonUsersTbl = Json::array();
1314 // user index 0 is reserved, starts with 1
1315 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex)
1316 {
1317 Json jsonUserInfo;
1318 jsonUserInfo[jsonUserName] = std::string(
1319 reinterpret_cast<char*>(usersTbl.user[usrIndex].userName), 0,
1320 ipmiMaxUserName);
1321 std::vector<std::string> privilege(ipmiMaxChannels);
1322 std::vector<bool> ipmiEnabled(ipmiMaxChannels);
1323 std::vector<bool> linkAuthEnabled(ipmiMaxChannels);
1324 std::vector<bool> accessCallback(ipmiMaxChannels);
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001325
1326 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>
1327 stdPayload;
1328 std::array<std::array<bool, ipmiMaxChannels>, payloadsPerByte>
1329 oemPayload;
1330
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301331 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; chIndex++)
1332 {
1333 privilege[chIndex] =
1334 convertToSystemPrivilege(static_cast<CommandPrivilege>(
1335 usersTbl.user[usrIndex].userPrivAccess[chIndex].privilege));
1336 ipmiEnabled[chIndex] =
1337 usersTbl.user[usrIndex].userPrivAccess[chIndex].ipmiEnabled;
1338 linkAuthEnabled[chIndex] =
1339 usersTbl.user[usrIndex].userPrivAccess[chIndex].linkAuthEnabled;
1340 accessCallback[chIndex] =
1341 usersTbl.user[usrIndex].userPrivAccess[chIndex].accessCallback;
1342 }
1343 jsonUserInfo[jsonPriv] = privilege;
1344 jsonUserInfo[jsonIpmiEnabled] = ipmiEnabled;
1345 jsonUserInfo[jsonLinkAuthEnabled] = linkAuthEnabled;
1346 jsonUserInfo[jsonAccCallbk] = accessCallback;
1347 jsonUserInfo[jsonUserEnabled] = usersTbl.user[usrIndex].userEnabled;
1348 jsonUserInfo[jsonUserInSys] = usersTbl.user[usrIndex].userInSystem;
1349 jsonUserInfo[jsonFixedUser] = usersTbl.user[usrIndex].fixedUserName;
Saravanan Palanisamy77381f12019-05-15 22:33:17 +00001350
1351 readPayloadAccessFromUserInfo(usersTbl.user[usrIndex], stdPayload,
1352 oemPayload);
1353 Json jsonPayloadEnabledInfo =
1354 constructJsonPayloadEnables(stdPayload, oemPayload);
1355 jsonUserInfo[payloadEnabledStr] = jsonPayloadEnabledInfo;
1356
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301357 jsonUsersTbl.push_back(jsonUserInfo);
1358 }
1359
Richard Marian Thomaiyar687df402019-05-09 00:16:53 +05301360 static std::string tmpFile{std::string(ipmiUserDataFile) + "_tmp"};
1361 int fd = open(tmpFile.c_str(), O_CREAT | O_WRONLY | O_TRUNC | O_SYNC,
1362 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
1363 if (fd < 0)
1364 {
1365 log<level::ERR>("Error in creating temporary IPMI user data file");
1366 throw std::ios_base::failure(
1367 "Error in creating temporary IPMI user data file");
1368 }
1369 const auto& writeStr = jsonUsersTbl.dump();
1370 if (write(fd, writeStr.c_str(), writeStr.size()) !=
1371 static_cast<ssize_t>(writeStr.size()))
1372 {
1373 close(fd);
1374 log<level::ERR>("Error in writing temporary IPMI user data file");
1375 throw std::ios_base::failure(
1376 "Error in writing temporary IPMI user data file");
1377 }
1378 close(fd);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301379
1380 if (std::rename(tmpFile.c_str(), ipmiUserDataFile) != 0)
1381 {
1382 log<level::ERR>("Error in renaming temporary IPMI user data file");
1383 throw std::runtime_error("Error in renaming IPMI user data file");
1384 }
1385 // Update the timestamp
1386 fileLastUpdatedTime = getUpdatedFileTime();
1387 return;
1388}
1389
1390bool UserAccess::addUserEntry(const std::string& userName,
1391 const std::string& sysPriv, const bool& enabled)
1392{
1393 UsersTbl* userData = getUsersTblPtr();
1394 size_t freeIndex = 0xFF;
1395 // user index 0 is reserved, starts with 1
1396 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex)
1397 {
1398 std::string curName(
1399 reinterpret_cast<char*>(userData->user[usrIndex].userName), 0,
1400 ipmiMaxUserName);
1401 if (userName == curName)
1402 {
1403 log<level::DEBUG>("User name exists",
1404 entry("USER_NAME=%s", userName.c_str()));
1405 return false; // user name exists.
1406 }
1407
1408 if ((!userData->user[usrIndex].userInSystem) &&
1409 (userData->user[usrIndex].userName[0] == '\0') &&
1410 (freeIndex == 0xFF))
1411 {
1412 freeIndex = usrIndex;
1413 }
1414 }
1415 if (freeIndex == 0xFF)
1416 {
1417 log<level::ERR>("No empty slots found");
1418 return false;
1419 }
1420 std::strncpy(reinterpret_cast<char*>(userData->user[freeIndex].userName),
1421 userName.c_str(), ipmiMaxUserName);
1422 uint8_t priv =
1423 static_cast<uint8_t>(UserAccess::convertToIPMIPrivilege(sysPriv)) &
1424 privMask;
1425 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1426 {
1427 userData->user[freeIndex].userPrivAccess[chIndex].privilege = priv;
1428 userData->user[freeIndex].userPrivAccess[chIndex].ipmiEnabled = true;
1429 userData->user[freeIndex].userPrivAccess[chIndex].linkAuthEnabled =
1430 true;
1431 userData->user[freeIndex].userPrivAccess[chIndex].accessCallback = true;
1432 }
1433 userData->user[freeIndex].userInSystem = true;
1434 userData->user[freeIndex].userEnabled = enabled;
1435
1436 return true;
1437}
1438
1439void UserAccess::deleteUserIndex(const size_t& usrIdx)
1440{
1441 UsersTbl* userData = getUsersTblPtr();
1442
1443 std::string userName(
1444 reinterpret_cast<char*>(userData->user[usrIdx].userName), 0,
1445 ipmiMaxUserName);
1446 ipmiClearUserEntryPassword(userName);
1447 std::fill(static_cast<uint8_t*>(userData->user[usrIdx].userName),
1448 static_cast<uint8_t*>(userData->user[usrIdx].userName) +
1449 sizeof(userData->user[usrIdx].userName),
1450 0);
1451 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1452 {
1453 userData->user[usrIdx].userPrivAccess[chIndex].privilege = privNoAccess;
1454 userData->user[usrIdx].userPrivAccess[chIndex].ipmiEnabled = false;
1455 userData->user[usrIdx].userPrivAccess[chIndex].linkAuthEnabled = false;
1456 userData->user[usrIdx].userPrivAccess[chIndex].accessCallback = false;
1457 }
1458 userData->user[usrIdx].userInSystem = false;
1459 userData->user[usrIdx].userEnabled = false;
1460 return;
1461}
1462
1463void UserAccess::checkAndReloadUserData()
1464{
1465 std::time_t updateTime = getUpdatedFileTime();
1466 if (updateTime != fileLastUpdatedTime || updateTime == -EIO)
1467 {
1468 std::fill(reinterpret_cast<uint8_t*>(&usersTbl),
1469 reinterpret_cast<uint8_t*>(&usersTbl) + sizeof(usersTbl), 0);
1470 readUserData();
1471 }
1472 return;
1473}
1474
1475UsersTbl* UserAccess::getUsersTblPtr()
1476{
1477 // reload data before using it.
1478 checkAndReloadUserData();
1479 return &usersTbl;
1480}
1481
1482void UserAccess::getSystemPrivAndGroups()
1483{
1484 std::map<std::string, PrivAndGroupType> properties;
1485 try
1486 {
1487 auto method = bus.new_method_call(
1488 getUserServiceName().c_str(), userMgrObjBasePath,
1489 dBusPropertiesInterface, getAllPropertiesMethod);
1490 method.append(userMgrInterface);
1491
1492 auto reply = bus.call(method);
1493 reply.read(properties);
1494 }
1495 catch (const sdbusplus::exception::SdBusError& e)
1496 {
1497 log<level::DEBUG>("Failed to excute method",
1498 entry("METHOD=%s", getAllPropertiesMethod),
1499 entry("PATH=%s", userMgrObjBasePath));
1500 return;
1501 }
1502 for (const auto& t : properties)
1503 {
1504 auto key = t.first;
1505 if (key == allPrivProperty)
1506 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001507 availablePrivileges = std::get<std::vector<std::string>>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301508 }
1509 else if (key == allGrpProperty)
1510 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001511 availableGroups = std::get<std::vector<std::string>>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301512 }
1513 }
1514 // TODO: Implement Supported Privilege & Groups verification logic
1515 return;
1516}
1517
1518std::time_t UserAccess::getUpdatedFileTime()
1519{
1520 struct stat fileStat;
1521 if (stat(ipmiUserDataFile, &fileStat) != 0)
1522 {
1523 log<level::DEBUG>("Error in getting last updated time stamp");
1524 return -EIO;
1525 }
1526 return fileStat.st_mtime;
1527}
1528
1529void UserAccess::getUserProperties(const DbusUserObjProperties& properties,
1530 std::vector<std::string>& usrGrps,
1531 std::string& usrPriv, bool& usrEnabled)
1532{
1533 for (const auto& t : properties)
1534 {
1535 std::string key = t.first;
1536 if (key == userPrivProperty)
1537 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001538 usrPriv = std::get<std::string>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301539 }
1540 else if (key == userGrpProperty)
1541 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001542 usrGrps = std::get<std::vector<std::string>>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301543 }
1544 else if (key == userEnabledProperty)
1545 {
Vernon Maueryf442e112019-04-09 11:44:36 -07001546 usrEnabled = std::get<bool>(t.second);
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301547 }
1548 }
1549 return;
1550}
1551
1552int UserAccess::getUserObjProperties(const DbusUserObjValue& userObjs,
1553 std::vector<std::string>& usrGrps,
1554 std::string& usrPriv, bool& usrEnabled)
1555{
1556 auto usrObj = userObjs.find(usersInterface);
1557 if (usrObj != userObjs.end())
1558 {
1559 getUserProperties(usrObj->second, usrGrps, usrPriv, usrEnabled);
1560 return 0;
1561 }
1562 return -EIO;
1563}
1564
arun-pmbbe728c2020-01-10 15:18:04 +05301565void UserAccess::cacheUserDataFile()
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301566{
1567 boost::interprocess::scoped_lock<boost::interprocess::named_recursive_mutex>
1568 userLock{*userMutex};
1569 try
1570 {
1571 readUserData();
1572 }
1573 catch (const std::ios_base::failure& e)
1574 { // File is empty, create it for the first time
1575 std::fill(reinterpret_cast<uint8_t*>(&usersTbl),
1576 reinterpret_cast<uint8_t*>(&usersTbl) + sizeof(usersTbl), 0);
1577 // user index 0 is reserved, starts with 1
1578 for (size_t userIndex = 1; userIndex <= ipmiMaxUsers; ++userIndex)
1579 {
1580 for (size_t chIndex = 0; chIndex < ipmiMaxChannels; ++chIndex)
1581 {
1582 usersTbl.user[userIndex].userPrivAccess[chIndex].privilege =
1583 privNoAccess;
Saravanan Palanisamy92d81192019-08-07 18:00:04 +00001584 usersTbl.user[userIndex]
1585 .payloadAccess[chIndex]
1586 .stdPayloadEnables1[static_cast<uint8_t>(
1587 ipmi::PayloadType::SOL)] = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301588 }
1589 }
1590 writeUserData();
1591 }
arun-pmbbe728c2020-01-10 15:18:04 +05301592 sigHndlrLock = boost::interprocess::file_lock(ipmiUserDataFile);
1593 // Register it for single object and single process either netipimd /
1594 // host-ipmid
1595 if (userUpdatedSignal == nullptr && sigHndlrLock.try_lock())
1596 {
1597 log<level::DEBUG>("Registering signal handler");
1598 userUpdatedSignal = std::make_unique<sdbusplus::bus::match_t>(
1599 bus,
1600 sdbusplus::bus::match::rules::type::signal() +
1601 sdbusplus::bus::match::rules::interface(dBusObjManager) +
1602 sdbusplus::bus::match::rules::path(userMgrObjBasePath),
1603 [&](sdbusplus::message::message& msg) {
1604 userUpdatedSignalHandler(*this, msg);
1605 });
1606 userMgrRenamedSignal = std::make_unique<sdbusplus::bus::match_t>(
1607 bus,
1608 sdbusplus::bus::match::rules::type::signal() +
1609 sdbusplus::bus::match::rules::interface(userMgrInterface) +
1610 sdbusplus::bus::match::rules::path(userMgrObjBasePath),
1611 [&](sdbusplus::message::message& msg) {
1612 userUpdatedSignalHandler(*this, msg);
1613 });
1614 userPropertiesSignal = std::make_unique<sdbusplus::bus::match_t>(
1615 bus,
1616 sdbusplus::bus::match::rules::type::signal() +
1617 sdbusplus::bus::match::rules::path_namespace(userObjBasePath) +
1618 sdbusplus::bus::match::rules::interface(
1619 dBusPropertiesInterface) +
1620 sdbusplus::bus::match::rules::member(propertiesChangedSignal) +
1621 sdbusplus::bus::match::rules::argN(0, usersInterface),
1622 [&](sdbusplus::message::message& msg) {
1623 userUpdatedSignalHandler(*this, msg);
1624 });
1625 signalHndlrObject = true;
1626 }
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301627 std::map<DbusUserObjPath, DbusUserObjValue> managedObjs;
1628 try
1629 {
1630 auto method = bus.new_method_call(getUserServiceName().c_str(),
1631 userMgrObjBasePath, dBusObjManager,
1632 getManagedObjectsMethod);
1633 auto reply = bus.call(method);
1634 reply.read(managedObjs);
1635 }
1636 catch (const sdbusplus::exception::SdBusError& e)
1637 {
1638 log<level::DEBUG>("Failed to excute method",
1639 entry("METHOD=%s", getSubTreeMethod),
1640 entry("PATH=%s", userMgrObjBasePath));
1641 return;
1642 }
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301643 bool updateRequired = false;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301644 UsersTbl* userData = &usersTbl;
1645 // user index 0 is reserved, starts with 1
1646 for (size_t usrIdx = 1; usrIdx <= ipmiMaxUsers; ++usrIdx)
1647 {
1648 if ((userData->user[usrIdx].userInSystem) &&
1649 (userData->user[usrIdx].userName[0] != '\0'))
1650 {
1651 std::vector<std::string> usrGrps;
1652 std::string usrPriv;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301653
1654 std::string userName(
1655 reinterpret_cast<char*>(userData->user[usrIdx].userName), 0,
1656 ipmiMaxUserName);
1657 std::string usersPath =
1658 std::string(userObjBasePath) + "/" + userName;
1659
1660 auto usrObj = managedObjs.find(usersPath);
1661 if (usrObj != managedObjs.end())
1662 {
Chen,Yugang0e862fa2019-09-06 11:03:05 +08001663 bool usrEnabled = false;
Patrick Venture3a697ad2019-08-19 11:12:05 -07001664
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301665 // User exist. Lets check and update other fileds
1666 getUserObjProperties(usrObj->second, usrGrps, usrPriv,
1667 usrEnabled);
1668 if (std::find(usrGrps.begin(), usrGrps.end(), ipmiGrpName) ==
1669 usrGrps.end())
1670 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301671 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301672 // Group "ipmi" is removed so lets remove user in IPMI
1673 deleteUserIndex(usrIdx);
1674 }
1675 else
1676 {
1677 // Group "ipmi" is present so lets update other properties
1678 // in IPMI
1679 uint8_t priv =
1680 UserAccess::convertToIPMIPrivilege(usrPriv) & privMask;
1681 // Update all channels priv, only if it is not equivalent to
1682 // getUsrMgmtSyncIndex()
1683 if (userData->user[usrIdx]
1684 .userPrivAccess[getUsrMgmtSyncIndex()]
1685 .privilege != priv)
1686 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301687 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301688 for (size_t chIndex = 0; chIndex < ipmiMaxChannels;
1689 ++chIndex)
1690 {
1691 userData->user[usrIdx]
1692 .userPrivAccess[chIndex]
1693 .privilege = priv;
1694 }
1695 }
1696 if (userData->user[usrIdx].userEnabled != usrEnabled)
1697 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301698 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301699 userData->user[usrIdx].userEnabled = usrEnabled;
1700 }
1701 }
1702
1703 // We are done with this obj. lets delete from MAP
1704 managedObjs.erase(usrObj);
1705 }
1706 else
1707 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301708 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301709 deleteUserIndex(usrIdx);
1710 }
1711 }
1712 }
1713
1714 // Walk through remnaining managedObj users list
1715 // Add them to ipmi data base
1716 for (const auto& usrObj : managedObjs)
1717 {
1718 std::vector<std::string> usrGrps;
1719 std::string usrPriv, userName;
Chen,Yugang0e862fa2019-09-06 11:03:05 +08001720 bool usrEnabled = false;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301721 std::string usrObjPath = std::string(usrObj.first);
1722 if (getUserNameFromPath(usrObj.first.str, userName) != 0)
1723 {
1724 log<level::ERR>("Error in user object path");
1725 continue;
1726 }
1727 getUserObjProperties(usrObj.second, usrGrps, usrPriv, usrEnabled);
1728 // Add 'ipmi' group users
1729 if (std::find(usrGrps.begin(), usrGrps.end(), ipmiGrpName) !=
1730 usrGrps.end())
1731 {
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301732 updateRequired = true;
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301733 // CREATE NEW USER
1734 if (true != addUserEntry(userName, usrPriv, usrEnabled))
1735 {
1736 break;
1737 }
1738 }
1739 }
1740
Richard Marian Thomaiyare004e222019-05-09 00:37:55 +05301741 if (updateRequired)
1742 {
1743 // All userData slots update done. Lets write the data
1744 writeUserData();
1745 }
Richard Marian Thomaiyar5a6b6362018-03-12 23:42:34 +05301746
1747 return;
1748}
1749} // namespace ipmi