blob: eb956d658de648b76a3bbcfec6d6ceedd1d22688 [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
Andrew Jefferyf34db312018-03-09 15:27:03 +103023Table::Table(fs::path&& directory, size_t blockSize, size_t pnorSize) :
Andrew Jeffery7f9c3432018-03-01 12:07:13 +103024 szBytes(sizeof(pnor_partition_table)), directory(std::move(directory)),
25 numParts(0), blockSize(blockSize), pnorSize(pnorSize)
Deepak Kodihalli393821d2017-04-28 04:44:38 -050026{
27 preparePartitions();
28 prepareHeader();
29 hostTbl = endianFixup(tbl);
30}
31
32void Table::prepareHeader()
33{
34 decltype(auto) table = getNativeTable();
35 table.data.magic = PARTITION_HEADER_MAGIC;
36 table.data.version = PARTITION_VERSION_1;
Andrew Jeffery7f9c3432018-03-01 12:07:13 +103037 table.data.size = blocks();
Deepak Kodihalli393821d2017-04-28 04:44:38 -050038 table.data.entry_size = sizeof(pnor_partition);
39 table.data.entry_count = numParts;
Deepak Kodihallid1d79302017-07-11 23:01:39 -050040 table.data.block_size = blockSize;
41 table.data.block_count = pnorSize / blockSize;
Deepak Kodihalli393821d2017-04-28 04:44:38 -050042 table.checksum = details::checksum(table.data);
43}
44
45inline void Table::allocateMemory(const fs::path& tocFile)
46{
47 size_t num = 0;
48 std::string line;
49 std::ifstream file(tocFile.c_str());
50
51 // Find number of lines in partition file - this will help
52 // determine the number of partitions and hence also how much
53 // memory to allocate for the partitions array.
54 // The actual number of partitions may turn out to be lesser than this,
55 // in case of errors.
56 while (std::getline(file, line))
57 {
58 // Check if line starts with "partition"
59 if (std::string::npos != line.find("partition", 0))
60 {
61 ++num;
62 }
63 }
64
Andrew Jeffery7f9c3432018-03-01 12:07:13 +103065 szBytes = sizeof(pnor_partition_table) + (num * sizeof(pnor_partition));
66 tbl.resize(capacity());
Deepak Kodihalli393821d2017-04-28 04:44:38 -050067}
68
Andrew Jeffery581a4f22018-02-21 15:29:38 +103069void Table::preparePartitions()
70{
71 fs::path tocFile = directory;
72 tocFile /= PARTITION_TOC_FILE;
73 allocateMemory(tocFile);
74
75 std::ifstream file(tocFile.c_str());
76 std::string line;
Deepak Kodihalli393821d2017-04-28 04:44:38 -050077 decltype(auto) table = getNativeTable();
78
79 while (std::getline(file, line))
80 {
Andrew Jefferyfaaa71c2018-02-21 16:29:48 +103081 pnor_partition& part = table.partitions[numParts];
82 fs::path file;
83
Andrew Jefferyf96bd162018-02-26 13:05:00 +103084 // The ToC file presented in the vpnor squashfs looks like:
85 //
86 // version=IBM-witherspoon-ibm-OP9_v1.19_1.135
87 // extended_version=op-build-v1.19-571-g04f4690-dirty,buildroot-2017.11-5-g65679be,skiboot-v5.10-rc4,hostboot-4c46d66,linux-4.14.20-openpower1-p4a6b675,petitboot-v1.6.6-pe5aaec2,machine-xml-0fea226,occ-3286b6b,hostboot-binaries-3d1af8f,capp-ucode-p9-dd2-v3,sbe-99e2fe2
88 // partition00=part,0x00000000,0x00002000,00,READWRITE
89 // partition01=HBEL,0x00008000,0x0002c000,00,ECC,REPROVISION,CLEARECC,READWRITE
90 // ...
91 //
92 // As such we want to skip any lines that don't begin with 'partition'
93 if (std::string::npos == line.find("partition", 0))
Andrew Jefferyfaaa71c2018-02-21 16:29:48 +103094 {
95 continue;
96 }
97
Andrew Jefferyf96bd162018-02-26 13:05:00 +103098 parseTocLine(line, blockSize, part);
99
100 file = directory / part.data.name;
101 if (!fs::exists(file))
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500102 {
Andrew Jefferyf96bd162018-02-26 13:05:00 +1030103 std::stringstream err;
104 err << "Partition file " << file.native() << " does not exist";
105 throw InvalidTocEntry(err.str());
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500106 }
Andrew Jefferyf96bd162018-02-26 13:05:00 +1030107
108 ++numParts;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500109 }
110}
111
112const pnor_partition& Table::partition(size_t offset) const
113{
114 const decltype(auto) table = getNativeTable();
Deepak Kodihallid1d79302017-07-11 23:01:39 -0500115 size_t offt = offset / blockSize;
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500116
117 for (decltype(numParts) i{}; i < numParts; ++i)
118 {
119 if ((offt >= table.partitions[i].data.base) &&
Andrew Jefferyf34db312018-03-09 15:27:03 +1030120 (offt <
121 (table.partitions[i].data.base + table.partitions[i].data.size)))
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500122 {
123 return table.partitions[i];
124 }
125 }
126
Andrew Jefferye8a79ff2018-02-27 10:56:32 +1030127 MSG_ERR("Partition corresponding to offset 0x%zx not found", offset);
Jayanth Othayoth59ce0992017-10-27 00:45:53 -0500128 elog<InternalFailure>();
129
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500130 static pnor_partition p{};
131 return p;
132}
133
Deepak Kodihalli8a899692017-07-11 23:17:19 -0500134const pnor_partition& Table::partition(const std::string& name) const
135{
136 const decltype(auto) table = getNativeTable();
137
138 for (decltype(numParts) i{}; i < numParts; ++i)
139 {
140 if (name == table.partitions[i].data.name)
141 {
142 return table.partitions[i];
143 }
144 }
145
Andrew Jefferye8a79ff2018-02-27 10:56:32 +1030146 MSG_ERR("Partition '%s' not found", name.c_str());
Deepak Kodihalli8a899692017-07-11 23:17:19 -0500147 elog<InternalFailure>();
148 static pnor_partition p{};
149 return p;
150}
151
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500152} // namespace partition
153
154PartitionTable endianFixup(const PartitionTable& in)
155{
156 PartitionTable out;
157 out.resize(in.size());
158 auto src = reinterpret_cast<const pnor_partition_table*>(in.data());
159 auto dst = reinterpret_cast<pnor_partition_table*>(out.data());
160
161 dst->data.magic = htobe32(src->data.magic);
162 dst->data.version = htobe32(src->data.version);
163 dst->data.size = htobe32(src->data.size);
164 dst->data.entry_size = htobe32(src->data.entry_size);
165 dst->data.entry_count = htobe32(src->data.entry_count);
166 dst->data.block_size = htobe32(src->data.block_size);
167 dst->data.block_count = htobe32(src->data.block_count);
Deepak Kodihallib9cdcd22017-07-12 08:14:48 -0500168 dst->checksum = details::checksum(dst->data);
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500169
170 for (decltype(src->data.entry_count) i{}; i < src->data.entry_count; ++i)
171 {
172 auto psrc = &src->partitions[i];
173 auto pdst = &dst->partitions[i];
174 strncpy(pdst->data.name, psrc->data.name, PARTITION_NAME_MAX);
175 // Just to be safe
176 pdst->data.name[PARTITION_NAME_MAX] = '\0';
177 pdst->data.base = htobe32(psrc->data.base);
178 pdst->data.size = htobe32(psrc->data.size);
179 pdst->data.pid = htobe32(psrc->data.pid);
180 pdst->data.id = htobe32(psrc->data.id);
181 pdst->data.type = htobe32(psrc->data.type);
182 pdst->data.flags = htobe32(psrc->data.flags);
183 pdst->data.actual = htobe32(psrc->data.actual);
184 for (size_t j = 0; j < PARTITION_USER_WORDS; ++j)
185 {
186 pdst->data.user.data[j] = htobe32(psrc->data.user.data[j]);
187 }
Deepak Kodihallib9cdcd22017-07-12 08:14:48 -0500188 pdst->checksum = details::checksum(pdst->data);
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500189 }
190
191 return out;
192}
193
Andrew Jefferyd394a782018-02-21 16:16:14 +1030194static inline void writeSizes(pnor_partition& part, size_t start, size_t end,
195 size_t blockSize)
196{
197 size_t size = end - start;
198 part.data.base = align_up(start, blockSize) / blockSize;
199 size_t sizeInBlocks = align_up(size, blockSize) / blockSize;
200 part.data.size = sizeInBlocks;
201
202 // If a a patch partition file exists, populate actual size with its file
203 // size if it is smaller than the total size.
204 fs::path patchFile(PARTITION_FILES_PATCH_LOC);
205 patchFile /= part.data.name;
206 if (fs::is_regular_file(patchFile))
207 {
208 part.data.actual =
209 std::min(size, static_cast<size_t>(fs::file_size(patchFile)));
210 }
211 else
212 {
213 part.data.actual = size;
214 }
215}
216
217static inline void writeUserdata(pnor_partition& part, uint32_t version,
218 const std::string& data)
219{
220 std::istringstream stream(data);
221 std::string flag{};
222 auto perms = 0;
223
224 while (std::getline(stream, flag, ','))
225 {
226 if (flag == "ECC")
227 {
228 part.data.user.data[0] = PARTITION_ECC_PROTECTED;
229 }
230 else if (flag == "READONLY")
231 {
232 perms |= PARTITION_READONLY;
233 }
234 else if (flag == "PRESERVED")
235 {
236 perms |= PARTITION_PRESERVED;
237 }
238 else if (flag == "REPROVISION")
239 {
240 perms |= PARTITION_REPROVISION;
241 }
242 else if (flag == "VOLATILE")
243 {
244 perms |= PARTITION_VOLATILE;
245 }
246 else if (flag == "CLEARECC")
247 {
248 perms |= PARTITION_CLEARECC;
249 }
250 }
251
252 part.data.user.data[1] = perms;
253
254 part.data.user.data[1] |= version;
255}
256
257static inline void writeDefaults(pnor_partition& part)
258{
259 part.data.pid = PARENT_PATITION_ID;
260 part.data.type = PARTITION_TYPE_DATA;
261 part.data.flags = 0; // flags unused
262}
263
264static inline void writeNameAndId(pnor_partition& part, std::string&& name,
265 const std::string& id)
266{
267 name.resize(PARTITION_NAME_MAX);
268 memcpy(part.data.name, name.c_str(), sizeof(part.data.name));
269 part.data.id = std::stoul(id);
270}
271
Andrew Jefferyf96bd162018-02-26 13:05:00 +1030272void parseTocLine(const std::string& line, size_t blockSize,
Andrew Jefferyd394a782018-02-21 16:16:14 +1030273 pnor_partition& part)
274{
275 static constexpr auto ID_MATCH = 1;
276 static constexpr auto NAME_MATCH = 2;
277 static constexpr auto START_ADDR_MATCH = 4;
278 static constexpr auto END_ADDR_MATCH = 6;
279 static constexpr auto VERSION_MATCH = 8;
280 constexpr auto versionShift = 24;
281
282 // Parse PNOR toc (table of contents) file, which has lines like :
283 // partition01=HBB,0x00010000,0x000a0000,0x80,ECC,PRESERVED, to indicate
284 // partition information
285 std::regex regex{
286 "^partition([0-9]+)=([A-Za-z0-9_]+),"
287 "(0x)?([0-9a-fA-F]+),(0x)?([0-9a-fA-F]+),(0x)?([A-Fa-f0-9]{2})",
288 std::regex::extended};
289
290 std::smatch match;
291 if (!std::regex_search(line, match, regex))
292 {
Andrew Jefferyf96bd162018-02-26 13:05:00 +1030293 std::stringstream err;
294 err << "Malformed partition description: " << line.c_str() << "\n";
295 throw MalformedTocEntry(err.str());
Andrew Jefferyd394a782018-02-21 16:16:14 +1030296 }
297
298 writeNameAndId(part, match[NAME_MATCH].str(), match[ID_MATCH].str());
299 writeDefaults(part);
300
301 unsigned long start =
302 std::stoul(match[START_ADDR_MATCH].str(), nullptr, 16);
Andrew Jefferyb87aa322018-02-27 16:27:02 +1030303 if (start & (blockSize - 1))
304 {
305 MSG_ERR("Start offset 0x%lx for partition '%s' is not aligned to block "
306 "size 0x%zx\n",
307 start, match[NAME_MATCH].str().c_str(), blockSize);
308 }
309
Andrew Jefferyd394a782018-02-21 16:16:14 +1030310 unsigned long end = std::stoul(match[END_ADDR_MATCH].str(), nullptr, 16);
Andrew Jefferyb87aa322018-02-27 16:27:02 +1030311 if ((end - start) & (blockSize - 1))
312 {
313 MSG_ERR("Partition '%s' has a size 0x%lx that is not aligned to block "
314 "size 0x%zx\n",
315 match[NAME_MATCH].str().c_str(), (end - start), blockSize);
316 }
317
Andrew Jefferyd394a782018-02-21 16:16:14 +1030318 writeSizes(part, start, end, blockSize);
319
320 // Use the shift to convert "80" to 0x80000000
321 unsigned long version = std::stoul(match[VERSION_MATCH].str(), nullptr, 16);
322 writeUserdata(part, version << versionShift, match.suffix().str());
323 part.checksum = details::checksum(part.data);
Andrew Jefferyd394a782018-02-21 16:16:14 +1030324}
325
Deepak Kodihalli393821d2017-04-28 04:44:38 -0500326} // namespace virtual_pnor
327} // namespace openpower