blob: aa6875059330ca5e581444e7959aab49e99b2c2d [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;
Adriana Kobylakeb083552017-08-04 14:03:32 -050090
91 // If a a patch partition file exists, populate actual size with its file
92 // size if it is smaller than the total size.
93 fs::path patchFile(PARTITION_FILES_PATCH_LOC);
94 patchFile /= part.data.name;
95 if (fs::is_regular_file(patchFile))
96 {
97 part.data.actual = std::min(
98 size, static_cast<size_t>(fs::file_size(patchFile)));
99 }
100 else
101 {
102 part.data.actual = size;
103 }
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500104}
105
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500106inline void Table::writeUserdata(pnor_partition& part,
107 uint32_t version,
108 const std::string& data)
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500109{
110 if (std::string::npos != data.find("ECC"))
111 {
112 part.data.user.data[0] = PARTITION_ECC_PROTECTED;
113 }
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500114
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500115 auto perms = 0;
116 if (std::string::npos != data.find("READONLY"))
117 {
118 perms |= PARTITION_READONLY;
119 }
120 if (std::string::npos != data.find("PRESERVED"))
121 {
122 perms |= PARTITION_PRESERVED;
123 }
124 part.data.user.data[1] = perms;
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500125
126 part.data.user.data[1] |= version;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500127}
128
129inline void Table::writeDefaults(pnor_partition& part)
130{
131 part.data.pid = PARENT_PATITION_ID;
132 part.data.type = PARTITION_TYPE_DATA;
133 part.data.flags = 0; // flags unused
134}
135
136inline void Table::writeNameAndId(pnor_partition& part, std::string&& name,
137 const std::string& id)
138{
139 name.resize(PARTITION_NAME_MAX);
140 memcpy(part.data.name,
141 name.c_str(),
142 sizeof(part.data.name));
143 part.data.id = std::stoul(id);
144}
145
146void Table::preparePartitions()
147{
148 fs::path tocFile = directory;
149 tocFile /= PARTITION_TOC_FILE;
150 allocateMemory(tocFile);
151
152 std::ifstream file(tocFile.c_str());
153 static constexpr auto ID_MATCH = 1;
154 static constexpr auto NAME_MATCH = 2;
Adriana Kobylak1e1bdc72017-08-16 16:30:08 -0500155 static constexpr auto START_ADDR_MATCH = 4;
156 static constexpr auto END_ADDR_MATCH = 6;
157 static constexpr auto VERSION_MATCH = 8;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500158 // Parse PNOR toc (table of contents) file, which has lines like :
Adriana Kobylak1e1bdc72017-08-16 16:30:08 -0500159 // partition01=HBB,0x00010000,0x000a0000,0x80,ECC,PRESERVED, to indicate
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500160 // partition information
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500161 std::regex regex
162 {
163 "^partition([0-9]+)=([A-Za-z0-9_]+),"
Adriana Kobylak1e1bdc72017-08-16 16:30:08 -0500164 "(0x)?([0-9a-fA-F]+),(0x)?([0-9a-fA-F]+),(0x)?([A-Fa-f0-9]{2})",
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500165 std::regex::extended
166 };
167 std::smatch match;
168 std::string line;
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500169 constexpr auto versionShift = 24;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500170
171 decltype(auto) table = getNativeTable();
172
173 while (std::getline(file, line))
174 {
175 if (std::regex_search(line, match, regex))
176 {
177 fs::path partitionFile = directory;
178 partitionFile /= match[NAME_MATCH].str();
179 if (!fs::exists(partitionFile))
180 {
181 MSG_ERR("Partition file %s does not exist",
182 partitionFile.c_str());
183 continue;
184 }
185
186 writeNameAndId(table.partitions[numParts],
187 match[NAME_MATCH].str(),
188 match[ID_MATCH].str());
189 writeDefaults(table.partitions[numParts]);
190 writeSizes(table.partitions[numParts],
191 std::stoul(match[START_ADDR_MATCH].str(), nullptr, 16),
192 std::stoul(match[END_ADDR_MATCH].str(), nullptr, 16));
Deepak Kodihallie8b0e8a2017-07-12 10:01:31 -0500193 writeUserdata(
194 table.partitions[numParts],
195 std::stoul(match[VERSION_MATCH].str(), nullptr, 16) <<
196 versionShift, // For eg, convert "80" to 0x80000000
197 match.suffix().str());
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500198 table.partitions[numParts].checksum =
199 details::checksum(table.partitions[numParts].data);
200
201 ++numParts;
202 }
203 }
204}
205
206const pnor_partition& Table::partition(size_t offset) const
207{
208 const decltype(auto) table = getNativeTable();
Deepak Kodihallid1d79302017-07-11 23:01:39 -0500209 size_t offt = offset / blockSize;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500210
211 for (decltype(numParts) i{}; i < numParts; ++i)
212 {
213 if ((offt >= table.partitions[i].data.base) &&
214 (offt < (table.partitions[i].data.base +
215 table.partitions[i].data.size)))
216 {
217 return table.partitions[i];
218 }
219 }
220
Jayanth Othayoth59ce0992017-10-27 00:45:53 -0500221 MSG_ERR("Partition corresponding to offset %x not found", offset);
222 elog<InternalFailure>();
223
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500224 static pnor_partition p{};
225 return p;
226}
227
Deepak Kodihalli8a899692017-07-11 23:17:19 -0500228const pnor_partition& Table::partition(const std::string& name) const
229{
230 const decltype(auto) table = getNativeTable();
231
232 for (decltype(numParts) i{}; i < numParts; ++i)
233 {
234 if (name == table.partitions[i].data.name)
235 {
236 return table.partitions[i];
237 }
238 }
239
240 MSG_ERR("Partition %s not found", name.c_str());
241 elog<InternalFailure>();
242 static pnor_partition p{};
243 return p;
244}
245
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500246} // namespace partition
247
248PartitionTable endianFixup(const PartitionTable& in)
249{
250 PartitionTable out;
251 out.resize(in.size());
252 auto src = reinterpret_cast<const pnor_partition_table*>(in.data());
253 auto dst = reinterpret_cast<pnor_partition_table*>(out.data());
254
255 dst->data.magic = htobe32(src->data.magic);
256 dst->data.version = htobe32(src->data.version);
257 dst->data.size = htobe32(src->data.size);
258 dst->data.entry_size = htobe32(src->data.entry_size);
259 dst->data.entry_count = htobe32(src->data.entry_count);
260 dst->data.block_size = htobe32(src->data.block_size);
261 dst->data.block_count = htobe32(src->data.block_count);
Deepak Kodihallib9cdcd22017-07-12 08:14:48 -0500262 dst->checksum = details::checksum(dst->data);
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500263
264 for (decltype(src->data.entry_count) i{}; i < src->data.entry_count; ++i)
265 {
266 auto psrc = &src->partitions[i];
267 auto pdst = &dst->partitions[i];
268 strncpy(pdst->data.name, psrc->data.name, PARTITION_NAME_MAX);
269 // Just to be safe
270 pdst->data.name[PARTITION_NAME_MAX] = '\0';
271 pdst->data.base = htobe32(psrc->data.base);
272 pdst->data.size = htobe32(psrc->data.size);
273 pdst->data.pid = htobe32(psrc->data.pid);
274 pdst->data.id = htobe32(psrc->data.id);
275 pdst->data.type = htobe32(psrc->data.type);
276 pdst->data.flags = htobe32(psrc->data.flags);
277 pdst->data.actual = htobe32(psrc->data.actual);
278 for (size_t j = 0; j < PARTITION_USER_WORDS; ++j)
279 {
280 pdst->data.user.data[j] = htobe32(psrc->data.user.data[j]);
281 }
Deepak Kodihallib9cdcd22017-07-12 08:14:48 -0500282 pdst->checksum = details::checksum(pdst->data);
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500283 }
284
285 return out;
286}
287
288} // namespace virtual_pnor
289} // namespace openpower