blob: 98bba46e0363006d36804ab68a5778cef2a0b6e5 [file] [log] [blame]
Deepak Kodihalli393821d2017-04-28 04:44:38 -05001#include "pnor_partition_table.hpp"
2#include "common.h"
3#include "config.h"
Deepak Kodihalli8a899692017-07-11 23:17:19 -05004#include "xyz/openbmc_project/Common/error.hpp"
5#include <phosphor-logging/elog-errors.hpp>
Deepak Kodihalli393821d2017-04-28 04:44:38 -05006#include <syslog.h>
7#include <endian.h>
8#include <regex>
9#include <fstream>
10#include <algorithm>
11
12namespace openpower
13{
14namespace virtual_pnor
15{
16
Deepak Kodihalli8a899692017-07-11 23:17:19 -050017using namespace phosphor::logging;
18using namespace sdbusplus::xyz::openbmc_project::Common::Error;
19
Deepak Kodihalli393821d2017-04-28 04:44:38 -050020namespace partition
21{
Deepak Kodihalli393821d2017-04-28 04:44:38 -050022
Deepak Kodihallid1d79302017-07-11 23:01:39 -050023Table::Table(size_t blockSize, size_t pnorSize):
24 Table(fs::path(PARTITION_FILES_RO_LOC), blockSize, pnorSize)
Deepak Kodihalli393821d2017-04-28 04:44:38 -050025{
26}
27
Deepak Kodihallid1d79302017-07-11 23:01:39 -050028Table::Table(fs::path&& directory,
29 size_t blockSize, size_t pnorSize):
Deepak Kodihalli393821d2017-04-28 04:44:38 -050030 szBlocks(0),
31 imgBlocks(0),
32 directory(std::move(directory)),
Deepak Kodihallid1d79302017-07-11 23:01:39 -050033 numParts(0),
34 blockSize(blockSize),
35 pnorSize(pnorSize)
Deepak Kodihalli393821d2017-04-28 04:44:38 -050036{
37 preparePartitions();
38 prepareHeader();
39 hostTbl = endianFixup(tbl);
40}
41
42void Table::prepareHeader()
43{
44 decltype(auto) table = getNativeTable();
45 table.data.magic = PARTITION_HEADER_MAGIC;
46 table.data.version = PARTITION_VERSION_1;
47 table.data.size = szBlocks;
48 table.data.entry_size = sizeof(pnor_partition);
49 table.data.entry_count = numParts;
Deepak Kodihallid1d79302017-07-11 23:01:39 -050050 table.data.block_size = blockSize;
51 table.data.block_count = pnorSize / blockSize;
Deepak Kodihalli393821d2017-04-28 04:44:38 -050052 table.checksum = details::checksum(table.data);
53}
54
55inline void Table::allocateMemory(const fs::path& tocFile)
56{
57 size_t num = 0;
58 std::string line;
59 std::ifstream file(tocFile.c_str());
60
61 // Find number of lines in partition file - this will help
62 // determine the number of partitions and hence also how much
63 // memory to allocate for the partitions array.
64 // The actual number of partitions may turn out to be lesser than this,
65 // in case of errors.
66 while (std::getline(file, line))
67 {
68 // Check if line starts with "partition"
69 if (std::string::npos != line.find("partition", 0))
70 {
71 ++num;
72 }
73 }
74
75 size_t totalSizeBytes = sizeof(pnor_partition_table) +
76 (num * sizeof(pnor_partition));
Deepak Kodihallid1d79302017-07-11 23:01:39 -050077 size_t totalSizeAligned = align_up(totalSizeBytes, blockSize);
78 szBlocks = totalSizeAligned / blockSize;
Deepak Kodihalli393821d2017-04-28 04:44:38 -050079 imgBlocks = szBlocks;
80 tbl.resize(totalSizeAligned);
81}
82
83inline void Table::writeSizes(pnor_partition& part, size_t start, size_t end)
84{
85 size_t size = end - start;
86 part.data.base = imgBlocks;
Deepak Kodihallid1d79302017-07-11 23:01:39 -050087 size_t sizeInBlocks = align_up(size, blockSize) / blockSize;
Deepak Kodihalli393821d2017-04-28 04:44:38 -050088 imgBlocks += sizeInBlocks;
89 part.data.size = sizeInBlocks;
90 part.data.actual = size;
91}
92
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -050093inline void Table::writeUserdata(pnor_partition& part,
94 uint32_t version,
95 const std::string& data)
Deepak Kodihalli393821d2017-04-28 04:44:38 -050096{
97 if (std::string::npos != data.find("ECC"))
98 {
99 part.data.user.data[0] = PARTITION_ECC_PROTECTED;
100 }
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500101
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500102 auto perms = 0;
103 if (std::string::npos != data.find("READONLY"))
104 {
105 perms |= PARTITION_READONLY;
106 }
107 if (std::string::npos != data.find("PRESERVED"))
108 {
109 perms |= PARTITION_PRESERVED;
110 }
111 part.data.user.data[1] = perms;
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500112
113 part.data.user.data[1] |= version;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500114}
115
116inline void Table::writeDefaults(pnor_partition& part)
117{
118 part.data.pid = PARENT_PATITION_ID;
119 part.data.type = PARTITION_TYPE_DATA;
120 part.data.flags = 0; // flags unused
121}
122
123inline void Table::writeNameAndId(pnor_partition& part, std::string&& name,
124 const std::string& id)
125{
126 name.resize(PARTITION_NAME_MAX);
127 memcpy(part.data.name,
128 name.c_str(),
129 sizeof(part.data.name));
130 part.data.id = std::stoul(id);
131}
132
133void Table::preparePartitions()
134{
135 fs::path tocFile = directory;
136 tocFile /= PARTITION_TOC_FILE;
137 allocateMemory(tocFile);
138
139 std::ifstream file(tocFile.c_str());
140 static constexpr auto ID_MATCH = 1;
141 static constexpr auto NAME_MATCH = 2;
142 static constexpr auto START_ADDR_MATCH = 3;
143 static constexpr auto END_ADDR_MATCH = 4;
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500144 static constexpr auto VERSION_MATCH = 5;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500145 // Parse PNOR toc (table of contents) file, which has lines like :
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500146 // partition01=HBB,00010000,000a0000,80,ECC,PRESERVED, to indicate
147 // partition information
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500148 std::regex regex
149 {
150 "^partition([0-9]+)=([A-Za-z0-9_]+),"
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500151 "([0-9a-fA-F]+),([0-9a-fA-F]+),([A-Fa-f0-9]{2})",
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500152 std::regex::extended
153 };
154 std::smatch match;
155 std::string line;
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500156 constexpr auto versionShift = 24;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500157
158 decltype(auto) table = getNativeTable();
159
160 while (std::getline(file, line))
161 {
162 if (std::regex_search(line, match, regex))
163 {
164 fs::path partitionFile = directory;
165 partitionFile /= match[NAME_MATCH].str();
166 if (!fs::exists(partitionFile))
167 {
168 MSG_ERR("Partition file %s does not exist",
169 partitionFile.c_str());
170 continue;
171 }
172
173 writeNameAndId(table.partitions[numParts],
174 match[NAME_MATCH].str(),
175 match[ID_MATCH].str());
176 writeDefaults(table.partitions[numParts]);
177 writeSizes(table.partitions[numParts],
178 std::stoul(match[START_ADDR_MATCH].str(), nullptr, 16),
179 std::stoul(match[END_ADDR_MATCH].str(), nullptr, 16));
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500180 writeUserdata(
181 table.partitions[numParts],
182 std::stoul(match[VERSION_MATCH].str(), nullptr, 16) <<
183 versionShift, // For eg, convert "80" to 0x80000000
184 match.suffix().str());
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500185 table.partitions[numParts].checksum =
186 details::checksum(table.partitions[numParts].data);
187
188 ++numParts;
189 }
190 }
191}
192
193const pnor_partition& Table::partition(size_t offset) const
194{
195 const decltype(auto) table = getNativeTable();
Deepak Kodihallid1d79302017-07-11 23:01:39 -0500196 size_t offt = offset / blockSize;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500197
198 for (decltype(numParts) i{}; i < numParts; ++i)
199 {
200 if ((offt >= table.partitions[i].data.base) &&
201 (offt < (table.partitions[i].data.base +
202 table.partitions[i].data.size)))
203 {
204 return table.partitions[i];
205 }
206 }
207
208 static pnor_partition p{};
209 return p;
210}
211
Deepak Kodihalli8a899692017-07-11 23:17:19 -0500212const pnor_partition& Table::partition(const std::string& name) const
213{
214 const decltype(auto) table = getNativeTable();
215
216 for (decltype(numParts) i{}; i < numParts; ++i)
217 {
218 if (name == table.partitions[i].data.name)
219 {
220 return table.partitions[i];
221 }
222 }
223
224 MSG_ERR("Partition %s not found", name.c_str());
225 elog<InternalFailure>();
226 static pnor_partition p{};
227 return p;
228}
229
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500230} // namespace partition
231
232PartitionTable endianFixup(const PartitionTable& in)
233{
234 PartitionTable out;
235 out.resize(in.size());
236 auto src = reinterpret_cast<const pnor_partition_table*>(in.data());
237 auto dst = reinterpret_cast<pnor_partition_table*>(out.data());
238
239 dst->data.magic = htobe32(src->data.magic);
240 dst->data.version = htobe32(src->data.version);
241 dst->data.size = htobe32(src->data.size);
242 dst->data.entry_size = htobe32(src->data.entry_size);
243 dst->data.entry_count = htobe32(src->data.entry_count);
244 dst->data.block_size = htobe32(src->data.block_size);
245 dst->data.block_count = htobe32(src->data.block_count);
Deepak Kodihallib9cdcd22017-07-12 08:14:48 -0500246 dst->checksum = details::checksum(dst->data);
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500247
248 for (decltype(src->data.entry_count) i{}; i < src->data.entry_count; ++i)
249 {
250 auto psrc = &src->partitions[i];
251 auto pdst = &dst->partitions[i];
252 strncpy(pdst->data.name, psrc->data.name, PARTITION_NAME_MAX);
253 // Just to be safe
254 pdst->data.name[PARTITION_NAME_MAX] = '\0';
255 pdst->data.base = htobe32(psrc->data.base);
256 pdst->data.size = htobe32(psrc->data.size);
257 pdst->data.pid = htobe32(psrc->data.pid);
258 pdst->data.id = htobe32(psrc->data.id);
259 pdst->data.type = htobe32(psrc->data.type);
260 pdst->data.flags = htobe32(psrc->data.flags);
261 pdst->data.actual = htobe32(psrc->data.actual);
262 for (size_t j = 0; j < PARTITION_USER_WORDS; ++j)
263 {
264 pdst->data.user.data[j] = htobe32(psrc->data.user.data[j]);
265 }
Deepak Kodihallib9cdcd22017-07-12 08:14:48 -0500266 pdst->checksum = details::checksum(pdst->data);
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500267 }
268
269 return out;
270}
271
272} // namespace virtual_pnor
273} // namespace openpower