latticeBitParser: check file size during parse. Improved a bit parsing speed

This commit is contained in:
Gwenhael Goavec-Merou 2026-04-06 17:22:02 +02:00
parent 816d6558fe
commit b4bfad4b1c
2 changed files with 142 additions and 56 deletions

View File

@ -7,11 +7,11 @@
#include <stdlib.h> #include <stdlib.h>
#include <algorithm> #include <algorithm>
#include <functional> #include <charconv>
#include <cctype> #include <cctype>
#include <iostream> #include <iostream>
#include <locale> #include <locale>
#include <sstream> #include <string_view>
#include <utility> #include <utility>
#include "display.hpp" #include "display.hpp"
@ -30,30 +30,55 @@ LatticeBitParser::~LatticeBitParser()
{ {
} }
std::string LatticeBitParser::fmtIdcode(uint32_t id)
{
char tmp[8], buf[9] = "00000000";
std::to_chars_result conv = std::to_chars(tmp, tmp + 8, id, 16);
char *ptr = conv.ptr;
std::memcpy(buf + (8 - (ptr - tmp)), tmp, ptr - tmp);
return std::string(buf, 8);
}
int LatticeBitParser::parseHeader() int LatticeBitParser::parseHeader()
{ {
int currPos = 0; int currPos = 0;
if (_raw_data.empty()) {
printError("LatticeBitParser: empty bitstream");
return EXIT_FAILURE;
}
const uint32_t file_size = static_cast<uint32_t>(_raw_data.size());
/* check header signature */ /* check header signature */
/* radiant .bit start with LSCC */ /* radiant .bit start with LSCC */
if (_raw_data[0] == 'L') { if (_raw_data[0] == 'L') {
if (_raw_data.substr(0, 4) != "LSCC") { if (file_size < 4) {
printError("LatticeBitParser: bitstream too small");
return EXIT_FAILURE;
}
if (_raw_data.compare(0, 4, "LSCC") != 0) {
printf("Wrong File %s\n", _raw_data.substr(0, 4).c_str()); printf("Wrong File %s\n", _raw_data.substr(0, 4).c_str());
return EXIT_FAILURE; return EXIT_FAILURE;
} }
currPos += 4; currPos += 4;
} }
/* Check if bitstream size may store at least 0xff00 + another 0xff */
if (file_size <= currPos + 3) {
printError("LatticeBitParser: bitstream too small");
return EXIT_FAILURE;
}
/* bit file comment area start with 0xff00 */ /* bit file comment area start with 0xff00 */
if ((uint8_t)_raw_data[currPos] != 0xff || if ((uint8_t)_raw_data[currPos] != 0xff ||
(uint8_t)_raw_data[currPos + 1] != 0x00) { (uint8_t)_raw_data[currPos + 1] != 0x00) {
printf("Wrong File %02x%02x\n", (uint8_t) _raw_data[currPos], printf("Wrong File %02x%02x\n", (uint8_t) _raw_data[currPos],
(uint8_t)_raw_data[currPos]); (uint8_t)_raw_data[currPos + 1]);
return EXIT_FAILURE; return EXIT_FAILURE;
} }
currPos+=2; currPos += 2;
_endHeader = _raw_data.find(0xff, currPos); _endHeader = _raw_data.find(0xff, currPos);
if (_endHeader == std::string::npos) { if (_endHeader == std::string::npos) {
@ -67,25 +92,45 @@ int LatticeBitParser::parseHeader()
printError("Preamble key not found"); printError("Preamble key not found");
return EXIT_FAILURE; return EXIT_FAILURE;
} }
/* preamble must have at least 3 x 0xff + enc_key byte before 0xb3 */
if (pos < _endHeader + 4) {
printError("LatticeBitParser: wrong preamble size");
return EXIT_FAILURE;
}
//0xbe is the key for encrypted bitstreams in Nexus fpgas //0xbe is the key for encrypted bitstreams in Nexus fpgas
if ((uint8_t)_raw_data[pos-1] != 0xbd && (uint8_t)_raw_data[pos-1] != 0xbf && (uint8_t)_raw_data[pos-1] != 0xbe) { const uint8_t enc_key = static_cast<uint8_t>(_raw_data[pos - 1]);
if (enc_key != 0xbd && enc_key != 0xbf && enc_key != 0xbe) {
printError("Wrong preamble key"); printError("Wrong preamble key");
return EXIT_FAILURE; return EXIT_FAILURE;
} }
_endHeader = pos - 4; // align to 3 Dummy Bytes + preamble (ie. Header start offset). _endHeader = pos - 4; // align to 3 Dummy Bytes + preamble (ie. Header start offset).
if (currPos >= _endHeader) {
printError("LatticeBitParser: no header");
return EXIT_FAILURE;
}
/* parse header */ /* parse header */
std::istringstream lineStream(_raw_data.substr(currPos, _endHeader - currPos)); std::string_view lineStream(_raw_data.data() + currPos, _endHeader - currPos);
std::string buff; while (!lineStream.empty()) {
while (std::getline(lineStream, buff, '\0')) { const size_t null_pos = lineStream.find('\0');
pos = buff.find_first_of(':', 0); const std::string_view buff = lineStream.substr(0, null_pos);
if (pos != std::string::npos) { pos = buff.find(':');
std::string key(buff.substr(0, pos)); if (pos != std::string_view::npos) {
std::string val(buff.substr(pos+1, buff.size())); const std::string_view key = buff.substr(0, pos);
int startPos = val.find_first_not_of(" "); const std::string_view val = buff.substr(pos + 1);
int endPos = val.find_last_not_of(" ")+1; const size_t startPos = val.find_first_not_of(' ');
_hdr[key] = val.substr(startPos, endPos).c_str(); if (startPos != std::string_view::npos) {
const size_t endPos = val.find_last_not_of(' ');
_hdr.insert_or_assign(std::string(key),
std::string(val.substr(startPos, endPos - startPos + 1)));
}
} }
if (null_pos == std::string_view::npos)
break;
lineStream = lineStream.substr(null_pos + 1);
} }
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }
@ -93,10 +138,14 @@ int LatticeBitParser::parseHeader()
int LatticeBitParser::parse() int LatticeBitParser::parse()
{ {
/* until 0xFFFFBDB3 0xFFFF */ /* until 0xFFFFBDB3 0xFFFF */
if (parseHeader() < 0) if (parseHeader() != EXIT_SUCCESS)
return EXIT_FAILURE; return EXIT_FAILURE;
/* check preamble */ /* check preamble */
if (_endHeader + 4 >= _raw_data.size()) {
printError("LatticeBitParser: truncated preamble");
return EXIT_FAILURE;
}
uint32_t preamble = (*(uint32_t *)&_raw_data[_endHeader + 1]); uint32_t preamble = (*(uint32_t *)&_raw_data[_endHeader + 1]);
//0xb3beffff is the preamble for encrypted bitstreams in Nexus fpgas //0xb3beffff is the preamble for encrypted bitstreams in Nexus fpgas
if ((preamble != 0xb3bdffff) && (preamble != 0xb3bfffff) && (preamble != 0xb3beffff)) { if ((preamble != 0xb3bdffff) && (preamble != 0xb3bfffff) && (preamble != 0xb3beffff)) {
@ -116,18 +165,26 @@ int LatticeBitParser::parse()
printError("encrypted bitstream not supported for machXO2"); printError("encrypted bitstream not supported for machXO2");
return EXIT_FAILURE; return EXIT_FAILURE;
} }
std::string part = getHeaderVal("Part"); std::map<std::string, std::string>::const_iterator part_it = _hdr.find("Part");
std::string subpart = part.substr(0, part.find_last_of("-")); if (part_it == _hdr.end()) {
for (auto && fpga : fpga_list) { printError("LatticeBitParser: Missing Part in header section");
return EXIT_FAILURE;
}
std::string_view subpart(part_it->second);
const size_t pos = subpart.find_last_of('-');
if (pos == std::string_view::npos) {
printError("LatticeBitParser: invalid Part string");
return EXIT_FAILURE;
}
subpart = subpart.substr(0, pos);
for (const std::pair<const uint32_t, fpga_model> &fpga : fpga_list) {
if (fpga.second.manufacturer != "lattice") if (fpga.second.manufacturer != "lattice")
continue; continue;
std::string model = fpga.second.model; const std::string_view model = fpga.second.model;
if (subpart.compare(0, model.size(), model) == 0) { if (subpart.compare(0, model.size(), model) == 0) {
char __buf[10]; _hdr["idcode"] = fmtIdcode(fpga.first);
int __buf_valid_bytes; break;
__buf_valid_bytes = snprintf(__buf, 9, "%08x", fpga.first);
_hdr["idcode"] = std::string(__buf, __buf_valid_bytes);
_hdr["idcode"].resize(8, ' ');
} }
} }
} }
@ -140,26 +197,24 @@ int LatticeBitParser::parse()
* Here the header contains 3x8 Dummy bit + preamble so only * Here the header contains 3x8 Dummy bit + preamble so only
* 13bits 8x13= 112bits must be added as padding. * 13bits 8x13= 112bits must be added as padding.
*/ */
const uint32_t offset = (_is_ecp3) ? 14 : 0; const uint32_t offset = (_is_ecp3) ? 13 : 0;
_bit_data.resize(_raw_data.size() - _endHeader + offset); _bit_data.resize(_raw_data.size() - _endHeader + offset);
if (_is_ecp3) { if (_is_ecp3)
std::string tmp(13, 0xff); std::fill_n(_bit_data.begin(), offset, uint8_t{0xff});
std::move(tmp.begin(), tmp.end(), _bit_data.begin());
}
std::move(_raw_data.begin() + _endHeader, _raw_data.end(), _bit_data.begin() + offset); std::move(_raw_data.begin() + _endHeader, _raw_data.end(), _bit_data.begin() + offset);
_bit_length = _bit_data.size() * 8; _bit_length = _bit_data.size() * 8;
} else { } else {
_endHeader++; _endHeader++;
const uint32_t len = _raw_data.size() - _endHeader; const size_t len = _raw_data.size() - _endHeader;
uint32_t max_len = 16; const size_t array_len = (len + 15) / 16;
for (uint32_t i = 0; i < len; i+=max_len) { _bit_array.reserve(array_len);
std::string tmp(16, 0xff); for (size_t i = 0; i < len; i += 16) {
/* each line must have 16B */ const size_t max_len = std::min<size_t>(16, len - i);
if (len < i + max_len) _bit_array.emplace_back(16, '\xff');
max_len = len - i; std::string &tmp = _bit_array.back();
for (uint32_t pos = 0; pos < max_len; pos++) for (uint32_t pos = 0; pos < max_len; pos++)
tmp[pos] = reverseByte(_raw_data[i+pos+_endHeader]); tmp[pos] = static_cast<char>(reverseByte(
_bit_array.push_back(std::move(tmp)); static_cast<uint8_t>(_raw_data[_endHeader + i + pos])));
} }
_bit_length = _bit_array.size() * 16 * 8; _bit_length = _bit_array.size() * 16 * 8;
} }
@ -182,52 +237,73 @@ int LatticeBitParser::parse()
bool LatticeBitParser::parseCfgData() bool LatticeBitParser::parseCfgData()
{ {
uint8_t *ptr; const uint8_t *raw = reinterpret_cast<const uint8_t *>(_raw_data.data());
const size_t raw_size = _raw_data.size();
const uint8_t *ptr;
size_t pos = _endHeader + 5; // drop 16 Dummy bits and preamble size_t pos = _endHeader + 5; // drop 16 Dummy bits and preamble
uint32_t idcode; uint32_t idcode;
char __buf[10];
int __buf_valid_bytes; while (pos < raw_size) {
while (pos < _raw_data.size()) { uint8_t cmd = raw[pos++];
uint8_t cmd = (uint8_t) _raw_data[pos++];
switch (cmd) { switch (cmd) {
case BYPASS: case BYPASS:
break; break;
case LSC_RESET_CRC: case LSC_RESET_CRC:
if (pos + 3 > raw_size) {
printError("LatticeBitParser: truncated bitstream");
return false;
}
pos += 3; pos += 3;
break; break;
case ECP3_VERIFY_ID: case ECP3_VERIFY_ID:
ptr = (uint8_t*)&_raw_data[pos]; if (pos + 7 > raw_size) {
printError("LatticeBitParser: truncated bitstream");
return false;
}
ptr = raw + pos;
idcode = (((uint32_t)reverseByte(ptr[6])) << 24) | idcode = (((uint32_t)reverseByte(ptr[6])) << 24) |
(((uint32_t)reverseByte(ptr[5])) << 16) | (((uint32_t)reverseByte(ptr[5])) << 16) |
(((uint32_t)reverseByte(ptr[4])) << 8) | (((uint32_t)reverseByte(ptr[4])) << 8) |
(((uint32_t)reverseByte(ptr[3])) << 0); (((uint32_t)reverseByte(ptr[3])) << 0);
__buf_valid_bytes = snprintf(__buf, 9, "%08x", idcode); _hdr["idcode"] = fmtIdcode(idcode);
_hdr["idcode"] = std::string(__buf, __buf_valid_bytes);
_hdr["idcode"].resize(8, ' ');
pos += 7; pos += 7;
if (!_is_machXO2) if (!_is_machXO2)
return true; return true;
break; break;
case VERIFY_ID: case VERIFY_ID:
ptr = (uint8_t*)&_raw_data[pos]; if (pos + 7 > raw_size) {
printError("LatticeBitParser: truncated bitstream");
return false;
}
ptr = raw + pos;
idcode = (((uint32_t)ptr[3]) << 24) | idcode = (((uint32_t)ptr[3]) << 24) |
(((uint32_t)ptr[4]) << 16) | (((uint32_t)ptr[4]) << 16) |
(((uint32_t)ptr[5]) << 8) | (((uint32_t)ptr[5]) << 8) |
(((uint32_t)ptr[6]) << 0); (((uint32_t)ptr[6]) << 0);
__buf_valid_bytes = snprintf(__buf, 9, "%08x", idcode); _hdr["idcode"] = fmtIdcode(idcode);
_hdr["idcode"] = std::string(__buf, __buf_valid_bytes);
_hdr["idcode"].resize(8, ' ');
pos += 7; pos += 7;
if (!_is_machXO2) if (!_is_machXO2)
return true; return true;
break; break;
case LSC_WRITE_COMP_DIC: case LSC_WRITE_COMP_DIC:
if (pos + 11 > raw_size) {
printError("LatticeBitParser: truncated bitstream");
return false;
}
pos += 11; pos += 11;
break; break;
case LSC_PROG_CNTRL0: case LSC_PROG_CNTRL0:
if (pos + 7 > raw_size) {
printError("LatticeBitParser: truncated bitstream");
return false;
}
pos += 7; pos += 7;
break; break;
case LSC_INIT_ADDRESS: case LSC_INIT_ADDRESS:
if (pos + 3 > raw_size) {
printError("LatticeBitParser: truncated bitstream");
return false;
}
pos += 3; pos += 3;
break; break;
case LSC_PROG_INCR_CMP: case LSC_PROG_INCR_CMP:
@ -238,6 +314,10 @@ bool LatticeBitParser::parseCfgData()
return false; return false;
case LSC_SPI_MODE: // optional: 0x79 + mode (fast-read:0x49, case LSC_SPI_MODE: // optional: 0x79 + mode (fast-read:0x49,
// dual-spi:0x51, qspi:0x59) + 2 x 0x00 // dual-spi:0x51, qspi:0x59) + 2 x 0x00
if (pos + 3 > raw_size) {
printError("LatticeBitParser: truncated bitstream");
return false;
}
pos += 3; pos += 3;
break; break;
default: default:

View File

@ -24,11 +24,17 @@ class LatticeBitParser: public ConfigBitstreamParser {
* \brief return configuration data with structure similar to jedec * \brief return configuration data with structure similar to jedec
* \return configuration data * \return configuration data
*/ */
std::vector<std::string> getDataArray() {return _bit_array;} std::vector<std::string> &getDataArray() {return _bit_array;}
private: private:
int parseHeader(); int parseHeader();
bool parseCfgData(); bool parseCfgData();
/*!
* \brief format a 32-bit value as 8 zero-padded lowercase hex digits
* \param[in] id: value to format
* \return 8-character hex string
*/
static std::string fmtIdcode(uint32_t id);
size_t _endHeader; size_t _endHeader;
bool _is_machXO2; bool _is_machXO2;
bool _is_ecp3; bool _is_ecp3;