Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 1 | #include "pnor_partition_table.hpp" |
| 2 | #include "common.h" |
| 3 | #include "config.h" |
Deepak Kodihalli | 8a89969 | 2017-07-11 23:17:19 -0500 | [diff] [blame] | 4 | #include "xyz/openbmc_project/Common/error.hpp" |
| 5 | #include <phosphor-logging/elog-errors.hpp> |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 6 | #include <syslog.h> |
| 7 | #include <endian.h> |
| 8 | #include <regex> |
| 9 | #include <fstream> |
| 10 | #include <algorithm> |
| 11 | |
| 12 | namespace openpower |
| 13 | { |
| 14 | namespace virtual_pnor |
| 15 | { |
| 16 | |
Deepak Kodihalli | 8a89969 | 2017-07-11 23:17:19 -0500 | [diff] [blame] | 17 | using namespace phosphor::logging; |
| 18 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
| 19 | |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 20 | namespace partition |
| 21 | { |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 22 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 23 | Table::Table(size_t blockSize, size_t pnorSize) : |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 24 | Table(fs::path(PARTITION_FILES_RO_LOC), blockSize, pnorSize) |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 25 | { |
| 26 | } |
| 27 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 28 | Table::Table(fs::path&& directory, size_t blockSize, size_t pnorSize) : |
| 29 | szBlocks(0), directory(std::move(directory)), numParts(0), |
| 30 | blockSize(blockSize), pnorSize(pnorSize) |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 31 | { |
| 32 | preparePartitions(); |
| 33 | prepareHeader(); |
| 34 | hostTbl = endianFixup(tbl); |
| 35 | } |
| 36 | |
| 37 | void Table::prepareHeader() |
| 38 | { |
| 39 | decltype(auto) table = getNativeTable(); |
| 40 | table.data.magic = PARTITION_HEADER_MAGIC; |
| 41 | table.data.version = PARTITION_VERSION_1; |
| 42 | table.data.size = szBlocks; |
| 43 | table.data.entry_size = sizeof(pnor_partition); |
| 44 | table.data.entry_count = numParts; |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 45 | table.data.block_size = blockSize; |
| 46 | table.data.block_count = pnorSize / blockSize; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 47 | table.checksum = details::checksum(table.data); |
| 48 | } |
| 49 | |
| 50 | inline void Table::allocateMemory(const fs::path& tocFile) |
| 51 | { |
| 52 | size_t num = 0; |
| 53 | std::string line; |
| 54 | std::ifstream file(tocFile.c_str()); |
| 55 | |
| 56 | // Find number of lines in partition file - this will help |
| 57 | // determine the number of partitions and hence also how much |
| 58 | // memory to allocate for the partitions array. |
| 59 | // The actual number of partitions may turn out to be lesser than this, |
| 60 | // in case of errors. |
| 61 | while (std::getline(file, line)) |
| 62 | { |
| 63 | // Check if line starts with "partition" |
| 64 | if (std::string::npos != line.find("partition", 0)) |
| 65 | { |
| 66 | ++num; |
| 67 | } |
| 68 | } |
| 69 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 70 | size_t totalSizeBytes = |
| 71 | sizeof(pnor_partition_table) + (num * sizeof(pnor_partition)); |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 72 | size_t totalSizeAligned = align_up(totalSizeBytes, blockSize); |
| 73 | szBlocks = totalSizeAligned / blockSize; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 74 | tbl.resize(totalSizeAligned); |
| 75 | } |
| 76 | |
| 77 | inline void Table::writeSizes(pnor_partition& part, size_t start, size_t end) |
| 78 | { |
| 79 | size_t size = end - start; |
Adriana Kobylak | 2ad2132 | 2017-11-28 14:59:19 -0600 | [diff] [blame] | 80 | part.data.base = align_up(start, blockSize) / blockSize; |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 81 | size_t sizeInBlocks = align_up(size, blockSize) / blockSize; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 82 | part.data.size = sizeInBlocks; |
Adriana Kobylak | eb08355 | 2017-08-04 14:03:32 -0500 | [diff] [blame] | 83 | |
| 84 | // If a a patch partition file exists, populate actual size with its file |
| 85 | // size if it is smaller than the total size. |
| 86 | fs::path patchFile(PARTITION_FILES_PATCH_LOC); |
| 87 | patchFile /= part.data.name; |
| 88 | if (fs::is_regular_file(patchFile)) |
| 89 | { |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 90 | part.data.actual = |
| 91 | std::min(size, static_cast<size_t>(fs::file_size(patchFile))); |
Adriana Kobylak | eb08355 | 2017-08-04 14:03:32 -0500 | [diff] [blame] | 92 | } |
| 93 | else |
| 94 | { |
| 95 | part.data.actual = size; |
| 96 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 97 | } |
| 98 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 99 | inline void Table::writeUserdata(pnor_partition& part, uint32_t version, |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 100 | const std::string& data) |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 101 | { |
Adriana Kobylak | acb32ef | 2017-12-05 16:12:06 -0600 | [diff] [blame] | 102 | std::istringstream stream(data); |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 103 | std::string flag{}; |
Adriana Kobylak | acb32ef | 2017-12-05 16:12:06 -0600 | [diff] [blame] | 104 | auto perms = 0; |
| 105 | |
| 106 | while (std::getline(stream, flag, ',')) |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 107 | { |
Adriana Kobylak | acb32ef | 2017-12-05 16:12:06 -0600 | [diff] [blame] | 108 | if (flag == "ECC") |
| 109 | { |
| 110 | part.data.user.data[0] = PARTITION_ECC_PROTECTED; |
| 111 | } |
| 112 | else if (flag == "READONLY") |
| 113 | { |
| 114 | perms |= PARTITION_READONLY; |
| 115 | } |
| 116 | else if (flag == "PRESERVED") |
| 117 | { |
| 118 | perms |= PARTITION_PRESERVED; |
| 119 | } |
| 120 | else if (flag == "REPROVISION") |
| 121 | { |
| 122 | perms |= PARTITION_REPROVISION; |
| 123 | } |
| 124 | else if (flag == "VOLATILE") |
| 125 | { |
| 126 | perms |= PARTITION_VOLATILE; |
| 127 | } |
| 128 | else if (flag == "CLEARECC") |
| 129 | { |
| 130 | perms |= PARTITION_CLEARECC; |
| 131 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 132 | } |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 133 | |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 134 | part.data.user.data[1] = perms; |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 135 | |
| 136 | part.data.user.data[1] |= version; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | inline void Table::writeDefaults(pnor_partition& part) |
| 140 | { |
| 141 | part.data.pid = PARENT_PATITION_ID; |
| 142 | part.data.type = PARTITION_TYPE_DATA; |
| 143 | part.data.flags = 0; // flags unused |
| 144 | } |
| 145 | |
| 146 | inline void Table::writeNameAndId(pnor_partition& part, std::string&& name, |
| 147 | const std::string& id) |
| 148 | { |
| 149 | name.resize(PARTITION_NAME_MAX); |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 150 | memcpy(part.data.name, name.c_str(), sizeof(part.data.name)); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 151 | part.data.id = std::stoul(id); |
| 152 | } |
| 153 | |
| 154 | void Table::preparePartitions() |
| 155 | { |
| 156 | fs::path tocFile = directory; |
| 157 | tocFile /= PARTITION_TOC_FILE; |
| 158 | allocateMemory(tocFile); |
| 159 | |
| 160 | std::ifstream file(tocFile.c_str()); |
| 161 | static constexpr auto ID_MATCH = 1; |
| 162 | static constexpr auto NAME_MATCH = 2; |
Adriana Kobylak | 1e1bdc7 | 2017-08-16 16:30:08 -0500 | [diff] [blame] | 163 | static constexpr auto START_ADDR_MATCH = 4; |
| 164 | static constexpr auto END_ADDR_MATCH = 6; |
| 165 | static constexpr auto VERSION_MATCH = 8; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 166 | // Parse PNOR toc (table of contents) file, which has lines like : |
Adriana Kobylak | 1e1bdc7 | 2017-08-16 16:30:08 -0500 | [diff] [blame] | 167 | // partition01=HBB,0x00010000,0x000a0000,0x80,ECC,PRESERVED, to indicate |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 168 | // partition information |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 169 | std::regex regex{ |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 170 | "^partition([0-9]+)=([A-Za-z0-9_]+)," |
Adriana Kobylak | 1e1bdc7 | 2017-08-16 16:30:08 -0500 | [diff] [blame] | 171 | "(0x)?([0-9a-fA-F]+),(0x)?([0-9a-fA-F]+),(0x)?([A-Fa-f0-9]{2})", |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 172 | std::regex::extended}; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 173 | std::smatch match; |
| 174 | std::string line; |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 175 | constexpr auto versionShift = 24; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 176 | |
| 177 | decltype(auto) table = getNativeTable(); |
| 178 | |
| 179 | while (std::getline(file, line)) |
| 180 | { |
| 181 | if (std::regex_search(line, match, regex)) |
| 182 | { |
| 183 | fs::path partitionFile = directory; |
| 184 | partitionFile /= match[NAME_MATCH].str(); |
| 185 | if (!fs::exists(partitionFile)) |
| 186 | { |
| 187 | MSG_ERR("Partition file %s does not exist", |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 188 | partitionFile.c_str()); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 189 | continue; |
| 190 | } |
| 191 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 192 | writeNameAndId(table.partitions[numParts], match[NAME_MATCH].str(), |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 193 | match[ID_MATCH].str()); |
| 194 | writeDefaults(table.partitions[numParts]); |
| 195 | writeSizes(table.partitions[numParts], |
| 196 | std::stoul(match[START_ADDR_MATCH].str(), nullptr, 16), |
| 197 | std::stoul(match[END_ADDR_MATCH].str(), nullptr, 16)); |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 198 | writeUserdata( |
| 199 | table.partitions[numParts], |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 200 | std::stoul(match[VERSION_MATCH].str(), nullptr, 16) |
| 201 | << versionShift, // For eg, convert "80" to 0x80000000 |
Deepak Kodihalli | e8b0e8a | 2017-07-12 10:01:31 -0500 | [diff] [blame] | 202 | match.suffix().str()); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 203 | table.partitions[numParts].checksum = |
| 204 | details::checksum(table.partitions[numParts].data); |
| 205 | |
| 206 | ++numParts; |
| 207 | } |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | const pnor_partition& Table::partition(size_t offset) const |
| 212 | { |
| 213 | const decltype(auto) table = getNativeTable(); |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 214 | size_t offt = offset / blockSize; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 215 | |
| 216 | for (decltype(numParts) i{}; i < numParts; ++i) |
| 217 | { |
| 218 | if ((offt >= table.partitions[i].data.base) && |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 219 | (offt < |
| 220 | (table.partitions[i].data.base + table.partitions[i].data.size))) |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 221 | { |
| 222 | return table.partitions[i]; |
| 223 | } |
| 224 | } |
| 225 | |
Andrew Jeffery | e570740 | 2018-02-02 14:39:36 +1030 | [diff] [blame] | 226 | MSG_ERR("Partition corresponding to offset %zu not found", offset); |
Jayanth Othayoth | 59ce099 | 2017-10-27 00:45:53 -0500 | [diff] [blame] | 227 | elog<InternalFailure>(); |
| 228 | |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 229 | static pnor_partition p{}; |
| 230 | return p; |
| 231 | } |
| 232 | |
Deepak Kodihalli | 8a89969 | 2017-07-11 23:17:19 -0500 | [diff] [blame] | 233 | const pnor_partition& Table::partition(const std::string& name) const |
| 234 | { |
| 235 | const decltype(auto) table = getNativeTable(); |
| 236 | |
| 237 | for (decltype(numParts) i{}; i < numParts; ++i) |
| 238 | { |
| 239 | if (name == table.partitions[i].data.name) |
| 240 | { |
| 241 | return table.partitions[i]; |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | MSG_ERR("Partition %s not found", name.c_str()); |
Marri Devender Rao | 08b0a89 | 2017-11-08 03:38:27 -0600 | [diff] [blame] | 246 | log<level::ERR>("Table::partition partition not found ", |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame^] | 247 | entry("PARTITION_NAME=%s", name.c_str())); |
Deepak Kodihalli | 8a89969 | 2017-07-11 23:17:19 -0500 | [diff] [blame] | 248 | elog<InternalFailure>(); |
| 249 | static pnor_partition p{}; |
| 250 | return p; |
| 251 | } |
| 252 | |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 253 | } // namespace partition |
| 254 | |
| 255 | PartitionTable endianFixup(const PartitionTable& in) |
| 256 | { |
| 257 | PartitionTable out; |
| 258 | out.resize(in.size()); |
| 259 | auto src = reinterpret_cast<const pnor_partition_table*>(in.data()); |
| 260 | auto dst = reinterpret_cast<pnor_partition_table*>(out.data()); |
| 261 | |
| 262 | dst->data.magic = htobe32(src->data.magic); |
| 263 | dst->data.version = htobe32(src->data.version); |
| 264 | dst->data.size = htobe32(src->data.size); |
| 265 | dst->data.entry_size = htobe32(src->data.entry_size); |
| 266 | dst->data.entry_count = htobe32(src->data.entry_count); |
| 267 | dst->data.block_size = htobe32(src->data.block_size); |
| 268 | dst->data.block_count = htobe32(src->data.block_count); |
Deepak Kodihalli | b9cdcd2 | 2017-07-12 08:14:48 -0500 | [diff] [blame] | 269 | dst->checksum = details::checksum(dst->data); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 270 | |
| 271 | for (decltype(src->data.entry_count) i{}; i < src->data.entry_count; ++i) |
| 272 | { |
| 273 | auto psrc = &src->partitions[i]; |
| 274 | auto pdst = &dst->partitions[i]; |
| 275 | strncpy(pdst->data.name, psrc->data.name, PARTITION_NAME_MAX); |
| 276 | // Just to be safe |
| 277 | pdst->data.name[PARTITION_NAME_MAX] = '\0'; |
| 278 | pdst->data.base = htobe32(psrc->data.base); |
| 279 | pdst->data.size = htobe32(psrc->data.size); |
| 280 | pdst->data.pid = htobe32(psrc->data.pid); |
| 281 | pdst->data.id = htobe32(psrc->data.id); |
| 282 | pdst->data.type = htobe32(psrc->data.type); |
| 283 | pdst->data.flags = htobe32(psrc->data.flags); |
| 284 | pdst->data.actual = htobe32(psrc->data.actual); |
| 285 | for (size_t j = 0; j < PARTITION_USER_WORDS; ++j) |
| 286 | { |
| 287 | pdst->data.user.data[j] = htobe32(psrc->data.user.data[j]); |
| 288 | } |
Deepak Kodihalli | b9cdcd2 | 2017-07-12 08:14:48 -0500 | [diff] [blame] | 289 | pdst->checksum = details::checksum(pdst->data); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | return out; |
| 293 | } |
| 294 | |
| 295 | } // namespace virtual_pnor |
| 296 | } // namespace openpower |