John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 1 | #include "bios_integer_attribute.hpp" |
| 2 | |
Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 3 | #include "common/utils.hpp" |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 4 | |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 5 | #include <phosphor-logging/lg2.hpp> |
| 6 | |
| 7 | PHOSPHOR_LOG2_USING; |
| 8 | |
Brad Bishop | 5079ac4 | 2021-08-19 18:35:06 -0400 | [diff] [blame] | 9 | using namespace pldm::utils; |
| 10 | |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 11 | namespace pldm |
| 12 | { |
| 13 | namespace responder |
| 14 | { |
| 15 | namespace bios |
| 16 | { |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 17 | BIOSIntegerAttribute::BIOSIntegerAttribute(const Json& entry, |
| 18 | DBusHandler* const dbusHandler) : |
| 19 | BIOSAttribute(entry, dbusHandler) |
| 20 | { |
| 21 | std::string attr = entry.at("attribute_name"); |
| 22 | |
| 23 | integerInfo.lowerBound = entry.at("lower_bound"); |
| 24 | integerInfo.upperBound = entry.at("upper_bound"); |
| 25 | integerInfo.scalarIncrement = entry.at("scalar_increment"); |
| 26 | integerInfo.defaultValue = entry.at("default_value"); |
| 27 | pldm_bios_table_attr_entry_integer_info info = { |
| 28 | 0, |
| 29 | readOnly, |
| 30 | integerInfo.lowerBound, |
| 31 | integerInfo.upperBound, |
| 32 | integerInfo.scalarIncrement, |
| 33 | integerInfo.defaultValue, |
| 34 | }; |
| 35 | const char* errmsg = nullptr; |
| 36 | auto rc = pldm_bios_table_attr_entry_integer_info_check(&info, &errmsg); |
| 37 | if (rc != PLDM_SUCCESS) |
| 38 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 39 | error( |
Riya Dixit | 797f338 | 2023-08-22 22:27:51 -0500 | [diff] [blame] | 40 | "Wrong field for integer attribute, ATTRIBUTE_NAME={ATTR_NAME} ERRMSG= {ERR_MSG} LOWER_BOUND={LOW_BOUND} UPPER_BOUND={UPPER_BOUND} DEFAULT_VALUE={DEF_VAL} SCALAR_INCREMENT={SCALAR_INCREMENT}", |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 41 | "ATTR_NAME", attr.c_str(), "ERR_MSG", errmsg, "LOW_BOUND", |
| 42 | integerInfo.lowerBound, "UPPER_BOUND", integerInfo.upperBound, |
| 43 | "DEF_VAL", integerInfo.defaultValue, "SCALAR_INCREMENT", |
| 44 | integerInfo.scalarIncrement); |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 45 | throw std::invalid_argument("Wrong field for integer attribute"); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void BIOSIntegerAttribute::setAttrValueOnDbus( |
| 50 | const pldm_bios_attr_val_table_entry* attrValueEntry, |
| 51 | const pldm_bios_attr_table_entry*, const BIOSStringTable&) |
| 52 | { |
George Liu | 5bb9edb | 2021-08-05 20:10:32 +0800 | [diff] [blame] | 53 | if (!dBusMap.has_value()) |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 54 | { |
| 55 | return; |
| 56 | } |
| 57 | auto currentValue = |
| 58 | table::attribute_value::decodeIntegerEntry(attrValueEntry); |
| 59 | |
| 60 | if (dBusMap->propertyType == "uint8_t") |
| 61 | { |
| 62 | return dbusHandler->setDbusProperty(*dBusMap, |
| 63 | static_cast<uint8_t>(currentValue)); |
| 64 | } |
| 65 | else if (dBusMap->propertyType == "uint16_t") |
| 66 | { |
| 67 | return dbusHandler->setDbusProperty( |
| 68 | *dBusMap, static_cast<uint16_t>(currentValue)); |
| 69 | } |
| 70 | else if (dBusMap->propertyType == "int16_t") |
| 71 | { |
| 72 | return dbusHandler->setDbusProperty(*dBusMap, |
| 73 | static_cast<int16_t>(currentValue)); |
| 74 | } |
| 75 | else if (dBusMap->propertyType == "uint32_t") |
| 76 | { |
| 77 | return dbusHandler->setDbusProperty( |
| 78 | *dBusMap, static_cast<uint32_t>(currentValue)); |
| 79 | } |
| 80 | else if (dBusMap->propertyType == "int32_t") |
| 81 | { |
| 82 | return dbusHandler->setDbusProperty(*dBusMap, |
| 83 | static_cast<int32_t>(currentValue)); |
| 84 | } |
| 85 | else if (dBusMap->propertyType == "uint64_t") |
| 86 | { |
| 87 | return dbusHandler->setDbusProperty(*dBusMap, currentValue); |
| 88 | } |
| 89 | else if (dBusMap->propertyType == "int64_t") |
| 90 | { |
| 91 | return dbusHandler->setDbusProperty(*dBusMap, |
| 92 | static_cast<int64_t>(currentValue)); |
| 93 | } |
George Liu | aca897b | 2020-08-18 14:47:17 +0800 | [diff] [blame] | 94 | else if (dBusMap->propertyType == "double") |
| 95 | { |
| 96 | return dbusHandler->setDbusProperty(*dBusMap, |
| 97 | static_cast<double>(currentValue)); |
| 98 | } |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 99 | |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 100 | error("Unsupported property type on dbus: {DBUS_PROP}", "DBUS_PROP", |
| 101 | dBusMap->propertyType); |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 102 | throw std::invalid_argument("dbus type error"); |
| 103 | } |
| 104 | |
Tom Joseph | ca7b252 | 2020-11-18 12:27:11 +0530 | [diff] [blame] | 105 | void BIOSIntegerAttribute::constructEntry( |
| 106 | const BIOSStringTable& stringTable, Table& attrTable, Table& attrValueTable, |
| 107 | std::optional<std::variant<int64_t, std::string>> optAttributeValue) |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 108 | { |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 109 | pldm_bios_table_attr_entry_integer_info info = { |
| 110 | stringTable.findHandle(name), readOnly, |
| 111 | integerInfo.lowerBound, integerInfo.upperBound, |
| 112 | integerInfo.scalarIncrement, integerInfo.defaultValue, |
| 113 | }; |
| 114 | |
Patrick Williams | 6da4f91 | 2023-05-10 07:50:53 -0500 | [diff] [blame] | 115 | auto attrTableEntry = table::attribute::constructIntegerEntry(attrTable, |
| 116 | &info); |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 117 | |
Patrick Williams | 6da4f91 | 2023-05-10 07:50:53 -0500 | [diff] [blame] | 118 | auto [attrHandle, attrType, |
| 119 | _] = table::attribute::decodeHeader(attrTableEntry); |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 120 | |
Tom Joseph | ca7b252 | 2020-11-18 12:27:11 +0530 | [diff] [blame] | 121 | int64_t currentValue{}; |
| 122 | if (optAttributeValue.has_value()) |
| 123 | { |
| 124 | auto attributeValue = optAttributeValue.value(); |
| 125 | if (attributeValue.index() == 0) |
| 126 | { |
| 127 | currentValue = std::get<int64_t>(attributeValue); |
| 128 | } |
| 129 | else |
| 130 | { |
| 131 | currentValue = getAttrValue(); |
| 132 | } |
| 133 | } |
| 134 | else |
| 135 | { |
| 136 | currentValue = getAttrValue(); |
| 137 | } |
| 138 | |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 139 | table::attribute_value::constructIntegerEntry(attrValueTable, attrHandle, |
| 140 | attrType, currentValue); |
| 141 | } |
| 142 | |
Sampa Misra | 46ece06 | 2020-03-18 07:17:44 -0500 | [diff] [blame] | 143 | uint64_t BIOSIntegerAttribute::getAttrValue(const PropertyValue& propertyValue) |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 144 | { |
Andrew Geissler | 081d03b | 2020-12-14 18:53:33 -0600 | [diff] [blame] | 145 | uint64_t value = 0; |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 146 | if (dBusMap->propertyType == "uint8_t") |
| 147 | { |
| 148 | value = std::get<uint8_t>(propertyValue); |
| 149 | } |
| 150 | else if (dBusMap->propertyType == "uint16_t") |
| 151 | { |
| 152 | value = std::get<uint16_t>(propertyValue); |
| 153 | } |
| 154 | else if (dBusMap->propertyType == "int16_t") |
| 155 | { |
| 156 | value = std::get<int16_t>(propertyValue); |
| 157 | } |
| 158 | else if (dBusMap->propertyType == "uint32_t") |
| 159 | { |
| 160 | value = std::get<uint32_t>(propertyValue); |
| 161 | } |
| 162 | else if (dBusMap->propertyType == "int32_t") |
| 163 | { |
| 164 | value = std::get<int32_t>(propertyValue); |
| 165 | } |
| 166 | else if (dBusMap->propertyType == "uint64_t") |
| 167 | { |
| 168 | value = std::get<uint64_t>(propertyValue); |
| 169 | } |
| 170 | else if (dBusMap->propertyType == "int64_t") |
| 171 | { |
| 172 | value = std::get<int64_t>(propertyValue); |
| 173 | } |
George Liu | aca897b | 2020-08-18 14:47:17 +0800 | [diff] [blame] | 174 | else if (dBusMap->propertyType == "double") |
| 175 | { |
| 176 | value = std::get<double>(propertyValue); |
| 177 | } |
Andrew Geissler | 081d03b | 2020-12-14 18:53:33 -0600 | [diff] [blame] | 178 | else |
| 179 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 180 | error("Unsupported property type for getAttrValue: {DBUS_PROP}", |
| 181 | "DBUS_PROP", dBusMap->propertyType); |
Andrew Geissler | 081d03b | 2020-12-14 18:53:33 -0600 | [diff] [blame] | 182 | throw std::invalid_argument("dbus type error"); |
| 183 | } |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 184 | return value; |
| 185 | } |
| 186 | |
| 187 | uint64_t BIOSIntegerAttribute::getAttrValue() |
| 188 | { |
George Liu | 5bb9edb | 2021-08-05 20:10:32 +0800 | [diff] [blame] | 189 | if (!dBusMap.has_value()) |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 190 | { |
| 191 | return integerInfo.defaultValue; |
| 192 | } |
| 193 | |
| 194 | try |
| 195 | { |
| 196 | auto propertyValue = dbusHandler->getDbusPropertyVariant( |
| 197 | dBusMap->objectPath.c_str(), dBusMap->propertyName.c_str(), |
| 198 | dBusMap->interface.c_str()); |
| 199 | |
| 200 | return getAttrValue(propertyValue); |
| 201 | } |
| 202 | catch (const std::exception& e) |
| 203 | { |
Kamalkumar Patel | 58cbcaf | 2023-10-06 03:48:25 -0500 | [diff] [blame] | 204 | error( |
| 205 | "Error getting integer attribute '{ATTR}' from '{INTERFACE}': {ERROR}", |
| 206 | "ATTR", name, "INTERFACE", dBusMap->interface, "ERROR", e); |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 207 | return integerInfo.defaultValue; |
| 208 | } |
| 209 | } |
| 210 | |
Sampa Misra | 46ece06 | 2020-03-18 07:17:44 -0500 | [diff] [blame] | 211 | int BIOSIntegerAttribute::updateAttrVal(Table& newValue, uint16_t attrHdl, |
| 212 | uint8_t attrType, |
| 213 | const PropertyValue& newPropVal) |
| 214 | { |
| 215 | auto newVal = getAttrValue(newPropVal); |
| 216 | table::attribute_value::constructIntegerEntry(newValue, attrHdl, attrType, |
| 217 | newVal); |
| 218 | return PLDM_SUCCESS; |
| 219 | } |
| 220 | |
George Liu | 1244acf | 2020-08-14 09:11:11 +0800 | [diff] [blame] | 221 | void BIOSIntegerAttribute::generateAttributeEntry( |
| 222 | const std::variant<int64_t, std::string>& attributevalue, |
| 223 | Table& attrValueEntry) |
| 224 | { |
| 225 | attrValueEntry.resize(sizeof(pldm_bios_attr_val_table_entry) + |
| 226 | sizeof(int64_t) - 1); |
| 227 | |
| 228 | auto entry = reinterpret_cast<pldm_bios_attr_val_table_entry*>( |
| 229 | attrValueEntry.data()); |
| 230 | |
| 231 | int64_t value = std::get<int64_t>(attributevalue); |
| 232 | entry->attr_type = 3; |
| 233 | memcpy(entry->value, &value, sizeof(int64_t)); |
| 234 | } |
| 235 | |
John Wang | 95e6b3c | 2020-02-13 09:43:24 +0800 | [diff] [blame] | 236 | } // namespace bios |
| 237 | } // namespace responder |
Sampa Misra | 46ece06 | 2020-03-18 07:17:44 -0500 | [diff] [blame] | 238 | } // namespace pldm |