6

我正在尝试让 Kaitai Struct 对二进制结构进行逆向工程。seq字段按预期工作,但instances似乎没有按我希望的那样工作。

我的二进制格式包括一个带有常量列表的标题,我将其解析为header带有consts数组子字段的字段:

types:
  header:
    seq:
      # ...
      - id: consts
        type: u8
        repeat: expr
        repeat-expr: 0x10

但是,当我尝试使用以下声明时:

instances:
  index_const:
    value: '_root.header.consts[idx - 0x40]'
    if: idx >= 0x40 and idx <= 0x4f

这个旨在index_const通过查找header.consts当且仅当idx在 [0x40..0x4f] 范围内的数组来计算 的值。

我使用 Python 作为我的目标语言,我假设它应该生成如下代码:

    @property
    def index_const(self):
        if hasattr(self, '_m_index_const'):
            return self._m_index_const
        if self.idx >= 64 and self.idx <= 79:
            self._m_index_const = self._root.header.consts[(self.idx - 64)];
            return self._m_index_const

但是,我得到的是:

    @property
    def index_const(self):
        if hasattr(self, '_m_index_const'):
            return self._m_index_const

        self._m_index_const = self._root.header.consts[(self.idx - 64)];
        return self._m_index_const

只是我,我错过了一些明显的东西,还是 Kaitai Struct 中的错误?

4

1 回答 1

2

是的,我想它应该被认为是一个错误。至少,编译器应该允许if在值实例中使用并正确处理它,或者禁止if并发出错误消息。

考虑到这一点,我认为没有理由if允许常规instances,但以这种方式对待value instances.

感谢您的报告,我已经提交了一个问题


更新:该问题现在标记为已关闭。

if_instances测试现在测试。...关闭这个解决了。

于 2016-07-13T11:05:31.577 回答