Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <vector> |
| 4 | #include <memory> |
| 5 | #include <numeric> |
| 6 | #include <experimental/filesystem> |
Andrew Jeffery | 7f9c343 | 2018-03-01 12:07:13 +1030 | [diff] [blame] | 7 | #include "common.h" |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 8 | #include "pnor_partition_defs.h" |
| 9 | |
| 10 | namespace openpower |
| 11 | { |
| 12 | namespace virtual_pnor |
| 13 | { |
| 14 | |
| 15 | namespace fs = std::experimental::filesystem; |
| 16 | |
| 17 | using PartitionTable = std::vector<uint8_t>; |
| 18 | using checksum_t = uint32_t; |
| 19 | |
| 20 | /** @brief Convert the input partition table to big endian. |
| 21 | * |
| 22 | * @param[in] src - reference to the pnor partition table |
| 23 | * |
| 24 | * @returns converted partition table |
| 25 | */ |
| 26 | PartitionTable endianFixup(const PartitionTable& src); |
| 27 | |
Andrew Jeffery | d394a78 | 2018-02-21 16:16:14 +1030 | [diff] [blame] | 28 | /** @brief Parse a ToC line (entry) into the corresponding FFS partition |
| 29 | * object. |
| 30 | * |
| 31 | * @param[in] line - The ToC line to parse |
| 32 | * @param[in] blockSize - The flash block size in bytes |
| 33 | * @param[out] part - The partition object to populate with the information |
| 34 | * parsed from the provided ToC line |
| 35 | * |
Andrew Jeffery | f96bd16 | 2018-02-26 13:05:00 +1030 | [diff] [blame] | 36 | * Throws: MalformedTocEntry, InvalidTocEntry |
Andrew Jeffery | d394a78 | 2018-02-21 16:16:14 +1030 | [diff] [blame] | 37 | */ |
Andrew Jeffery | f96bd16 | 2018-02-26 13:05:00 +1030 | [diff] [blame] | 38 | void parseTocLine(const std::string& line, size_t blockSize, |
Andrew Jeffery | d394a78 | 2018-02-21 16:16:14 +1030 | [diff] [blame] | 39 | pnor_partition& part); |
| 40 | |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 41 | namespace details |
| 42 | { |
| 43 | |
| 44 | /** @brief Compute XOR-based checksum, by XORing consecutive words |
| 45 | * in the input data. Input must be aligned to word boundary. |
| 46 | * |
| 47 | * @param[in] data - input data on which checksum is computed |
| 48 | * |
| 49 | * @returns computed checksum |
| 50 | */ |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 51 | template <class T> checksum_t checksum(const T& data) |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 52 | { |
| 53 | static_assert(sizeof(decltype(data)) % sizeof(checksum_t) == 0, |
| 54 | "sizeof(data) is not aligned to sizeof(checksum_t) boundary"); |
| 55 | |
| 56 | auto begin = reinterpret_cast<const checksum_t*>(&data); |
| 57 | auto end = begin + (sizeof(decltype(data)) / sizeof(checksum_t)); |
| 58 | |
| 59 | return std::accumulate(begin, end, 0, std::bit_xor<checksum_t>()); |
| 60 | } |
| 61 | |
| 62 | } // namespace details |
| 63 | |
| 64 | namespace partition |
| 65 | { |
| 66 | |
| 67 | /** @class Table |
| 68 | * @brief Generates virtual PNOR partition table. |
| 69 | * |
| 70 | * Generates virtual PNOR partition table upon construction. Reads |
| 71 | * the PNOR information generated by this tool : |
| 72 | * github.com/openbmc/openpower-pnor-code-mgmt/blob/master/generate-squashfs, |
| 73 | * which generates a minimalistic table-of-contents (toc) file and |
| 74 | * individual files to represent various partitions that are of interest - |
| 75 | * these help form the "virtual" PNOR, which is typically a subset of the full |
| 76 | * PNOR image. |
| 77 | * These files are stored in a well-known location on the PNOR. |
| 78 | * Based on this information, this class prepares the partition table whose |
| 79 | * structure is as outlined in pnor_partition.h. |
| 80 | * |
| 81 | * The virtual PNOR supports 4KB erase blocks - partitions must be aligned to |
| 82 | * this size. |
| 83 | */ |
| 84 | class Table |
| 85 | { |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 86 | public: |
| 87 | /** @brief Constructor accepting the path of the directory |
| 88 | * that houses the PNOR partition files. |
| 89 | * |
| 90 | * @param[in] directory - path of the directory housing PNOR partitions |
| 91 | * @param[in] blockSize - PNOR block size, in bytes. See |
| 92 | * open-power/hostboot/blob/master/src/usr/pnor/ffs.h for |
| 93 | * the PNOR FFS structure. |
| 94 | * @param[in] pnorSize - PNOR size, in bytes |
Andrew Jeffery | f96bd16 | 2018-02-26 13:05:00 +1030 | [diff] [blame] | 95 | * |
| 96 | * Throws MalformedTocEntry, InvalidTocEntry |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 97 | */ |
| 98 | Table(fs::path&& directory, size_t blockSize, size_t pnorSize); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 99 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 100 | Table(const Table&) = delete; |
| 101 | Table& operator=(const Table&) = delete; |
| 102 | Table(Table&&) = delete; |
| 103 | Table& operator=(Table&&) = delete; |
| 104 | ~Table() = default; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 105 | |
Andrew Jeffery | 7f9c343 | 2018-03-01 12:07:13 +1030 | [diff] [blame] | 106 | /** @brief Return the exact size of partition table in bytes |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 107 | * |
Andrew Jeffery | 7f9c343 | 2018-03-01 12:07:13 +1030 | [diff] [blame] | 108 | * @returns size_t - size of partition table in bytes |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 109 | */ |
| 110 | size_t size() const |
| 111 | { |
Andrew Jeffery | 7f9c343 | 2018-03-01 12:07:13 +1030 | [diff] [blame] | 112 | return szBytes; |
| 113 | } |
| 114 | |
| 115 | /** @brief Return aligned size of partition table in bytes |
| 116 | * |
| 117 | * The value returned will be greater-than or equal to size(), and |
| 118 | * aligned to blockSize. |
| 119 | * |
| 120 | * @returns size_t - capacity of partition table in bytes |
| 121 | */ |
| 122 | size_t capacity() const |
| 123 | { |
| 124 | return align_up(szBytes, blockSize); |
| 125 | } |
| 126 | |
| 127 | /** @brief Return the size of partition table in blocks |
| 128 | * |
| 129 | * @returns size_t - size of partition table in blocks |
| 130 | */ |
| 131 | size_t blocks() const |
| 132 | { |
| 133 | return capacity() / blockSize; |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 134 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 135 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 136 | /** @brief Return a partition table having byte-ordering |
| 137 | * that the host expects. |
| 138 | * |
| 139 | * The host needs the partion table in big-endian. |
| 140 | * |
| 141 | * @returns const reference to host partition table. |
| 142 | */ |
| 143 | const pnor_partition_table& getHostTable() const |
| 144 | { |
| 145 | return *(reinterpret_cast<const pnor_partition_table*>(hostTbl.data())); |
| 146 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 147 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 148 | /** @brief Return a little-endian partition table |
| 149 | * |
| 150 | * @returns const reference to native partition table |
| 151 | */ |
| 152 | const pnor_partition_table& getNativeTable() const |
| 153 | { |
| 154 | return *(reinterpret_cast<const pnor_partition_table*>(tbl.data())); |
| 155 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 156 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 157 | /** @brief Return partition corresponding to PNOR offset, the offset |
| 158 | * is within returned partition. |
| 159 | * |
| 160 | * @param[in] offset - PNOR offset in bytes |
| 161 | * |
| 162 | * @returns const reference to pnor_partition, if found, else an |
| 163 | * exception will be thrown. |
| 164 | */ |
| 165 | const pnor_partition& partition(size_t offset) const; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 166 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 167 | /** @brief Return partition corresponding to input partition name. |
| 168 | * |
| 169 | * @param[in] name - PNOR partition name |
| 170 | * |
| 171 | * @returns const reference to pnor_partition, if found, else an |
| 172 | * exception will be thrown. |
| 173 | */ |
| 174 | const pnor_partition& partition(const std::string& name) const; |
Deepak Kodihalli | 8a89969 | 2017-07-11 23:17:19 -0500 | [diff] [blame] | 175 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 176 | private: |
| 177 | /** @brief Prepares a vector of PNOR partition structures. |
Andrew Jeffery | f96bd16 | 2018-02-26 13:05:00 +1030 | [diff] [blame] | 178 | * |
| 179 | * Throws: MalformedTocEntry, InvalidTocEntry |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 180 | */ |
| 181 | void preparePartitions(); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 182 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 183 | /** @brief Prepares the PNOR header. |
| 184 | */ |
| 185 | void prepareHeader(); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 186 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 187 | /** @brief Allocate memory to hold the partion table. Determine the |
| 188 | * amount needed based on the partition files in the toc file. |
| 189 | * |
| 190 | * @param[in] tocFile - Table of contents file path. |
| 191 | */ |
| 192 | void allocateMemory(const fs::path& tocFile); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 193 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 194 | /** @brief Return a little-endian partition table |
| 195 | * |
| 196 | * @returns reference to native partition table |
| 197 | */ |
| 198 | pnor_partition_table& getNativeTable() |
| 199 | { |
| 200 | return *(reinterpret_cast<pnor_partition_table*>(tbl.data())); |
| 201 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 202 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 203 | /** @brief Size of the PNOR partition table - |
| 204 | * sizeof(pnor_partition_table) + |
| 205 | * (no. of partitions * sizeof(pnor_partition)), |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 206 | */ |
Andrew Jeffery | 7f9c343 | 2018-03-01 12:07:13 +1030 | [diff] [blame] | 207 | size_t szBytes; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 208 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 209 | /** @brief Partition table */ |
| 210 | PartitionTable tbl; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 211 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 212 | /** @brief Partition table with host byte ordering */ |
| 213 | PartitionTable hostTbl; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 214 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 215 | /** @brief Directory housing generated PNOR partition files */ |
| 216 | fs::path directory; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 217 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 218 | /** @brief Number of partitions */ |
| 219 | size_t numParts; |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 220 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 221 | /** @brief PNOR block size, in bytes */ |
| 222 | size_t blockSize; |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 223 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 224 | /** @brief PNOR size, in bytes */ |
| 225 | size_t pnorSize; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 226 | }; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 227 | } // namespace partition |
Andrew Jeffery | f96bd16 | 2018-02-26 13:05:00 +1030 | [diff] [blame] | 228 | |
| 229 | /** @brief An exception type storing a reason string. |
| 230 | * |
| 231 | * This looks a lot like how std::runtime_error might be implemented however |
| 232 | * we want to avoid extending it, as exceptions extending ReasonedError have |
| 233 | * an expectation of being handled (can be predicted and are inside the scope |
| 234 | * of the program). |
| 235 | * |
| 236 | * From std::runtime_error documentation[1]: |
| 237 | * |
| 238 | * > Defines a type of object to be thrown as exception. It reports errors |
| 239 | * > that are due to events beyond the scope of the program and can not be |
| 240 | * > easily predicted. |
| 241 | * |
| 242 | * [1] http://en.cppreference.com/w/cpp/error/runtime_error |
| 243 | * |
| 244 | * We need to keep the inheritance hierarchy separate: This avoids the |
| 245 | * introduction of code that overzealously catches std::runtime_error to |
| 246 | * handle exceptions that would otherwise derive ReasonedError, and in the |
| 247 | * process swallows genuine runtime failures. |
| 248 | */ |
| 249 | class ReasonedError : public std::exception |
| 250 | { |
| 251 | public: |
| 252 | ReasonedError(const std::string&& what) : _what(what) |
| 253 | { |
| 254 | } |
| 255 | const char* what() const noexcept |
| 256 | { |
| 257 | return _what.c_str(); |
| 258 | }; |
| 259 | |
| 260 | private: |
| 261 | const std::string _what; |
| 262 | }; |
| 263 | |
| 264 | /** @brief Base exception type for errors related to ToC entry parsing. |
| 265 | * |
| 266 | * Callers of parseTocEntry() may not be concerned with the specifics and |
| 267 | * rather just want to extract and log what(). |
| 268 | */ |
| 269 | class TocEntryError : public ReasonedError |
| 270 | { |
| 271 | public: |
| 272 | TocEntryError(const std::string&& reason) : ReasonedError(std::move(reason)) |
| 273 | { |
| 274 | } |
| 275 | }; |
| 276 | |
| 277 | /** @brief The exception thrown on finding a syntax error in the ToC entry |
| 278 | * |
| 279 | * If the syntax is wrong, or expected values are missing, the ToC entry is |
| 280 | * malformed |
| 281 | */ |
| 282 | class MalformedTocEntry : public TocEntryError |
| 283 | { |
| 284 | public: |
| 285 | MalformedTocEntry(const std::string&& reason) : |
| 286 | TocEntryError(std::move(reason)) |
| 287 | { |
| 288 | } |
| 289 | }; |
| 290 | |
| 291 | /** @brief The exception thrown on finding a semantic error in the ToC entry |
| 292 | * |
| 293 | * If the syntax of the ToC entry is correct but the semantics are broken, |
| 294 | * then we have an invalid ToC entry. |
| 295 | */ |
| 296 | class InvalidTocEntry : public TocEntryError |
| 297 | { |
| 298 | public: |
| 299 | InvalidTocEntry(const std::string&& reason) : |
| 300 | TocEntryError(std::move(reason)) |
| 301 | { |
| 302 | } |
| 303 | }; |
| 304 | |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 305 | } // namespace virtual_pnor |
| 306 | } // namespace openpower |