pack 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #------------------------------------------------------------------------------
  2. # $File: pack,v 1.1 2024/08/30 17:29:28 christos Exp $
  3. # file(1) magic for things that have PACK as magic
  4. 0 string PACK
  5. # Type: Git pack
  6. # From: Adam Buchbinder <adam.buchbinder@gmail.com>
  7. # Update: Joerg Jenderek
  8. # URL: http://fileformats.archiveteam.org/wiki/Git
  9. # reference: https://github.com/git/git/blob/master/Documentation/technical/pack-format.txt
  10. # The actual magic is 'PACK', but that clashes with Doom/Quake packs. However,
  11. # those have a little-endian offset immediately following the magic 'PACK',
  12. # the first byte of which is never 0, while the first byte of the Git pack
  13. # version, since it's a tiny number stored in big-endian format, is always 0.
  14. # GRR: line above is too general as it matches also PackDir archive ./acorn
  15. # test for major version. Git 2017 accepts version number 2 or 3
  16. >4 ubelong <9
  17. # Acorn PackDir with method 0 compression has root like ADFS::HardDisc4.$.AsylumSrc
  18. # or SystemDevice::foobar
  19. >>9 search/13 ::
  20. # but in git binary
  21. >>9 default x Git pack
  22. !:mime application/x-git
  23. !:ext pack
  24. # 4 GB limit implies unsigned integer
  25. >>>4 ubelong x \b, version %u
  26. >>>8 ubelong x \b, %u objects
  27. # From: Joerg Jenderek
  28. # URL: https://www.kyzer.me.uk/pack/xad/#PackDir
  29. # reference: https://www.kyzer.me.uk/pack/xad/xad_PackDir.lha/PackDir.c
  30. # GRR: line below is too general as it matches also "Git pack" in ./revision
  31. # check for valid compression method 0-4
  32. >5 ulelong <5
  33. # https://www.riscosopen.org/wiki/documentation/show/Introduction%20To%20Filing%20Systems
  34. # To skip "Git pack" version 0 test for root directory object like
  35. # ADFS::RPC.$.websitezip.FONTFIX
  36. >>9 string >ADFS\ PackDir archive (RISC OS)
  37. # TrID labels above as "Acorn PackDir compressed Archive"
  38. # compression mode y (0 - 4) for GIF LZW with a maximum n bits
  39. # (y~n,0~12,1~13,2~14,3~15,4~16)
  40. >>>5 ulelong+12 x \b, LZW %u-bits compression
  41. # https://www.filebase.org.uk/filetypes
  42. # !Packdir compressed archive has three hexadecimal digits code 68E
  43. !:mime application/x-acorn-68E
  44. !:ext pkd/bin
  45. # null terminated root directory object like IDEFS::IDE-4.$.Apps.GRAPHICS.!XFMPdemo
  46. >>>9 string x \b, root "%s"
  47. # load address 0xFFFtttdd, ttt is the object filetype and dddddddddd is time
  48. >>>>&1 ulelong x \b, load address %#x
  49. # execution address 0xdddddddd dddddddddd is 40 bit unsigned centiseconds since 1.1.1900 UTC
  50. >>>>&5 ulelong x \b, exec address %#x
  51. # attributes (bits: 0~owner read,1~owner write,3~no delete,4~public read,5~public write)
  52. >>>>&9 ulelong x \b, attributes %#x
  53. # number of entries in this directory. for root dir 0
  54. #>>>&13 ulelong x \b, entries %#x
  55. # the entries start here with object name
  56. >>>>&17 string x \b, 1st object "%s"
  57. # Update: Joerg Jenderek
  58. # URL: http://fileformats.archiveteam.org/wiki/PAK
  59. # reference: https://quakewiki.org/wiki/.pak
  60. # GRR: line below is too general as it matches also Acorn PackDir compressed Archive
  61. # real Quake examples like pak0.pak have only some hundreds like 150 files
  62. # So test for few files
  63. >8 ulelong <0x01000000
  64. # in file version 5.32 test for null terminator is only true for
  65. # offset ~< FILE_BYTES_MAX = 1 MB defined in ../../src/file.h
  66. # look for null terminator of 1st entry name
  67. >>(4.l+55) ubyte 0 Quake I or II world or extension
  68. !:mime application/x-dzip
  69. !:ext pak
  70. #>>>8 ulelong x \b, table size %u
  71. # dividing this by entry size (64) gives number of files
  72. >>>8 ulelong/64 x \b, %u files
  73. # offset to the beginning of the file table
  74. >>>4 ulelong x \b, offset %#x
  75. # 1st file entry
  76. >>>(4.l) use pak-entry
  77. # 2nd file entry
  78. #>>>4 ulelong+64 x \b, offset %#x
  79. #>>>(4.l+64) use pak-entry
  80. #
  81. # display file table entry of Quake PAK archive
  82. 0 name pak-entry
  83. # normally entry start after header which implies offset 12 or higher
  84. >56 ulelong >11
  85. # the offset from the beginning of pak to beginning of this entry file contents
  86. >>56 ulelong x at %#x
  87. # the size of file for this entry
  88. >>60 ulelong x %u bytes
  89. # 56 byte null-terminated entry name string includes path like maps/e1m1.bsp
  90. >>0 string x '%-.56s'
  91. # inspect entry content by jumping to entry offset
  92. >>(56) indirect x \b:
  93. #0 string -1\x0a Quake I demo
  94. #>30 string x version %.4s
  95. #>61 string x level %s
  96. #0 string 5\x0a Quake I save