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> |
| 7 | #include "pnor_partition_defs.h" |
| 8 | |
| 9 | namespace openpower |
| 10 | { |
| 11 | namespace virtual_pnor |
| 12 | { |
| 13 | |
| 14 | namespace fs = std::experimental::filesystem; |
| 15 | |
| 16 | using PartitionTable = std::vector<uint8_t>; |
| 17 | using checksum_t = uint32_t; |
| 18 | |
| 19 | /** @brief Convert the input partition table to big endian. |
| 20 | * |
| 21 | * @param[in] src - reference to the pnor partition table |
| 22 | * |
| 23 | * @returns converted partition table |
| 24 | */ |
| 25 | PartitionTable endianFixup(const PartitionTable& src); |
| 26 | |
| 27 | namespace details |
| 28 | { |
| 29 | |
| 30 | /** @brief Compute XOR-based checksum, by XORing consecutive words |
| 31 | * in the input data. Input must be aligned to word boundary. |
| 32 | * |
| 33 | * @param[in] data - input data on which checksum is computed |
| 34 | * |
| 35 | * @returns computed checksum |
| 36 | */ |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 37 | template <class T> checksum_t checksum(const T& data) |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 38 | { |
| 39 | static_assert(sizeof(decltype(data)) % sizeof(checksum_t) == 0, |
| 40 | "sizeof(data) is not aligned to sizeof(checksum_t) boundary"); |
| 41 | |
| 42 | auto begin = reinterpret_cast<const checksum_t*>(&data); |
| 43 | auto end = begin + (sizeof(decltype(data)) / sizeof(checksum_t)); |
| 44 | |
| 45 | return std::accumulate(begin, end, 0, std::bit_xor<checksum_t>()); |
| 46 | } |
| 47 | |
| 48 | } // namespace details |
| 49 | |
| 50 | namespace partition |
| 51 | { |
| 52 | |
| 53 | /** @class Table |
| 54 | * @brief Generates virtual PNOR partition table. |
| 55 | * |
| 56 | * Generates virtual PNOR partition table upon construction. Reads |
| 57 | * the PNOR information generated by this tool : |
| 58 | * github.com/openbmc/openpower-pnor-code-mgmt/blob/master/generate-squashfs, |
| 59 | * which generates a minimalistic table-of-contents (toc) file and |
| 60 | * individual files to represent various partitions that are of interest - |
| 61 | * these help form the "virtual" PNOR, which is typically a subset of the full |
| 62 | * PNOR image. |
| 63 | * These files are stored in a well-known location on the PNOR. |
| 64 | * Based on this information, this class prepares the partition table whose |
| 65 | * structure is as outlined in pnor_partition.h. |
| 66 | * |
| 67 | * The virtual PNOR supports 4KB erase blocks - partitions must be aligned to |
| 68 | * this size. |
| 69 | */ |
| 70 | class Table |
| 71 | { |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 72 | public: |
| 73 | /** @brief Constructor accepting the path of the directory |
| 74 | * that houses the PNOR partition files. |
| 75 | * |
| 76 | * @param[in] directory - path of the directory housing PNOR partitions |
| 77 | * @param[in] blockSize - PNOR block size, in bytes. See |
| 78 | * open-power/hostboot/blob/master/src/usr/pnor/ffs.h for |
| 79 | * the PNOR FFS structure. |
| 80 | * @param[in] pnorSize - PNOR size, in bytes |
| 81 | */ |
| 82 | Table(fs::path&& directory, size_t blockSize, size_t pnorSize); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 83 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 84 | /** @brief Constructor - creates partition table |
| 85 | * |
| 86 | * @param[in] blockSize - PNOR block size, in bytes |
| 87 | * @param[in] pnorSize - PNOR size, in bytes |
| 88 | */ |
| 89 | Table(size_t blockSize, size_t pnorSize); |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 90 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 91 | Table(const Table&) = delete; |
| 92 | Table& operator=(const Table&) = delete; |
| 93 | Table(Table&&) = delete; |
| 94 | Table& operator=(Table&&) = delete; |
| 95 | ~Table() = default; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 96 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 97 | /** @brief Return size of partition table |
| 98 | * |
| 99 | * @returns size_t - size of partition table in blocks |
| 100 | */ |
| 101 | size_t size() const |
| 102 | { |
| 103 | return szBlocks; |
| 104 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 105 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 106 | /** @brief Return a partition table having byte-ordering |
| 107 | * that the host expects. |
| 108 | * |
| 109 | * The host needs the partion table in big-endian. |
| 110 | * |
| 111 | * @returns const reference to host partition table. |
| 112 | */ |
| 113 | const pnor_partition_table& getHostTable() const |
| 114 | { |
| 115 | return *(reinterpret_cast<const pnor_partition_table*>(hostTbl.data())); |
| 116 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 117 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 118 | /** @brief Return a little-endian partition table |
| 119 | * |
| 120 | * @returns const reference to native partition table |
| 121 | */ |
| 122 | const pnor_partition_table& getNativeTable() const |
| 123 | { |
| 124 | return *(reinterpret_cast<const pnor_partition_table*>(tbl.data())); |
| 125 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 126 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 127 | /** @brief Return partition corresponding to PNOR offset, the offset |
| 128 | * is within returned partition. |
| 129 | * |
| 130 | * @param[in] offset - PNOR offset in bytes |
| 131 | * |
| 132 | * @returns const reference to pnor_partition, if found, else an |
| 133 | * exception will be thrown. |
| 134 | */ |
| 135 | const pnor_partition& partition(size_t offset) const; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 136 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 137 | /** @brief Return partition corresponding to input partition name. |
| 138 | * |
| 139 | * @param[in] name - PNOR partition name |
| 140 | * |
| 141 | * @returns const reference to pnor_partition, if found, else an |
| 142 | * exception will be thrown. |
| 143 | */ |
| 144 | const pnor_partition& partition(const std::string& name) const; |
Deepak Kodihalli | 8a89969 | 2017-07-11 23:17:19 -0500 | [diff] [blame] | 145 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 146 | private: |
Andrew Jeffery | 581a4f2 | 2018-02-21 15:29:38 +1030 | [diff] [blame] | 147 | /** @brief Parse a ToC line (entry) into the corresponding FFS partition |
| 148 | * object. |
| 149 | * |
Andrew Jeffery | 581a4f2 | 2018-02-21 15:29:38 +1030 | [diff] [blame] | 150 | * @param[in] line - The ToC line to parse |
| 151 | * @param[out] part - The partition object to populate with the information |
| 152 | * parsed from the provided ToC line |
| 153 | * |
| 154 | * @returns True on success, false on failure. |
| 155 | */ |
Andrew Jeffery | faaa71c | 2018-02-21 16:29:48 +1030 | [diff] [blame^] | 156 | bool parseTocLine(const std::string& line, pnor_partition& part); |
Andrew Jeffery | 581a4f2 | 2018-02-21 15:29:38 +1030 | [diff] [blame] | 157 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 158 | /** @brief Prepares a vector of PNOR partition structures. |
| 159 | */ |
| 160 | void preparePartitions(); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 161 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 162 | /** @brief Prepares the PNOR header. |
| 163 | */ |
| 164 | void prepareHeader(); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 165 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 166 | /** @brief Allocate memory to hold the partion table. Determine the |
| 167 | * amount needed based on the partition files in the toc file. |
| 168 | * |
| 169 | * @param[in] tocFile - Table of contents file path. |
| 170 | */ |
| 171 | void allocateMemory(const fs::path& tocFile); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 172 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 173 | /** @brief Populate fields related to sizes for the input |
| 174 | * pnor_partition structure. |
| 175 | * |
| 176 | * @param[in/out] part - pnor_partition structure |
| 177 | * @param[in] start - partition start address |
| 178 | * @param[in] end - partition end address |
| 179 | */ |
| 180 | void writeSizes(pnor_partition& part, size_t start, size_t end); |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 181 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 182 | /** @brief Return a little-endian partition table |
| 183 | * |
| 184 | * @returns reference to native partition table |
| 185 | */ |
| 186 | pnor_partition_table& getNativeTable() |
| 187 | { |
| 188 | return *(reinterpret_cast<pnor_partition_table*>(tbl.data())); |
| 189 | } |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 190 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 191 | /** @brief Size of the PNOR partition table - |
| 192 | * sizeof(pnor_partition_table) + |
| 193 | * (no. of partitions * sizeof(pnor_partition)), |
| 194 | * measured in erase-blocks. |
| 195 | */ |
| 196 | size_t szBlocks; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 197 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 198 | /** @brief Partition table */ |
| 199 | PartitionTable tbl; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 200 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 201 | /** @brief Partition table with host byte ordering */ |
| 202 | PartitionTable hostTbl; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 203 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 204 | /** @brief Directory housing generated PNOR partition files */ |
| 205 | fs::path directory; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 206 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 207 | /** @brief Number of partitions */ |
| 208 | size_t numParts; |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 209 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 210 | /** @brief PNOR block size, in bytes */ |
| 211 | size_t blockSize; |
Deepak Kodihalli | d1d7930 | 2017-07-11 23:01:39 -0500 | [diff] [blame] | 212 | |
Andrew Jeffery | f34db31 | 2018-03-09 15:27:03 +1030 | [diff] [blame] | 213 | /** @brief PNOR size, in bytes */ |
| 214 | size_t pnorSize; |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 215 | }; |
| 216 | |
| 217 | } // namespace partition |
| 218 | } // namespace virtual_pnor |
| 219 | } // namespace openpower |