Index: usr.bin/dtc/fdt.cc =================================================================== --- usr.bin/dtc/fdt.cc +++ usr.bin/dtc/fdt.cc @@ -335,10 +335,28 @@ unsigned long long val; if (!input.consume_integer_expression(val)) { + // FIXME: Distinguish invalid syntax from a + // number that cannot be represented in an + // unsigned long long. input.parse_error("Expected numbers in array of cells"); valid = false; return; } + // FIXME: No sign information available, so cannot + // distinguish small negative values from large + // positive ones, and thus we have to conservatively + // permit anything that looks like a sign-extended + // negative integer. + if (cell_size < 64 && val >= (1ull << cell_size) && + (val | ((1ull << (cell_size - 1)) - 1)) != + std::numeric_limits::max()) + { + std::string msg = "Value does not fit in a " + + std::to_string(cell_size) + "-bit cell"; + input.parse_error(msg.c_str()); + valid = false; + return; + } switch (cell_size) { case 8: Index: usr.bin/dtc/input_buffer.cc =================================================================== --- usr.bin/dtc/input_buffer.cc +++ usr.bin/dtc/input_buffer.cc @@ -349,8 +349,11 @@ return false; } char *end= const_cast(&buffer[size]); + errno = 0; outInt = strtoull(&buffer[cursor], &end, 0); - if (end == &buffer[cursor]) + if (end == &buffer[cursor] || + (outInt == std::numeric_limits::max() && + errno == ERANGE)) { return false; }