aboutsummaryrefslogtreecommitdiff
path: root/plugins/zlib.lua
blob: b9afc9ffb55da46a3166aa71ce217e922400c458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
--
-- zlib.lua: ZLIB Compressed Data Format
--
-- Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
-- SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
-- OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
-- CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
--

-- Based on RFC 1950, this format isn't very widely used
local decode = function (c)
	c.endianity = 'le'

	local deflate_levels = { "fastest", "fast", "default", "slowest" }
	local deflate
	local cmf = c:u8 ("compression method and flags: %s", function (u8)
		local cm,    cm_name    = u8 & 0xf, "unknown"
		local cinfo, cinfo_name = u8 >> 4,  "unknown"
		if cm == 8 then
			deflate = true
			cm_name = "deflate"
			cinfo_name = ("window size = %d"):format (2 ^ (cinfo + 8))
		end
		return "%s (%d), %s (%d)", cm_name, cm, cinfo_name, cinfo
	end)
	local have_dict
	local flags = c:u8 ("flags: %s", function (u8)
		local check = (cmf * 256 + u8) % 31 == 0
		if check then check = "ok" else check = "failed" end

		local level, level_name = (u8 >> 6) & 3, "unknown"
		if deflate then level_name = deflate_levels[level + 1] end
		have_dict = (u8 >> 5) & 1 == 1

		local info = "preset dictionary"
		if not have_dict then info = "no " .. info end
		return "level %s (%d), check %s, %s", level_name, level, check, info
	end)
	if have_dict then
		c:u16 ("dictionary Adler-32 checksum: %04x")
	end

	-- Compressed data follows immediately
	-- Not going to decompress it, so we don't know where the final checksum is
end

hex.register { type="zlib", detect=nil, decode=decode }