A simple utility to build and unpack 'ftab' (aka 'rkosftab') images found in firmware images of accessories produced by Apple.
'ftab' (which probably means File TABle) files are simple tables of files where a key is a 4-byte tag (e.g. 'rkos' which stands for RTKit OS) and a value are the contents of the corresponding file. An optional APTicket may be included as a signature of the file's contents.
ftabutil introduces a concept of manifest — a TOML description of the 'ftab' file fields and contents. Manifests are automatically produced when unpacking 'ftab' files but can also be created manually. Here's an example of such a manifest:
```toml
unk0 = 83886336 unk1 = 4294967295 unk2 = 0 unk3 = 0 unk4 = 0 unk5 = 0 unk_6 = 0
ticket = "ApImg4Ticker.der"
[[segments]]
path = "rkos.bin"
tag = "rkos"
unk = 0
```
Such a manifest can be used with the pack
subcommand like this:
shell
ftabutil pack path/to/manifest.toml optional/path/to/ftab.bin
For more info see documentation for the pack
subcommand.
Some fields of the format are unknown and unused at the time of writing. The tool provides the access to these fields without really documenting them. In the future the names for these fields is very likely to change, so you shouldn't rely on the manifest format to be stable.
Licensed under either of
at your option.
Pull requests are always welcome. I may ask you to match the coding style more closely though, but generally it's just about running rustfmt. Feature requests should be filed as issues.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.