blob: 358c4efb9f656315a5705e84933a677f05616a86 [file] [log] [blame]
Kuiying Wang8f706212020-12-16 18:59:24 +08001/*
2// Copyright (c) 2020 Intel Corporation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
16#pragma once
17#include "config.h"
18
19#include <openssl/evp.h>
20#include <openssl/hmac.h>
21#include <openssl/sha.h>
22
23#include <nlohmann/json.hpp>
24#include <sdbusplus/asio/object_server.hpp>
25#include <sdbusplus/server.hpp>
26#include <xyz/openbmc_project/BIOSConfig/Password/server.hpp>
27
28#include <filesystem>
29#include <string>
30
31namespace bios_config_pwd
32{
Kuiying Wang8f706212020-12-16 18:59:24 +080033static constexpr auto objectPathPwd =
34 "/xyz/openbmc_project/bios_config/password";
Kuiying Wang8f706212020-12-16 18:59:24 +080035constexpr auto biosSeedFile = "seedData";
Ayushi Smriti96e72ec2021-05-20 13:44:12 +053036constexpr uint8_t maxHashSize = 64;
37constexpr uint8_t maxSeedSize = 32;
38constexpr uint8_t maxPasswordLen = 32;
Snehalatha Venkatesh2f7ba732021-09-30 10:25:32 +000039constexpr int iterValue = 1000;
Kuiying Wang8f706212020-12-16 18:59:24 +080040
41using Base = sdbusplus::xyz::openbmc_project::BIOSConfig::server::Password;
42namespace fs = std::filesystem;
43
44/** @class Password
45 *
46 * @brief Implements the BIOS Password
47 */
48class Password : public Base
49{
50 public:
51 Password() = delete;
52 ~Password() = default;
53 Password(const Password&) = delete;
54 Password& operator=(const Password&) = delete;
55 Password(Password&&) = delete;
56 Password& operator=(Password&&) = delete;
57
58 /** @brief Constructs Password object.
59 *
60 * @param[in] objectServer - object server
61 * @param[in] systemBus - bus connection
62 */
63 Password(sdbusplus::asio::object_server& objectServer,
64 std::shared_ptr<sdbusplus::asio::connection>& systemBus);
65
66 /** @brief Set the BIOS attribute with a new value, the new value is added
67 * to the PendingAttribute.
68 *
69 * @param[in] userName - User name - user / admin.
70 * @param[in] currentPassword - Current user/ admin Password.
71 * @param[in] newPassword - New user/ admin Password.
72 */
73 void changePassword(std::string userName, std::string currentPassword,
74 std::string newPassword) override;
75
76 private:
77 void verifyPassword(std::string userName, std::string currentPassword,
78 std::string newPassword);
yesd0f034a2022-12-29 18:35:37 +053079 bool compareDigest(const EVP_MD* digestFunc, size_t digestLen,
80 const std::array<uint8_t, maxHashSize>& expected,
81 const std::array<uint8_t, maxSeedSize>& seed,
82 const std::string& rawData);
Ayushi Smriti96e72ec2021-05-20 13:44:12 +053083 bool isMatch(const std::array<uint8_t, maxHashSize>& expected,
84 const std::array<uint8_t, maxSeedSize>& seed,
George Liu616f9222021-12-29 14:25:39 +080085 const std::string& rawData, const std::string& algo);
Smriti-Ayushib3f7a792023-05-09 15:03:24 +053086 bool getParam(std::array<uint8_t, maxHashSize>& orgUsrPwdHash,
87 std::array<uint8_t, maxHashSize>& orgAdminPwdHash,
88 std::array<uint8_t, maxSeedSize>& seed,
89 std::string& hashAlgo);
yes8c22d072023-03-22 15:11:26 +053090 bool verifyIntegrityCheck(std::string& newPassword,
91 std::array<uint8_t, maxSeedSize>& seed,
92 unsigned int mdLen, const EVP_MD* digestFunc);
Kuiying Wang8f706212020-12-16 18:59:24 +080093 sdbusplus::asio::object_server& objServer;
94 std::shared_ptr<sdbusplus::asio::connection>& systemBus;
Kuiying Wang8f706212020-12-16 18:59:24 +080095 std::filesystem::path seedFile;
Ayushi Smriti96e72ec2021-05-20 13:44:12 +053096 std::array<uint8_t, maxHashSize> mNewPwdHash;
Kuiying Wang8f706212020-12-16 18:59:24 +080097};
98
99} // namespace bios_config_pwd