148 KiB
0.11.0
New iNES/NES 2.0 ROM decoder (thanks @mlofjard) and basic JPEG 2000 format support. jq language improvements and fixes from gojq. And as always various decoder improvements and fixes.
Changes
- Add
string_truncate
option to configure how to truncate long strings when displaying a decode value tree.dd
,dv
etc set truncate length to zero to not truncate. #919 - gojq updates from upstream:
- Implement
ltrim
,rtrim
, andtrim
functions - Fix object construction with duplicate keys (
{x:0,y:1} | {a:.x,a:.y}
) - Fix
halt
andhalt_error
functions to stop the command execution immediately - Fix variable scope of binding syntax (
"a" as $v | def f: $v; "b" as $v | f
) - Fix
ltrimstr
andrtrimstr
functions to emit error on non-string input - Fix
nearbyint
andrint
functions to round ties to even - Improve parser to allow
reduce
,foreach
,if
,try
-catch
syntax as object values - Remove
pow10
in favor ofexp10
, definescalbn
andscalbln
byldexp
- Implement
- Fix issue using decode value with
ltrimstr
/rtrimstr
.
Format changes
fit
- Skip array fields on pre read messages. #878
- Fixed subfield referencing fields below self in message. #877
jp2c
New JPEG 2000 codestream decoder. #928icc_profile
Strip whitespace in header and tag strings. #912mp4
- Add
jp2c
,jp2h
,ihdr
jP
JPEG 2000 related boxes support. #928 - Add
thmb
box support. #897 - Turns out for qt brand
hdlr
component name might be zero bytes. #896
- Add
nes
New iNES/NES 2.0 ROM decoder (thanks @mlofjard). #893
Changelog
f7b067b6
Fixed subfield referencing fields below self in message9aa99b47
Update docker-golang to 1.22.1 from 1.22.00afb5b59
Update docker-golang to 1.22.2 from 1.22.12657988d
Update github-go-version to 1.22.1 from 1.22.033c93918
Update github-go-version to 1.22.2 from 1.22.1a577c398
Update github-golangci-lint to 1.56.2 from 1.56.182d96cf9
Update github-golangci-lint to 1.57.0 from 1.56.272b4569b
Update github-golangci-lint to 1.57.1 from 1.57.014aeab0b
Update github-golangci-lint to 1.57.2 from 1.57.1735256b9
Update gomod-golang-x-crypto to 0.20.0 from 0.19.0043f067f
Update gomod-golang-x-crypto to 0.21.0 from 0.20.015a7060b
Update gomod-golang-x-crypto to 0.22.0 from 0.21.085f60df2
Update gomod-golang-x-net to 0.22.0 from 0.21.077c000e6
Update gomod-golang-x-net to 0.23.0 from 0.22.0daba6b54
Update gomod-golang-x-net to 0.24.0 from 0.23.0ba9ecb54
Update gomod-golang-x-term to 0.18.0 from 0.17.0b2aa59f7
Update gomod-golang-x-term to 0.19.0 from 0.18.01c24f64d
Update make-golangci-lint to 1.56.2 from 1.56.194e80864
Update make-golangci-lint to 1.57.0 from 1.56.24f55b6af
Update make-golangci-lint to 1.57.1 from 1.57.0a3b63b10
Update make-golangci-lint to 1.57.2 from 1.57.1208b3e6b
chore: fix function name in comment621d7f2c
decode: Align some heavily used structs to save spaceee2ee24d
decode: Cleanup io panic a bite741ca78
doc: Add ImHex to related tools36e8287c
doc: Regenerate after nes and new ansisvg225fd507
fit: Skip array fields on pre read messages7500a8b7
fq: Sort formatsbf7fa07c
fq: Use go 1.20 and cleanupe2670404
gojq: Update fq forkf5fd5873
gojq: Update fq forked685116
icc_profile: Strip whitespace in header and tag stringsc8f9cdc9
interp: Add string_truncate option0db671f6
interp: Add todo test for eval error in pathebffb3be
jp2c: Add jpeg2000 codestream format79992b34
jp2c: Fail probe faster63f7d79c
jp2c: Support probeb542ff1d
lint: More linters and some fixesc6165c0c
mod: go get non-bump tracked modules1784c438
mp4,avi: Trim spaces for type2ea70c42
mp4: Add thmb box support4f90a2ea
mp4: Decode jP box70b1b0d6
mp4: Decode uinf box87b6c4dd
mp4: Fix jp2 test8009b6f6
mp4: JPEG200 boxes jp2h and ihdred3a126f
mp4: Turns out for qt brand hdlr component name might be zero bytesf3b54042
nes: Add support for iNES/NES 2.0 ROM files80bccc91
opus,vorbis: More sym snake_case08df7f45
pkg/cli/test_exp.sh: use command -v87052733
pssh_playready: Use snake_case sym valuesaaa43dfb
test: Replace pmezard/go-difflib with go's internal diff
0.10.0
Adds support for various LevelDB formats (thanks @mikez) and Garmin Flexible and Interoperable Data Transfer format (FIT) (thanks @mlofjard).
And as usual some small fixes and dependency updates.
Changes
- On macOS fq now reads init script from
~/.config/fq
in addition to~/Library/Application Support/fq
. #871 - Switch readline module from own fork to https://github.com/ergochat/readline #854
- Updated gojq fork. Notable changes from upstream below. #844
- Fix pre-defined variables to be available in initial modules
- Fix object construction with duplicate keys
Format changes
-
aac_frame
Decode instance tag and common window flag. #859 -
fit
Add support for Garmin Flexible and Interoperable Data Transfer decoder. Thanks @mlofjard #874- This format is used by various GPS tracking devices to record location, speed etc.
- Example of converting position information to KML:
# to_kml.jq # convert locations in a fit structure to KML def to_kml: ( [ .data_records[].data_message as {position_lat: $lat, position_long: $long} | select($lat and $long) | [$long, $lat, 0] | join(",") ] | join(". ") | { kml: {"@xmlns":"http://earth.google.com/kml/2.0" , Document: {Placemark: {LineString: {coordinates: .}}}} } | to_xml({indent:2}) );
Usage:
# -L to add current directory to library path # -r for raw string output # 'include "to_ml";' to include to_kml.jq # to_kml calls to_kml function $ fq -L . -r 'include "to_kml"; to_kml' file.fit > file.kml
-
hevc_sps
Fix some incorrect profile_tier_level decoding. #829 -
html
Fix issue parsing elements including SOLIDUS "/". #870- Upstream issue https://github.com/golang/go/issues/63402
-
mpeg_es
Support ES_ID_Inc and decode descriptors for IOD tags -
leveldb_descriptor
,leveldb_log
,leveldb_table
Add support for LevelDB. Thanks @mikez #824- This format is used by many database backends and applications like Google chrome.
-
pcapng
Decode all section headers instead of just the first. #860 -
png
Fix incorrect decoding of type flags. #847 -
hevc_sps
Fix incorrect decoding of profile_tier_level. #829 -
tls
Fix field name typos. #839 -
mp4
- Don't try decode samples for a track that has an external reference. #834
- Use box structure instead of track id to keep track for sample table data. #833
ctts
box v0 sample offset seems to be signed in practice but not in spec. #832
-
webp
Decode width, height and flags for lossless WebP. #857
Changelog
6c3914aa
Add DFDL acronym to README.md43c76937
Update docker-golang to 1.21.5 from 1.21.4836af78a
Update docker-golang to 1.21.6 from 1.21.5f9e1e759
Update docker-golang to 1.22.0 from 1.21.654da5efc
Update ergochat-readline to 81f0f2329ad3 from cca60bf24c9fbed912c3
Update github-go-version to 1.21.5 from 1.21.43f48e3be
Update github-go-version to 1.21.6 from 1.21.55bfb2bb1
Update github-go-version to 1.22.0 from 1.21.6888b0be0
Update github-golangci-lint to 1.56.0 from 1.55.2283380ba
Update github-golangci-lint to 1.56.1 from 1.56.0be79c193
Update gomod-golang-x-crypto to 0.16.0 from 0.15.06aba928f
Update gomod-golang-x-crypto to 0.17.0 from 0.16.0561fed97
Update gomod-golang-x-crypto to 0.18.0 from 0.17.0b5388eaa
Update gomod-golang-x-crypto to 0.19.0 from 0.18.00200a4ee
Update gomod-golang-x-net to 0.19.0 from 0.18.02e22e1b8
Update gomod-golang-x-net to 0.20.0 from 0.19.040bcb194
Update gomod-golang-x-net to 0.21.0 from 0.20.02a1d9707
Update gomod-golang-x-term to 0.16.0 from 0.15.0310c78ea
Update gomod-golang-x-term to 0.17.0 from 0.16.0536583cf
Update make-golangci-lint to 1.56.0 from 1.55.25369576d
Update make-golangci-lint to 1.56.1 from 1.56.0e51c746d
aac_frame: CPE: Decode instance tag and common window flagf5f8e93c
bson: Fix jq style a bitd0a1b301
bump readline to 0.1.0-rc1b56258cf
bump,readline: Add bump config and update to latest master0070e389
bump,readline: Skip bump until not rc63e0aa3c
doc: Fix weird wording in README.mde5fd1eb4
doc: Generate svgs with new ansisvg55470deb
doc: Update docs to include fit formatc47756dc
doc: Update svgs after ansisvg update54c6f0cd
fit: Added support for "invalid" value checking.46dbf5b7
fit: Added support for ANT+ FIT format (used by Garmin devices)6219d57c
fit: Added support for dynamic subfields33e5851d
fit: Fix field casing to snake_case. Misc cleanup.76307e4d
fit: Formatted date/time description for timestamp fields88622804
fit: Made long/lat present as float64788088f8
fit: Show crc as hex, lower case "invalid" and some style harmonizationa07ce117
fq: Relicense float80 code to MIT5829c6b4
gojq: Update fq forkd155c80c
gojq: Update fq forka793d109
goreleaser: Fix deprecated options919e0795
hevc_sps: Fix some incorrect profile_tier_level decoding69ae7659
interp: Fix crash when using line_bytes=021766000
interp: Support ~/.config/fq as fallback on macOSfb910bd4
ldb: first draftefc59a81
ldb: uncompression support41f27a13
leveldb: addtorepr
for descriptor2df0f0fb
leveldb: add log and descriptor decodersb05aa997
leveldb: address PR comments2f5f1831
leveldb: decode unfragmented .log files further; fix UTF8 decodinge826f097
leveldb: fix Errorf arguments42830911
leveldb: fix all.fqtest failures287ed366
leveldb: fix metaindex keys, refactoring, and jq syntax per PR8665df56
leveldb: fix table's data blocks' internal keys decoding08e3d2d2
leveldb: improvestringify
by preallocating result3a396e15
leveldb: improve log documentation1ba8dec5
leveldb: in some properties, change spaces to underscorese735cead
leveldb: propagate error07ad9401
leveldb: rename "suffix" to "sequence_number_suffix"78a3e94b
leveldb: rename functions and add commentscc0d5a8b
leveldb: update docsfe1099b9
leveldb: updates per PR comments0d06e0a4
mp4: Don't decode samples if track has external data referenced2c5ce55
mp4: Use box structure instead of track id to keep track for sample table dataaadf26f6
mp4: ctts v0 sample_offset seems to be signed in practicefca55b2c
mpeg_es: Support ES_ID_Inc and decode descriptors for IOD tagse3af4670
pcapng: Decode all section headers, clenaup descriptions38b4412a
png: Type flags were off-by-one bitfb1c625a
readline,bump: Fix version compare link41226f48
readline: Switch to ergochat/readlinecd572d3a
readline: Update to 0.1.0 and add bump config7906f33d
test: Support to more common -update flag3b7cc1f4
tls: Fix field name typosb0421dfc
webp: Decode width, height and flags for lossless webp
0.9.0
Changes
- Make synthetic values not look like decode values with a zero range. #777
- Bit ranges are now displayed using exclusive end notation to be more consistent. For example if a field at byte offset 5 is 8 bit in size using the
<byte>[.<bits>]
notation it is now shown as5-6
, before it was shown as5-5.7
. See usage documentation for more examples. #789 - Improve colors when using a light background. Thanks @adedomin for reporting. #781
- Better
from_jq
error handling. Thanks @emanuele6 for reporting. #788 - Updated gojq fork. Notable changes from upstream below. #808
- Adds
pick/1
function. Outputs value and nested values for given input expression.# pick out all string values from a ELF header $ fq '.header | pick(.. | select(type == "string"))' /bin/ls { "ident": { "data": "little_endian", "magic": "\u007fELF", "os_abi": "sysv", "pad": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000" }, "machine": "x86_64", "type": "dyn" } # bonus tip: # if you only need to pick one level then jq has a shortcut syntax $ fq '.header | {type, machine}' /bin/ls { "machine": "x86_64", "type": "dyn" }
- Implements comment continuation with backslash.
- Adds
- Updated gopacket to 1.2.1. Notable changes from upstream below. #815
- fix(ip4defrag): allow final fragment to be less than 8 octets by @niklaskb
- refactor: don't fill empty metadata slots by @smira
- refactor: optimize port map to switch statement by @smira
Decoder changes
avi
- Some general clean up fixes. Thanks to Marion Jaks at mediathek.at for testing and motivation.
- Add extended chunks support and
decode_extended_chunks
option. This is trailing chunks used by big AVI files. #786 - Add type, handler, compression (video) and format_tag (audio) per stream. #775
$ fq '.streams[0]' file.avi │00 01 02 03 04 05 06 07│01234567│.streams[0]{}: stream 0x1680│ 00 00 00 01 67 f4│ ....g.│ samples[0:3]: 0x1688│00 0d 91 9b 28 28 3f 60│....((?`│ 0x1690│22 00 00 03 00 02 00 00│".......│ * │until 0x2409.7 (3464) │ │ │ │ │ type: "vids" │ │ │ handler: "H264" │ │ │ compression: "H264"
- Properly use sample size field when decoding samples. #776
exif
(andtiff
)- Handle broken last next ifd offset by treating it as end marker. #804
gzip
- Correctly handle multiple members. Thanks @TomiBelan for the bug report and assistance. #795
- Now gzip is modelled as a struct with a
members
array and auncompressed
field that is the concatenation of the uncompressed members.
macho
- Properly respect endian when decoding some flag fields. #796
- Move formatted timestamp to description so that numeric value is easier to access. #797
matroska
- Support decoding EBML date type. #787
protobuf
- No need to use synthetic fields for string and bytes. #800
webp
- Refactor to use common RIFF decoder and also decode VP8X, EXIF, ICCP and XMP chunks. #803
zip
Better timestamp support and fixes- Fix incorrect MSDOS time/date decoding and add extended timestamp support. Also remodel time/date to be a struct with raw values, components and a synthetics UTC unixtime guess. Thanks @TomiBelan for the bug report and assistance. #793
$ fq '.local_files[] | select(.file_name == "a").last_modification' file.zip │00 01 02 03 04 05 06 07│01234567│.local_files[3].last_modification{}: 0xd0│ 81 01 │ .. │ fat_time: 0x181 │ │ │ second: 2 (1) │ │ │ minute: 12 │ │ │ hour: 0 0xd0│ 73 53│ sS│ fat_date: 0x5373 │ │ │ day: 19 │ │ │ month: 11 │ │ │ year: 2021 (41) │ │ │ unix_guess: 1637280722 (2021-11-19T00:12:02)
Changelog
b7022183
Update docker-golang to 1.21.2 from 1.21.1d7047116
Update docker-golang to 1.21.3 from 1.21.2c31fc874
Update docker-golang to 1.21.4 from 1.21.3861487d4
Update github-go-version to 1.21.2 from 1.21.1d7663569
Update github-go-version to 1.21.3 from 1.21.2caef93ce
Update github-go-version to 1.21.4 from 1.21.3de7fdae5
Update github-golangci-lint to 1.55.0 from 1.54.260edf973
Update github-golangci-lint to 1.55.1 from 1.55.0534a2c8c
Update github-golangci-lint to 1.55.2 from 1.55.1906bc3bb
Update gomod-golang-x-crypto to 0.14.0 from 0.13.08d4d18d3
Update gomod-golang-x-crypto to 0.15.0 from 0.14.0f108194d
Update gomod-golang-x-net to 0.16.0 from 0.15.05381f381
Update gomod-golang-x-net to 0.17.0 from 0.16.014fe728c
Update gomod-golang-x-net to 0.18.0 from 0.17.01011f19c
Update gomod-golang/text to 0.14.0 from 0.13.0527aad6c
Update gomod-gopacket to 1.2.0 from 1.1.10c22c79b
Update make-golangci-lint to 1.55.0 from 1.54.25f06364f
Update make-golangci-lint to 1.55.1 from 1.55.036576a5c
Update make-golangci-lint to 1.55.2 from 1.55.1d703321a
avi: Add extended chunks support and option55521bba
avi: Add stream type constants51965549
avi: Add type, handler, format_tag and compreession per stream0f225c32
avi: Add unused field for extra indx chunk spacedf085b91
avi: Handle stream sample sizec7ec18d6
avi: Increase sample size heuristics to 32bit stereoa745b12d
avi: More correct strf chunk extra data9b10e598
avi: Only use sample size heuristics if there is no format23ae4d97
decode,interp: Make synthetic values more visible and not act as decode values5abf151f
doc: Remove spurious backtick02b35276
exif,tiff: Handle broken last next ifd offset by treating it as end markerdc376f34
gojq: Update rebased fq forkac276ee1
gzip: Correctly handle multiple members45a8dd9c
interp: Better from_jq error handling051a70bd
interp: Change bit ranges to use exclusive end29e75411
interp: Fix infinite recursion when casting synthetic raw value into a jq valuec28163f8
interp: Improve colors when using light background797c7d90
macho: Move timestamp string to description71a5fc91
macho: Respect endian when decoding flags1d14ea51
matroska: Decode ebml date typeb24ed161
mod: Update golang.org/x/exp and github.com/gomarkdown/markdown5e2e49e3
protobuf: No need for synthetic for string and bytes value6034c705
webp,avi,wav,aiff: Trim RIFF id string9e58067f
webp: Refactor to use riff code and decode VP8X, EXIF, ICCP and XMP chunksa83cac60
zip: Fix incorrect time/date, add extended timestamp and refactor
0.8.0
Fix handling of shadowing order for _<name>
keys, 3 new decoders caff
, moc3
and opentimestamps
, some smaller fixes and improvements.
In other jq news jq 1.7 was finally released 5 years since the last release! also happy to now be part of the jq maintainance team.
Changes
- New decoders
caff
andmoc3
. See below for details. - Fix shadowing of underscore prefixed keys (
_<name>
) for text formats likejson
,yaml
etc. #757 This happenned because fq has a bunch of internal underscore prefixed "extra" keys that is used for various things and these had priority even when there already existed a "value" key with same name.
Now$ fq -n '`{"_format": 123}` | fromjson | ._format'
123
, before"json"
.
Now$ fq -n '`{}` | fromjson | ._missing'
null
, before error - Rename
--null
/nul-output
to--raw-output0
and also clarify that NUL and new lines are outputted after and not between each output. This is to be in sync with jq (https://github.com/jqlang/jq/pull/2684). #736 - Updated gojq fork with fixes from upstream:
- Improved error messages for indices, setpath, delpaths
- Add
abs
function - Change behavior of walk with multiple outputs
- Change zero division to produce an error when dividend is zero
- Fix empty string repeating with the maximum integer
- Fix string multiplication by zero to emit empty string
- Remove deprecated
leaf_paths
function
- Fix
split
in combination with binary to not include separator. #767
Decoder changes
caff
Add archive format decoder. Thanks @Ronsor #747- CAFF is an archive format usually found with the extensions
.cmo3
and.can3
used by Live2D Cubism.
- CAFF is an archive format usually found with the extensions
id3v2
HandleW000
-WZZZ
andW00
-WZZ
URL frames. #758matroska
Update spec and regenerate. #737moc3
Add Live2D Cubism MOC3 decoder. Thanks @Ronsor #747- MOC3 is a format for 2D rigged puppets, somewhat like Flash.
mp3_frame_xing
Detect lame ext more similar to ffmpeg and mediainfo. #763mp4
- Decode
sgpd
(Sample group definition box) entries. Thanks Sergei Kuzmin @ksa-real #707 - Decode
cslg
(Composition to decode timeline mapping) box. #754 - Decode
emsg
(Event message) andid3v2
message data. #755 - Nicer trimmed major brand for
ftyp
. #723
- Decode
opentimestamps
Add OpenTimestamps decoder. Thanks @fiatjaf #769
Changelog
40310826
Update docker-golang to 1.20.6 from 1.20.56daa0aa7
Update docker-golang to 1.20.7 from 1.20.68bd7b6d6
Update docker-golang to 1.21.0 from 1.20.7bff668c3
Update docker-golang to 1.21.1 from 1.21.08e705aa7
Update github-go-version to 1.20.6 from 1.20.53828b423
Update github-go-version to 1.20.7 from 1.20.6c09d50a2
Update github-go-version to 1.21.0 from 1.20.730b27a5b
Update github-go-version to 1.21.1 from 1.21.0104c3bdb
Update github-golangci-lint to 1.54.0 from 1.53.37906a463
Update github-golangci-lint to 1.54.1 from 1.54.031de3f97
Update github-golangci-lint to 1.54.2 from 1.54.183947293
Update gomod-golang-x-crypto to 0.12.0 from 0.11.0ebb71e24
Update gomod-golang-x-crypto to 0.13.0 from 0.12.0c8aae666
Update gomod-golang-x-net to 0.13.0 from 0.12.0a46ee659
Update gomod-golang-x-net to 0.14.0 from 0.13.007069a51
Update gomod-golang-x-net to 0.15.0 from 0.14.079432e71
Update gomod-golang/text to 0.12.0 from 0.11.02f8ebf11
Update gomod-golang/text to 0.13.0 from 0.12.01fa14a03
Update make-golangci-lint to 1.54.0 from 1.53.3fc4101dc
Update make-golangci-lint to 1.54.1 from 1.54.04e20e04f
Update make-golangci-lint to 1.54.2 from 1.54.1013cc2f6
caff: eliminate gaps and specify unused fields6a3fecd2
caff: include uncompressed bits for proper decompressed entries that can't be decoded as a formatda41a8d3
caff: initial implementation23e660f4
caff: minor formatting changesfa115722
caff: obfuscation key is a signed integer, add test data29084e35
caff: remove dead code4dd0f6d8
caff: run go fmtb3759de7
caff: run go fmtcc58c4b8
caff: update doc/formats.mdd5345f0b
cli: Rename --null/nul-output to --raw-output0c0352f2f
decode,interp: Don't shadow _key and error on missing _key44f00602
dev,jq: Reformat jq code to look more the same9cd1d0f3
dev: Move examples and snippets to wikif15f9bc1
doc,moc3,caff: Add author and regenerate docs406f3926
doc: Move up and update differences jq section a bit8edef78a
docker: Change to bookworm56fec2aa
elf: Fix broken static and segfault testsfa3dba10
gojq: Update fq fork0cefc46b
golangci: Fix gosec aliasing warnings0d014764
gomod: Update x/exp and gomarkdownc503bc13
html: Add forgotten re test0efe5a2c
id3v2: Handle W000-WZZZ,W00-WZZ URL framesa614c9df
interp: split: Correctly split binary3af0462c
luajit: file null terminator: raw bits, validatec07673a0
matroska: Update spec and regenerate441fcd09
moc3, caff: update tests and READMEf7eb0279
moc3: Fix field order in blend_shape_keyform_bindings structure, version detection in count_info03ba71b6
moc3: add support for version 5d3073c64
moc3: add test data for new version 5ce40fd19
moc3: consistency - scales array contains value elements, not scale elementsfac1e683
moc3: count_info: extra space is reserved, not normal alignment/paddinge424e293
moc3: eliminate gaps and properly handle padding, fix version 5 format decoding092662ec
moc3: initial implementation3caf34e3
moc3: nicer tree structure, use more meaningful names for array elements20f02e79
moc3: remove dead code6d10a25b
moc3: update certain array element names, explicitly mark unused or reserved space833b0636
moc3: update test data14f233d2
moc3: update testsc4e86448
mod: Update golang.org/x/exp and github.com/gomarkdown/markdown0699c80b
mp3_frame_xing: Detect lame ext more similar to ffmpeg and mediainfoe50028ac
mp4,mpeg_es: Decode iods box and MP4_IOD_Tag OD312d8078
mp4: Decode cslg boxbedd719b
mp4: Decode emsg box97194ad8
mp4: Nicer major brand and handle some qt brand short strings bettercc8e6f1a
opentimestamps: abstract away file digest sizes and support sha1, ripemd160 and keccac256.64a4ff2e
opentimestamps: account for unknown attestation types.912f4116
opentimestamps: add help text.cef5faa8
opentimestamps: add parser.1aa557d5
opentimestamps: add tests.5e7c01a0
opentimestamps: address comments and improve things.976a7564
opentimestamps: one last make doc.0a22a325
opentimestamps: satisfy linter.456a6a4f
protobuf_widevine: Make protection_scheme constants less magic
0.7.0
Added LuaJIT bytecode decoder by @dlatchx, otherwise mostly small things. Been busy with nice weather and helping our getting jq development and maintenance back on track.
Changes
- Better performance of binary arrays when they only include 0-255 numbers or strings. #704
- Make
tovalue
on binary, in addition decode value binary, respectbits_format
options. #677# uses -V to do tovalue to get a hex string # uses -r to output "raw" string $ fq -o bits_format=hex -Vr -n '[1,0xff,3] | tobytes' 01ff03
- Updated gojq fork with fixes from upstream: #679
- Improved error messages
@urid
URI format function
Decoder changes
luajit
Add LuaJIT bytecode decoder. Thanks @dlatchx #709mp4
Improved sample group definition boxsgpd
entries decoder. Thanks @ksa-real #707mp4
Improved user metadataudta
structure decoding #676wav
Decodebext
chunk. #712
Changelog
47b90603
Improved README.mdd02b70f7
Update README.md64e17f0e
Update docker-golang to 1.20.5 from 1.20.46faed675
Update github-go-version to 1.20.5 from 1.20.4b9fce9bd
Update github-golangci-lint to 1.53.1 from 1.52.2ff4048c4
Update github-golangci-lint to 1.53.2 from 1.53.176e0e17c
Update github-golangci-lint to 1.53.3 from 1.53.28e75dc9b
Update gomod-BurntSushi/toml to 1.3.2 from 1.2.16dc0746a
Update gomod-golang-x-crypto to 0.10.0 from 0.9.098351ff1
Update gomod-golang-x-crypto to 0.11.0 from 0.10.0939d98c2
Update gomod-golang-x-net to 0.11.0 from 0.10.0660ca032
Update gomod-golang-x-net to 0.12.0 from 0.11.036ef2a20
Update gomod-golang/text to 0.10.0 from 0.9.00eb6557d
Update gomod-golang/text to 0.11.0 from 0.10.0a079b73a
Update gomod-gopacket to 1.1.1 from 1.1.0c3e104bc
Update make-golangci-lint to 1.53.1 from 1.52.27c1da0ef
Update make-golangci-lint to 1.53.2 from 1.53.147ea6cf7
Update make-golangci-lint to 1.53.3 from 1.53.2fd2cb6f8
doc: Fix broken link in READMEdb2e6214
go fmt38cb8292
gojq: Update rebased fq fork41f40b7f
interp: Add to binary fast path for arrays with only 0-255 numbers and stringsb2c0e5fc
interp: Make binary also respect bits_formatb24063be
luajit: *.fqtest: add comments for generating .luac from sourcebdf158be
luajit: add luajit.md93c96965
luajit: add to probe group32300a3f
luajit: check binary.Read() errora83576a8
luajit: clarify description751ee5a3
luajit: explain LuaJITDecodeKNum, fix negative in bug3561c08a
luajit: fallbackUintMapSymStr5d9a08c6
luajit: fix regression: (u64 vs i64)64c11bed
luajit: improve debuginfo decoding1afdf8b1
luajit: initial support29ab66b3
luajit: lowercase flagse44f5c00
luajit: magic number: raw bits, check with assert23b9eeab
luajit: make doc715f850d
luajit: opcodes: implement scalar.UintMapperc3a123ad
luajit: remove unecessary dependency64c92da6
luajit: remove unused variable52ce8181
luajit: split in smaller decode functions441d246d
luajit: standardize field names (key/value/type ect.)eb819dd4
luajit: tests: improve coveragedd594f47
luajit: tests: rename lua source filec42fb9e7
luajit: typo08ae661c
luajit: use UTF8 strings1da80691
mp4: udta: Improve length/lang box probe and support empty valuee869d8af
sgpd box entries parsing8c75509e
wav: Decode bext chunk
0.6.0
Adds decoders for PostgreSQL btree, control and heap files. Thanks Pavel Safonov @pnsafonov and Michael Zhilin @mizhka
Adds new option skip gaps and output binary as hex string.
Make bits
/bytes
formats work a bit more intuitive.
Bug fixes to to_hex
, to_base64
and trim
functions.
Bug fixes and additions to bson
, bitcoin_transaction
, mp4
, id3v2
, html
, and matroska
formats.
Changes
bits
,bytes
now are real binaries and not raw decode value. This means they behave more like you would expect. #666# build your own strings(1)-like tool: # scan matches range in a binary using a regexp and output ranges as new binaries # \w\s looks for whitespace and alpha/numeric characters # uses `...` raw string literal to not have to escape # select/test to only include strings containing "thread" # dd to display with no truncation $ fq -d bytes 'scan(`[\w\s]{16,}`) | select(test("thread")) | dd' file.mp4 │00 01 02 03 04 05 06 07│01234567│ 0x250│36 20 6c 6f 6f 6b 61 68│6 lookah│.: raw bits 0x250-0x262.7 (19) 0x258│65 61 64 5f 74 68 72 65│ead_thre│ 0x260│61 64 73 │ads │ │00 01 02 03 04 05 06 07│01234567│ 0x260│ 31 20 73 6c│ 1 sl│.: raw bits 0x264-0x273.7 (16) 0x268│69 63 65 64 5f 74 68 72│iced_thr│ 0x270│65 61 64 73 │eads │
to_hex
,to_base64
now correctly handles raw decode values, before the raw bits would be turned into codepoints and then binary UTF-8 possibly introducing invalid codepoints (0xfffd). Thanks @Rogach #672$ fq -r '.uncompressed | to_hex' file.gz f6f2074cf77d449d # with the change to add hex bits format you can also do this now $ fq -Vr -o bits_format=hex .uncompressed file.gz f6f2074cf77d449d
tovalue
Now output a "deep" jq value, before it was shallowly a jq value which could be confusing, extovalue | .header
could be a decode value.- New option
skip_gaps
for-V
/tovalue
can be used to filter out gap fields when represented as JSON. Gaps are bit ranges that no decoder added any field for. #649- Can for example be used to remove trailing data that will end up as
gap0
etc. - Note that gaps in an array that gets filtered out might affect index numbers.
- Can for example be used to remove trailing data that will end up as
- Add
bits_format=hex
to represent raw bits as hex string in JSON. #673# output decode tree, JSON with binaries as strings and JSON with binaries as hex strings $ fq '.packets[0].packet | ., tovalue, tovalue({bits_format:"hex"})' file.pcap │00 01 02 03 04 05 06 07│01234567│.packets[0].packet{}: (ether8023_frame) 0x28│8c 85 90 74 b8 3b │...t.; │ destination: "8c:85:90:74:b8:3b" (0x8c859074b83b) 0x28│ e8 de│ ..│ source: "e8:de:27:c8:9a:6e" (0xe8de27c89a6e) 0x30│27 c8 9a 6e │'..n │ 0x30│ 08 06 │ .. │ ether_type: "arp" (0x806) (Address Resolution Protocol) 0x30│ 00 01│ ..│ payload: raw bits 0x38│08 00 06 04 00 01 e8 de│........│ 0x40│27 c8 9a 6e c0 a8 01 01│'..n....│ 0x48│00 00 00 00 00 00 c0 a8│........│ 0x50│01 e6 │.. │ { "destination": "8c:85:90:74:b8:3b", "ether_type": "arp", "payload": "\u0000\u0001\b\u0000\u0006\u0004\u0000\u0001\ufffd\ufffd'Țn\ufffd\ufffd\u0001\u0001\u0000\u0000\u0000\u0000\u0000\u0000\ufffd\ufffd\u0001\ufffd", "source": "e8:de:27:c8:9a:6e" } { "destination": "8c:85:90:74:b8:3b", "ether_type": "arp", "payload": "0001080006040001e8de27c89a6ec0a80101000000000000c0a801e6", "source": "e8:de:27:c8:9a:6e" }
- Explicit use of
d
/display
on a binary will now always hexdump, this feels more intuitive. Before it could output raw binary asdisplay
is used as an implicit output function. Implicit (you don't mentiond
at all) can still output raw binary. #665# outputs raw binary (if stdout is not a tty) $ fq -n '[1,2,3] | tobytes' | xxd 00000000: 0102 03 # outputs hexdump (even if stdout is not a tty) as we explicitly use d $ fq -n '[1,2,3] | tobytes | d' | cat |00 01 02 03 04 05 06 07|01234567| 0x0|01 02 03| |...| |.: raw bits 0x0-0x2.7 (3)
trim
can now handle multi-line strings. #668- Help texts originated from markdown are now rendered a bit more nicely and compact. #661
- Fix weirdly rendered monospace font in demo SVG when using Japanese locale and Chrome on macOS. Thanks @acevif helping with investigation. #655 #662
- Fix a bunch of typos. Thanks @kianmeng and @castilma. #644 #670
Decoder changes
bits
,bytes
Is a proper binary not a raw decode value. #666bitcoin_transaction
Properly decode witness items array. #671 Thanks @Rogachbson
Add javascript, decimal128, minkey and maxkey support. Fix decoding of datetime and use the correct size type for binary and document size. Thanks Matt Dale @matthewdale. #650id3v2
- Add WXXX frame support. #656
- Add CTOC flags support. #657
html
Is now probeable. #667matroska
Fallback raw is probe fail orfile_data
#645mp4
- Better description for terminator atom (is a QuickTime thing) #651
ctts
,infe
,iinf
,trun
more proper decoding based on version. #643- Use correct QuickTime epoch for timestamps. #674
pg_btree
,pg_control
,pg_heap
Add PostgreSQL btree, control and heap support. Thanks Pavel Safonov @pnsafonov and Michael Zhilin @mizhka. #415
Changelog
d4f8dfa2
Add flavour arg to postgres parser3c6ea870
Add heap infomask flags parser to PostgreSQL0107d122
Add pgproee14 flavour to postgres9a96da86
Add postgres pg_control parser3b81d99f
DBState enum for postgres51878dcd
PostgreSQL heap page parser implememtation.6ed02639
PostgreSQL: accept only normal item pointersffc08cfc
PostgreSQL: add heap for pgpro14b4ae1d58
PostgreSQL: add pg_control for pgproee 12a6537107
PostgreSQL: add pg_control to pgpro14d9de2d4f
PostgreSQL: fix96a86e20
PostgreSQL: fixes96a96a5b
PostgreSQL: heap impl for pgproee 126618e766
PostgreSQL: heap impl for version 11ce9ae761
PostgreSQL: heap tuples implementationffd7c9b0
PostgreSQL: implement pgproee 14850dc608
PostgreSQL: lp_flags formatf5278f38
PostgreSQL: pg_control for ver 1207056c2b
PostgreSQL: pg_control impl for pgproee 10972c5a39
PostgreSQL: pg_control, pgheap impl for pgproee13d1487278
PostgreSQL: pgheap impl for pgproee102d3884a3
PostgreSQL: pgproee11 heap impld8b891c0
PostgreSQL: pgproee11 pg_control implb722b219
PostgreSQL: reffdb3b3e4
PostgreSQl: fix offset621c4c4b
PostgreSQl: heap impl for version 13c273a6c9
PostgreSQl: pg_control impl for version 1301b380e8
PostgrreSQl heap decode refactoringbebdfa94
Try to implement pgwal - fail.c9d3b8fb
Update docker-golang to 1.20.4 from 1.20.32a5927b5
Update github-go-version to 1.20.4 from 1.20.3c405afd4
Update gomod-golang-x-crypto to 0.9.0 from 0.8.0ed0cd6d2
Update gomod-golang-x-net to 0.10.0 from 0.9.0deaf5ef0
WalLevel for postgresf069ddc2
[WIP] initial attempt to add postgres2b1bdfb3
add icu version mappercf1e7b23
add pgpro11 for postgres9570d4df
add pgpro12 postgres7bf6b11e
add pgpro13 heap2b3035fe
add pgpro13 to postgresf56c72d3
add postgres tests for mem, cpu profiling2ee01f79
allow to change FillGaps in decodera3361e70
bitcoin: fix witness item structs222cd88b
bits,bytes: Behave as binary instead of raw decode value9a982d0a
bson: add BSON test file generator module and correct BSON format docs40630d39
bson: fix doc formatting and add author info2017ff87
bson: support all non-deprecated types and fix int/uint bugsb08ef00d
decode,interp: Refactor format groups into a proper structaf68511a
dev,doc Clarify some dev docs and rename launch.json to be a template97c952b3
doc: Add some more examples88be3a7f
doc: Hopefully fix svg fixed font issuedd4fa268
doc: fix typosb0e4da28
fix non-ascii characters handling in to_hex and to_base64 functionsa4a332bf
formats: Clenaup naming a bitb3b6cd0e
gzip.go: fix typo in variablename: delfate2c505fee
help,markdown: Rewrote and made text rendering nicere2eb6670
html: Add to probe groupd010dcec
id3v2: Add WXXX (desc/url) frame supportf237db27
id3v2: Decode CTOC flags684a0838
interp,decode: Support decode group argument8a468f45
interp: Add hex bits formatc5127139
interp: Add skip_gaps option for tovalue/-V033498b2
interp: Don't output raw binary if display is called explicitlyee66fece
interp: Make tovalue output behave as jq valued5ae1165
interp: trim: Add multi-line support8d317ddf
lsn mapperfcd7fbcc
mappers for postgres8941b139
matroska: file_data: Fallback to raw if probe fails7adc1e70
mp4: Better description for QuickTime terminator atom493848a7
mp4: Use correct epoch for quicktime timestamps3c6d31b0
mp4: ctts,infe,iinf,trun: More ISOMFF version handlingd6f785c6
pcap: Add forgotten help test8cf83fbc
pg_control implementation441eceea
pgpro version mapper5ff62735
postgres: add additional checks in pg_heap46765906
postgres: add argument to calc page's check sum correctly7fd41090
postgres: add btree index tests1aa08e33
postgres: add btree, pg_control to how_to.md2423f86b
postgres: add how_to.md - how to generate test files for postgres97bbc22a
postgres: add page arg in pg_btree, change args names in pg_heap6aed2387
postgres: add pg_wal for pgproee11 as copy of postgres1408eb3034
postgres: add postgres format docs, refactoing postgres flavours90386a65
postgres: add postgres.md to format09c42c35
postgres: add state to wal structc2591ac8
postgres: add test data with specific valuesde68785a
postgres: add test files4db1284f
postgres: add tests3c7ed5d7
postgres: add tests datae66baa75
postgres: add wal checksfb7778a5
postgres: add wal tests9f61e637
postgres: allow all flovours to decode btree indexccf2edb5
postgres: better versions probing in pg_control, fix holes, better testsf3f259af
postgres: btree add free spaceefda7b32
postgres: btree handle full file87b7acf3
postgres: btree impld370f5d9
postgres: btree imple8391916
postgres: btree refactored by Mattias Wadman9f1adb2d
postgres: change AssertPosBytes to AssertPos (bits)3e09f9f1
postgres: change tuple struct in heape6a9cdbe
postgres: doc6281b50d
postgres: exclude wal tests for now0ea20e68
postgres: fail on error in pg_heapba8b90ba
postgres: fill gap alignment in heap tuple1d9ef300
postgres: first correct read of WAL filee5f15c5f
postgres: fix compilation, fix testsbffa0083
postgres: fix error in testsc23bc421
postgres: fix line endings in error messages, simplify code, add comments9508a209
postgres: fix lint85c04228
postgres: fix lintere8bb1692
postgres: fix pg_wal when XLogRecord size is more than page size666bbfba
postgres: fix some unknown, chanche tests tovalue -> dvde3ecf16
postgres: generate docs by embedded md939c7c17
postgres: how_to.mddafbf4b7
postgres: lint fixes6fe5f05f
postgres: lint, doc9f5036a3
postgres: made root an array46e1e337
postgres: make page size const1e24d70e
postgres: move SeekAbs(0) to Probeae838b92
postgres: move postgres.md to formats.md, add btree tests03d8fe1c
postgres: page sum impl22a6cfa5
postgres: pg_btree add opaque flagsdd84d321
postgres: pg_btree begin implb06c9bc2
postgres: pg_control change default flavour to empty string - it uses versions prober. Fix root name in pg_heap.edb56502
postgres: pg_control refactoring9deab2ea
postgres: pg_heap fix page_begin, page_end7dd7dbee
postgres: pg_heap reafactoring00de0a96
postgres: pg_heap refactoring35124bf2
postgres: pg_heap refactoringe8d8caca
postgres: pgpro wal implementationd7a0f930
postgres: pgpro wal refactoring067f8d56
postgres: pgwal checks78583731
postgres: postgres 10 support5664c0a4
postgres: refactor ItemIdData08c53523
postgres: refactoring296ce68e
postgres: refactoring7b52149c
postgres: refactoring7c92715f
postgres: refactoring7dedcbab
postgres: refactoringa4d904e1
postgres: refactoringbedc480a
postgres: refactoringd7bcca0a
postgres: refactoringe06fa6e1
postgres: refactoringe57c3b98
postgres: refactoringf224ed00
postgres: refactoringf6f8d5c0
postgres: refactoringff4b6fdf
postgres: refactoring - remove GetHeapD7f7f729c
postgres: refactoring, tests12b86973
postgres: regenerate docs8f55e177
postgres: remove SeekAbs(0) where it's not used.6e2e44d6
postgres: remove arg in pg_btree5eea605f
postgres: remove duplicate tests5bb86544
postgres: remove lsn parameter in pg_wal60709e5a
postgres: remove pg_wal. Failed to implement.e87d5a6b
postgres: remove unused code448c3690
postgres: try to implement pg_wal586c803f
postgres: try to implement wal7a89234b
postgres: update docc9350de3
postgres: use bit stream instead of masks to get flagsc9b263e9
postgres: version 15 supporta4c1c5b8
postgres: wal conste311434b
postgres: wal decoding implementc105fcdd
postgres: wal impl7c1dfbd0
postgres: wal implementation26bff144
postgres: wal refactoingb09ec2fc
postgres: wal refactoing069babbc
postgres: wal refactoringbd2bdd64
postgres: wal refactoring015b7705
postgres: wal support multiple xlog_body for wal recordc3ef3411
postgresql: general logic for pg_heap, pg_btree721c1ab3
psotgres: refactoring03274113
refc8ece642
show mock_authentication_nonce as hexaf0e2207
unix time mapper for postgres
0.5.0
Mostly a bug fix release but adds -V
for easy JSON output.
Changes
-
Add
-V
argument to default output JSON instead of decode tree in case of decode value. #385 Thanks @peterwaller-arm for reminding me to merge this.# default in case of decode value is to show a hexdump tree $ fq '.headers | grep_by(.id=="TSSE").text' file.mp3 │00 01 02 03 04 05 06 07 08 09 0a 0b│0123456789ab│ 0x0c│ 4c 61 76│ Lav│.headers[0].frames[0].text: "Lavf58.76.100" 0x18│66 35 38 2e 37 36 2e 31 30 30 00 │f58.76.100. │ # with -V an implicit "tovalue" is done $ fq -V '.headers | grep_by(.id=="TSSE").text' file.mp3 "Lavf58.76.100" # and in combination with -r will for strings output a "raw string" without quotes # for other types like number, object, array etc -r makes not difference (same as jq) $ fq -Vr '.headers | grep_by(.id=="TSSE").text' file.mp3 Lavf58.76.100
As a side note
-V
can be used with binary type also. Then the binary data will be interpreted as UTF-8 and turned into a string.# trailing null terminator ends up as codepoint zero `\u0000` $ fq -V '.headers | grep_by(.id=="TSSE").text | tobytes' file.mp3 "Lavf58.76.100\u0000" # with -r null terminator and a new line is outputted $ fq -Vr '.headers | grep_by(.id=="TSSE").text | tobytes' file.mp3 | hexdump -C 00000000 4c 61 76 66 35 38 2e 37 36 2e 31 30 30 00 0a |Lavf58.76.100..| 0000000f # in contrast raw binary output has no new line separator $ fq '.headers | grep_by(.id=="TSSE").text | tobytes' doc/file.mp3 | hexdump -C 00000000 4c 61 76 66 35 38 2e 37 36 2e 31 30 30 00 |Lavf58.76.100.| 0000000e
-
Fix issue using decode value in object passed as argument to internal function. #638
# this used to fail but now works fq '.tracks[0].samples[10] | avc_au({length_size: <decode value>})' file.mp4
-
Some typo fixes. Thanks @retokromer and @peterwaller-arm
Decoder changes
aiff
Basic AIFF decoder added. #614matroska
Update to latest specification. #640msgpack
Fix bug decoding some fixstr lengths. #636 Thanks @schmee for reporting.
Changelog
4ad1cced
Update docker-golang to 1.20.3 from 1.20.2f7dca477
Update github-go-version to 1.20.3 from 1.20.2c9608939
Update github-golangci-lint to 1.52.0 from 1.51.20a6b46c8
Update github-golangci-lint to 1.52.1 from 1.52.0c4eb67d9
Update github-golangci-lint to 1.52.2 from 1.52.119140a6f
Update gomod-creasty-defaults to 1.7.0 from 1.6.06e5df724
Update gomod-golang-x-crypto to 0.8.0 from 0.7.06c4aebfe
Update gomod-golang-x-net to 0.9.0 from 0.8.0f13cc979
Update gomod-golang/text to 0.9.0 from 0.8.0e2af57ee
Update gomod-gopacket to 1.1.0 from 1.0.0a63fd684
Update make-golangci-lint to 1.52.0 from 1.51.2d3d1f0e8
Update make-golangci-lint to 1.52.1 from 1.52.0f0b08457
Update make-golangci-lint to 1.52.2 from 1.52.1dc4a82ee
aiff: Add basic decoderc5f6809b
decode,fuzz,dev: Move recoverable error check to recoverfn.Run980ecdba
decode: Add float 80 readera6c4db75
decode: Cleanup old unused help system code87e5bb14
fix typo0b6ef2a9
golangci-lint: Disable revive unused-parameter and update for new default config427ce78d
interp: Add --value-output/-V option to do tovalue before output9a1ef84c
interp: Allow and convert JQValues:s (ex decode value) in function arg objects3dd2c61d
interp: Fix input completion regression in sub-REPLs5415bfca
interp: Make completion work again2a2b64dd
matroska: Update ebml specification82da99c9
msgpack: Add str, array and object type tests97360d6f
msgpack: fixstr length field is 5 bitsffc66db0
readline: remove direct access to (*Instance).Confige1b02312
wav: Cleanup avi leftovers
0.4.0
TLS decode and decryption, better streaming matroska/webm support, support raw IP in PCAP and bug fixes.
Changes
- Fix panic when interrupting big JSON output. #573
- Support passing options (
-o name=value
) to nested decoders. #589- Allows for example to pass keylog to a TLS decoder inside a PCAP file or to tell a container decoders to not decode samples inside a ZIP file etc.
- Exit with error if
-o name=@path
fails to read file atpath
. #597
Decoder changes
id3v2
Properly decode CTOC subframes. #606matroska
- Now supports streaming matroska and webm better (master elements with unknown size). #576 #581
- Add
decode_samples
option. #574 - Spec update and clean up of symbols and descriptions. #580
pcap,pcapng
Support raw IPv4 and IPv6 link frames. #599 #590tls
Add Transport layer security decoder and decryption. #603- Supports TLS 1.0, 1.1, 1.2 and some SSL 3.0.
- Decodes records and most messages and extensions.
- Can decrypt most common cipher suites if a keylog is provided. See documentation for list of supported ciphers suites.
# show first 50 bytes of decrypted client/server TLS application data stream # -o keylog=@file.pcap.keylog is used to read keylog from a file # first .stream is TCP stream, second .stream the application data stream $ fq -o keylog=@file.pcap.keylog '.tcp_connections[0].["client", "server"].stream.stream | tobytes[0:50] | dd' file.pcap │00 01 02 03 04 05 06 07 08 09 0a 0b│0123456789ab│ 0x00│47 45 54 20 2f 64 75 6d 70 2f 6c 6f│GET /dump/lo│.: raw bits 0x0-0x31.7 (50) 0x0c│67 20 48 54 54 50 2f 31 2e 31 0d 0a│g HTTP/1.1..│ 0x18│48 6f 73 74 3a 20 69 6e 77 61 64 65│Host: inwade│ 0x24│72 2e 63 6f 6d 0d 0a 55 73 65 72 2d│r.com..User-│ 0x30│41 67 │Ag │ │00 01 02 03 04 05 06 07 08 09 0a 0b│0123456789ab│ 0x00│48 54 54 50 2f 31 2e 31 20 32 30 30│HTTP/1.1 200│.: raw bits 0x0-0x31.7 (50) 0x0c│20 4f 4b 0d 0a 41 63 63 65 70 74 2d│ OK..Accept-│ 0x18│52 61 6e 67 65 73 3a 20 62 79 74 65│Ranges: byte│ 0x24│73 0d 0a 43 6f 6e 74 65 6e 74 2d 4c│s..Content-L│ 0x30│65 6e │en │ # show first TLS record from server $ fq '.tcp_connections[0].server.stream.records[0] | d' file.pcap │00 01 02 03 04 05 06 07 08 09 0a 0b│0123456789ab│.tcp_connections[1].server.stream.records[0]{}: record 0x00│16 │. │ type: "handshake" (22) (valid) 0x00│ 03 03 │ .. │ version: "tls1.2" (0x303) (valid) 0x00│ 00 40 │ .@ │ length: 64 │ │ │ message{}: 0x00│ 02 │ . │ type: "server_hello" (2) 0x00│ 00 00 3c │ ..< │ length: 60 0x00│ 03 03 │ .. │ version: "tls1.2" (0x303) │ │ │ random{}: 0x00│ 86│ .│ gmt_unix_time: 2249760024 (2041-04-16T21:20:24Z) 0x0c│18 9d 18 │... │ 0x0c│ 19 92 33 c2 21 ce 4f 97 30│ ..3.!.O.0│ random_bytes: raw bits 0x18│28 98 b3 fd 1e 15 f4 36 bb e9 14 f4│(......6....│ 0x24│67 61 66 79 d5 3f 06 │gafy.?. │ 0x24│ 00 │ . │ session_id_length: 0 │ │ │ session_id: raw bits 0x24│ c0 2f │ ./ │ cipher_suit: "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256" (0xc02f) 0x24│ 00 │ . │ compression_method: "null" (0x0) 0x24│ 00│ .│ extensions_length: 20 0x30│14 │. │ │ │ │ extensions[0:2]: │ │ │ [0]{}: extension 0x30│ ff 01 │ .. │ type: "renegotiation_info" (65281) 0x30│ 00 01 │ .. │ length: 1 0x30│ 00 │ . │ data: raw bits │ │ │ [1]{}: extension 0x30│ 00 10 │ .. │ type: "application_layer_protocol_negotiation" (16) 0x30│ 00 0b │ .. │ length: 11 0x30│ 00 09│ ..│ serer_names_length: 9 │ │ │ protocols[0:1]: │ │ │ [0]{}: protocol 0x3c│08 │. │ length: 8 0x3c│ 68 74 74 70 2f 31 2e 31 │ http/1.1 │ name: "http/1.1" # use ja3.jq to calculate ja3 TLS fingerprint # https://github.com/wader/fq/blob/master/format/tls/testdata/ja3.jq $ fq -L path/to/ja3 'include "ja3"; pcap_ja3' file.pcap [ { "client_ip": "192.168.1.193", "client_port": 64126, "ja3": "771,4866-4867-4865-49196-49200-159-52393-52392-52394-49195-49199-158-49188-49192-107-49187-49191-103-49162-49172-57-49161-49171-51-157-156-61-60-53-47-255,0-11-10-16-22-23-49-13-43-45-51-21,29-23-30-25-24,0-1-2", "ja3_digest": "bc29aa426fc99c0be1b9be941869f88a", "server_ip": "46.101.135.150", "server_port": 443 } ]
toml
Fail faster to speed up probe. Could in some cases read the whole file before failing. Thanks @0-wiz-0 for report. #594zip
Properly decode EOCD record in zip64 files. Thanks @0-wiz-0 for report and spec interpretation. #586 #596xml
Fail faster to speed up probe. Could in some cases read the whole file before failing. Thanks @0-wiz-0 for report. #594
Changelog
0581ecea
Update docker-golang to 1.20.1 from 1.20.072870a5a
Update docker-golang to 1.20.2 from 1.20.102e573a9
Update github-go-version to 1.20.1 from 1.20.0, 1.20.0, 1.20.0c5130887
Update github-go-version to 1.20.2 from 1.20.1ce263726
Update github-golangci-lint to 1.51.1 from 1.51.075bfdda3
Update github-golangci-lint to 1.51.2 from 1.51.1b1d9306b
Update gomod-golang-x-crypto to 0.6.0 from 0.5.0c03d3ccd
Update gomod-golang-x-crypto to 0.7.0 from 0.6.02430fba7
Update gomod-golang-x-net to 0.6.0 from 0.5.0dd8ab799
Update gomod-golang-x-net to 0.7.0 from 0.6.080a07446
Update gomod-golang-x-net to 0.8.0 from 0.7.097643b98
Update gomod-golang/text to 0.7.0 from 0.6.0e7168b99
Update gomod-golang/text to 0.8.0 from 0.7.036df57eb
Update make-golangci-lint to 1.51.1 from 1.51.070e08faa
Update make-golangci-lint to 1.51.2 from 1.51.150d26ec7
colorjson: Handle encoding error value5c8e1151
colorjson: Refactor to option struct8e0dde03
decode: Support multiple format args and some rename and refactora1bb630a
doc,fq: Improve cli help and some cleanup156aeeca
doc: Add FOSDEM 2023 talk3e0ebafa
doc: Run make doc3cc83837
gojq: Update fq forkdec433fc
help,markdown: Fix double line breaks when converting to textc75a83c8
help: Show default option value as JSONcc52a441
id3v2: Decode subframes for CTOC and add struct for headersdc79a73b
interp,json: Move error handling to colorjson73db6587
interp: Exit with error if -o name=@path fails to be read, also documentc8666eeb
ipv4_packet,ipv6_packet,sll_packet,sll2_packet: Support ipv4/ipv6 link frames and pass correct in argb60aceca
matroska: Add decode_samples option9aaf2ddf
matroska: Add unknown size test and add description to ebml headera8d0bf4d
matroska: Assume master with unknown size has ended if a valid parent is found0d14d7b4
matroska: Handle unknown size for non-master types a bit betterc890a289
matroska: Update spec and make refs in descriptions look nicer6c032455
pcap,pcapng,ipv4,ipv6: Support raw link type (ipv4 or ipv6)d4ea6632
pcap: Add ipv4 fragments tcp testf50bd6ee
readline: Update fq fork9852f56b
tls: Add TLS 1.0, 1.1, 1.2 decode and decryption56edb59e
toml,xml: Fail fast on invalid content5228fdd6
zip: Correctly look for and decode both zip32/64 EOCD recordbdd6718d
zip: Correctly peek for zip64 EOCD
0.3.0
Bug fix release, no new features mostly due to holidays and busy with other things (some jq related!).
Also been preparing for a talk about fq this weekend at FOSDEM 2023.
Changes
- TCP reassembly is now less strict about invalid TCP options. Turns out some options might end up wrong in packet captures due to hardware acceleration etc. For example it seems to be common that TCP segments end up larger than configured connection MSS. Now PCAP:s with those kinds of TCP segments should be reassembled correctly.
- REPL now handles the del key properly. Before it could in some cases cause the output to be ignored.
Decoder changes
mp3
Add option for max unknown bits to handle more mis-probing. Default to 50%mp4
ftyp
set minor description to date for "qt" filestkhd
decode enabled, preview, etc flagsudta
Handle case with box type is key and value rest of boxsgpd
,sbgp
Change grouping type to a string as it seems to be what it is in practice.
tcp_segment
Decode all standard options, MSS, Window scale, timestamp etc. Rename "maxseg" to "mss".
Changelog
8702e1d1
Update docker-golang to 1.19.5 from 1.19.4a7f37d73
Update docker-golang to 1.20.0 from 1.19.5826d9a52
Update github-go-version to 1.19.5 from 1.19.4, 1.19.4, 1.19.4d338c8b7
Update github-go-version to 1.20.0 from 1.19.5, 1.19.5, 1.19.5ad4919a8
Update github-golangci-lint to 1.51.0 from 1.50.1e8ecbf95
Update gomod-golang/text to 0.6.0 from 0.5.0f1057b9b
Update make-golangci-lint to 1.51.0 from 1.50.1ca27e426
doc: Add _parent for decode values and clenaup doc a bitb04a650b
flac_picture,mpeg: Fix trailing ")" typo in map sym and description57144b2f
github-action: Use quotes because yaml (1.20 -> 1.2)0aa6e3e2
gojq: Update rebased fq fork7855b359
gomod: Update non-bump tracked mods and add bump config6e17de36
goreleaser: Use name_template instead of deprecated archive replacements8b49b42f
interp: Wrap Binary in decodeValue to fix prompt issue with bits/bytes format2d82c05f
mp3: Add max_unknown option to fail decode if too much unknown bitsf386a515
mp4: Decode qt minor version as YYYY.MM description3555dc67
mp4: Decode tkhd flagsc3e3b3e9
mp4: Decode udta metadata boxes without meta boxc49012db
mp4: sgpd,sbgp: Change grouping_type to a string63403658
mp4: udta: Handle box with value rest of box55ef7a4b
readline: Update fq fork to fix draw issue when using del key1eb5e502
tcp: Ignore TCP option check for now as it seems unreliable in dumps62e2cef5
tcp_segment: Decode standard options and rename maxseg to mss
0.2.0
This ended up being a release to cleanup old sins in the decoder internals and change some defaults how binary values work with JSON and string functions.
It also adds a new Time Zone Information Format decoder tzif
(Thanks Takashi Oguma @bitbears-dev) and a new Apple BookmarkData decoder apple_bookmark
decoder (Thanks David McDonald @dgmcdona). Also a new function from_ns_keyed_archiver
was added to convert NSKeyedArchiver encoded objects into JSON.
A possible breaking change is that now all from
/to
prefix functions now has a from_
/to_
prefix, ex: from_mp3
instead of frommp3
. There are some few exceptions to this. Note that the functions named just be the format name, ex mp3
are still around.
In other fq related news jq-lsp got some fixed and additions and seems to work fine with neovim. It's also possible to use jq-lsp with vscode using vscode-jq.
Changes
- All functions that had a
from
/to
prefix now has the prefixfrom_
/to_
. This is to be easier to read and more consistent, there are still some exceptions liketovalue
,torepr
,tobytes
etc but in general anything that does not deal with primitive types is nowsnake_case
. #535 - Change default
bit_formats
option value (how raw bits values are represented in JSON) fromsnippet
tostring
.snippet
meant truncated bits as base64. Now all bits are included as a UTF-8 string. The string will be binary safe (not lose any data) when used internally in fq but will lose data when represented in JSON as some bytes can't be encoded as UTF-8. #499 - Don't auto convert to binary for string/regexp functions, turned out this is very confusing. Now you have to manually use
tobytes
etc to convert to binary value. #540# This used to not work as test/1 would convert decode values to the source bytes # (0x00 0x00 0x00 0x01) in this case. Now the jq value (symbolic in this case) will # be used instead. You can do ".test | tobytes" to get old behavior. # # find all types with a "mdta." prefix $ fq -o line_bytes=10 'grep_by(.type | test(`^mdta\.`))' file.mp4 │00 01 02 03 04 05 06 07 08 09│0123456789│.boxes[3].boxes[2].boxes[0].boxes[2].boxes[0]{}: box 0x528│ 00 00 00 1c │ .... │ size: 28 0x528│ 00 00 00 01│ ....│ type: "mdta.title" ("\x00\x00\x00\x01") 0x532│00 00 00 14 64 61 74 61 00 00│....data..│ boxes[0:1]: 0x53c│00 01 00 00 00 00 74 65 73 74│......test│ │00 01 02 03 04 05 06 07 08 09│0123456789│.boxes[3].boxes[2].boxes[0].boxes[2].boxes[1]{}: box 0x546│00 00 00 25 │...% │ size: 37 0x546│ 00 00 00 02 │ .... │ type: "mdta.encoder" ("\x00\x00\x00\x02") 0x546│ 00 00│ ..│ boxes[0:1]: 0x550│00 1d 64 61 74 61 00 00 00 01│..data....│ 0x55a│00 00 00 00 4c 61 76 66 35 39│....Lavf59│ 0x564│2e 32 37 2e 31 30 30│ │.27.100│ │
- Fix panic when cancel (ctrl-c etc) before interpreter is executing. Thanks @pldin601 for reporting. #495
- Fix error using JQValue:s in assign/update paths, ex
.[<JQValue here>] = 123
#509 - Rename fields added for bit-ranges not used by a decoder from
unknown#
togap#
. "unknown" is probably a useful field name in some formats and "gap" describe better what it is. #500 - Big decode API internals refactor to split scalars types into their own go types so they can store per type specific values. This also opens up for more ways to make fq both faster and more memory efficient. It also makes the decode API more type safe and makes it possible to experiment with decode DLS that uses chained methods etc. #523
Decoder changes
apple_bookmark
New Apple BookmarkData decoder. Thanks David McDonald @dgmcdona. #493bplist
- Fix decoding of UID types
- Adds a
lost_and_found
array with unused values - Fix an endian issue for unicode strings
- Add NSKeyedArchiver to JSON helper function
from_ns_keyed_archiver
, seebplist
docs for details on how to use it. Thanks David McDonald @dgmcdona. #493
# decode bplist, from_ns_keyed_archiver converts to JSON plist and then into object data as JSON, find app bookmarks keys and expand them as bookmark data and convert to represented JSON, and finally build path to applications $ fq -r 'from_ns_keyed_archiver | (.. | .Bookmark? // empty) |= (apple_bookmark | torepr) | .. | .target_path? // empty | join("/")' recentapps.sfl2 System/Applications/Utilities/Terminal.app Applications/Spotify.app System/Applications/Calculator.app System/Applications/Preview.app Applications/Alacritty.app Applications/DB Browser for SQLite.app System/Applications/System Preferences.app System/Library/CoreServices/Applications/Directory Utility.app System/Applications/Utilities/Activity Monitor.app Applications/Safari.app
tzif
new Time Zone Information Format decoder. Thanks Takashi Oguma @bitbears-dev. #498mp4
- Map
mdta
metadata namespace and key names forilst
child boxes. #521
$ fq 'grep_by(.type=="ilst").boxes | map({key: .type, value: .boxes[0].data}) | from_entries' file.mp4 # create object with all ilst key/value pairs { "mdta.encoder": "Lavf59.27.100", "mdta.title": "test" } # query specific value $ fq -r 'grep_by(.type=="mdta.encoder").boxes[0].data | tovalue' file.mp4 Lavf59.27.100
- Support
sidx
version 1. #506 - Add description and symbolic values for traf sample flags, makes it easier to see and query for I-frames etc. #514
# which boxes has depends_on flags $ fq 'grep_by(.sample_depends_on) | parent.type' fragmented.mp4
- Support PNG codec mapping. #492
- Decode
pdin
boxes. #524 - Decode
hnti
boxes. #513
- Map
mp3_tags
Add VBRI support and split into intomp3_frame_xing
andmp3_frame_vbri
decoders. #525
Changelog
7fa8b635
Add related file format projects to README4fdb7362
Update docker-golang to 1.19.4 from 1.19.3519eff6c
Update github-go-version to 1.19.4 from 1.19.3, 1.19.3, 1.19.32a91d293
Update gomod-golang/text to 0.5.0 from 0.4.0cb15b371
added checks to prevent infinite looping and recursionc2445335
added some sfl2 test files to bplist package7d13cf73
adds flag parsing to applebookmark71b17d03
apple bookmarkdata decoder initial commit8f39ef63
bplist: Harmonize ns_keyed_archive jq style a bitcba72dbd
bplist: added overload for from_ns_keyed_archiver jq func129b4b70
bplist: doc: update docs to reflect changes to ns_keyed_archiver9dab3c60
bplist: minor fix to from_ns_keyed_archiver448c3efb
bplist: update docs with from_ns_keyed_archiver reference, add error case to functiona9047c02
bplist: updates from_ns_keyed_archiver to do automatic torepr based on format detection4a28e44f
changes decoder package name from bookmark to apple_bookmarkd0b044c2
converts to snake_case and refactors decode helperd199793a
created stack typee77f7769
decode,interp: Rename unknown gap fields from "unknown#" to "gap#"a85da295
decode: Make FieldFormat usage more consistent9b81d4d3
decode: More type safe API and split scalar into multiple types3ec0ba3f
decode: add ns_keyed_archiver, restructure apple decoder into apple package330d5f7f
decode: apple_bookmark: simplifies flag decoding93f2aa5d
decode: change PosLoopDetector to use generics7e98b538
decode: fix type on defer function call, test: add loop.fqtesta873819e
decode: fixes endian of unicode stringsf747873d
decode: implements lost and found for unreferenced objectsb45f9fa6
decode: improve stack push/popa162e07b
decode: minor change to method receiver name3232f9cc
decode: moves PosLoopDetector into its own package7c9504c7
decode: moves macho decoder to apple package70834678
decode: remove dead code from ns_keyed_archiver7ab44662
decode: remove unused field from decoder, unused parens from toreprbdb81662
decode: removed unnecessary struct98eab8cb
decode: rename parameter for consistency04379df8
decode: revert decode.D back, place posLoopDetector in apple_bookmark7fb674b5
decode: unexport methodsfa368bb7
decode: updates all.go with correct macho path0287ffa4
decoding well but torepr needs work42debe58
dev,doc,make: Cleanup makefile and have proper targets for *.md and *.svg423bab9e
dev,test: Use jqtest code from jqjq for jq tests6fc84a88
doc,dev: Add more usage and dev tips2fc16ae2
doc: Add some padding margin to formats table to make it less likely to cause git conflicts62f377c2
doc: fixes snippet for recursive bookmark searching22064f50
doc: remake4aad2fde
doc: remakeb872b1a3
doc: remake1e1fc551
fixed one more snake_case letterd0b76cae
fixes broken test and removes long link from markdown body5146f28d
fixes broken test for all.fqtest253033cc
fixes broken uid parsing in plist decoderf535ad3d
fixes spacing in jq files64351e8b
fixes tests and adds torepr testc7d00b87
fixes unknown bit ranges8f930aac
forgot to add bookmark.jq in last commit164e527b
gojq: Update rebased fq fork6c869451
gojq: Update rebased fq fork578b84d4
interp,display: Add workaround for go 1.18 when escaping 0x7f42d9f2c2
interp,help: Properly count line length when breaking on whole words8d69f1fb
interp: Change default bits_format=string6c229d73
interp: Don't auto convert to binary for string functions, is just confusing568afff3
interp: Fix panic when trigger before any context has been pushede3ae1440
interp: Rename to/from functions to to_/from_ba88a684
interp: mimic jq: if expr arg is given read stdin even if tty9bd65f93
migrates tests to per-sample filesf7d7a49f
missed a letter on last commit - converting to snake_case2f37cb55
mod: Update modules not tracked with bump55f4f1aa
moved a flag bit fields into correct positions9e5a072e
mp3_frame_tags: Convert to decode group and split to mp3_frame_{xing,vbri} decoders48522e3c
mp3_tags,mp3: Add VBRI header support and rename tags to tag as there is only one83ccedc5
mp4,decode: Properly decode ilst items (both mdta and mdir)1dea40e6
mp4,doc: Add JSON box tree example and reorder a bitb1b3b63d
mp4: Add namespace to mdta ilst boxes7b60b24a
mp4: Add pdin box supportef2d5232
mp4: Add png mapping5fb81a14
mp4: Add sym and description for traf sample flags1d6ce2c0
mp4: Decode hint and hnti child boxes9ac453a1
mp4: Fix typo in sample flags sample_is_depended_on descriptiona23fe618
mp4: sidx version 1 segment_duration is s643942db79
pkg/decode/D: Adds PushAndPop, Push, Pop methods. doc: adds help_applebookmark.fqtestdecode: converts applebookmark to use new d.PushAndPop method0c216dff
refactors some decoder logic in apple_bookmark for better querying34db9d7f
regenerated docs, added tests, fixed torepr0a72635a
remade documentation1352598a
removed commented out line81269430
removed unnecessary conversions5b1455e7
removed unused function63a3ca20
removes underscore from apple_bookmark package namea351c346
removes unused function2ee6360b
support tzif (time zone information format)8d5dcff8
test: applebookmark: adds problematic test case63a4e80c
test: fixed doc test47a568e0
text,test: Unbeak base64 tests44c91d82
tweaks apple_bookmark markdown documentationfd22426b
tzif: add help_tzif.fqtestc4e7fc79
tzif: moved document to tzif.mdabde823a
tzif: use PeekFindByte() to find end of the string4481a77a
tzif: use scalar.Fn() to define a mapper ad hocdbc6fccd
updated doc with apple referencef5e25fca
updated docs6f4d1cb1
updated documentationb2aeac6a
updates bplist fq testsa23ac8f5
updates fqtest for torepr in apple_bookmarkdata
0.1.0
Adds avi
decoder and replace raw
with more convenient bits
and bytes
format. Otherwise mostly small updates and bug fixes.
Increase minor version. fq does not use semantic versioning (yet) but it's probably a good idea to start increase minor version when adding features to be able to do patch releases.
In other fq related news:
- I gave a talk about fq at No Time To Wait 6 a conference about open media, standardization, and audiovisual preservation.
- While prototyping writing decoders directly in jq for fq I ended up implementing jq in jq. Still thinking and working on how to do decoders in jq.
Changes
- Replace
raw
format withbits
andbytes
format that decodes directly to a binary with different unit size.$ echo -n 'hello' | fq -d bytes '.[-3:]' > last_3_bytes $ echo 'hello' | fq -d bytes '.[1]' 101 $ echo 'hello' | fq -c -d bits '[.[range(8)]]' [0,1,1,0,1,0,0,0]
Decoder changes
avc_au
Support annexb format (used in AVI). #476avi
Add AVI (Audio Video Interleaved) decoder. #476# extract samples for stream 1 $ fq '.streams[1].samples[] | tobytes' file.avi > stream01.mp3
bits
Replacesraw
but is a binary using bit units. #485bytes
Replacesraw
but is a binary using byte units. #485bplist
- Fix signed integer decoding. #451 @dgmcdona
- Use correct size for references and check for infinite loops. #454 @dgmcdona
flac_frame
Correctly decode zero escape sample size. #461id3v2
Fix decoding of COMM and TXXX with missing null terminator. #468matroska
Updated to latest specification. #455mp3_frame
Use frame size calculation from spec instead of own as it seems to not work in some cases. #480mp3_frame_tags
Replacesxing
and also decodes "lame extensions" for both Xing and Info. #481raw
Removed. #485wav
More codec symbol names and now shares RIFF code with AVI decoder. #476yaml
Fix type panic for large integers. #462
Changelog
7b6492ee
Improve README.md a bit, one more demo and move up usage4e069625
Update docker-golang to 1.19.2 from 1.19.1e0334497
Update docker-golang to 1.19.3 from 1.19.2f3f2648b
Update github-go-version to 1.19.2 from 1.19.1, 1.19.1, 1.19.1003197eb
Update github-go-version to 1.19.3 from 1.19.2, 1.19.2, 1.19.2453963dd
Update github-golangci-lint to 1.50.1 from 1.50.056dcb3a0
Update gomod-BurntSushi/toml to 1.2.1 from 1.2.0101b2806
Update gomod-golang/text to 0.3.8 from 0.3.7d80f12c7
Update gomod-golang/text to 0.4.0 from 0.3.8753927ba
Update make-golangci-lint to 1.50.1 from 1.50.04d8dd5c5
adds check for recursion in decodeReference, adds test to verify fixb7c4576c
adds necessary cast46b7ab32
adds test to verify fix4ee7dd8a
changes Errorf to Fatalf on infinite loops41b2d1ad
cli: Better decode error help7254b0f9
decode,elf,fuzz: TryBytesRange error on negative sizebafd1f56
decode,fuzz: Signed integer (S) read require at least one bit2a86d323
doc,rtmp,pcap,markdown: Add more examples0b9b0173
doc: Add gomarkdown to license/dependencies4bfd9d81
doc: Add link to nttw6 presentation video and slidesfb1a91ac
drop indented else block per lint4dd594c1
fixes bad path in test outputf9a1d3f4
fixes calculation of floating point lengths236fbc17
fixes reference calculation to use reference size from trailerac86f931
fixes signed integer parsingfb2a2b94
flac,fuzz: Fatal error on negative partition sample count7859be1e
flac_frame: Properly decode zero escape sample size7cb2a6c9
fuzz: gotip not needed anymorecef4245b
fuzz: make fuzz GROUP=mp4 to fuzz one group413d4250
gofmt349d9497
gojq: Update rebased fq fork450f5844
gojq: Update rebased fq forkd8641ab1
gomod: Update modules that lack bump configf66e2244
id3v2: In the wild COMM and TXXX frame might not have a null terminatorb09d6116
makes dictionary key type checking more sensibled07b2eec
markdown,fuzz: Update gomarkdown646f32d5
matroska: Fix path tests and make _tree_path more robuste748079e
matroska: Update spec and regenerate1c7d3252
mod: Update ones without bump config2de87539
mp3_frame: Fix issue calc frame size for some configsc3a0686c
mp3_frame_tags: Refactor and rename xing format to mp3_frame_tagsd75748d8
mp4: Decode more sample flagsc93301fc
raw,bits,bytes: Replace raw format with bits and bytes format that decode to a binaryb08e25ce
removes unnecessary cast2b3adbe8
renames test data file0cf46e11
wav,avi,avc_au: Add avi decoder and refactor wav decoder26069167
yaml,fuzz: gojq.Normalize value to fix type panic
0.0.10
Changes
- Add
bplist
Apple Binary Property List decoder. Thanks David McDonald @dgmcdona #427 - Add
markdown
decoder. #422 - Fix panic when interrupting (ctrl-c) JSON output (
fq tovalue file
etc), #440 - Fix issue using
debug
(and some other native go iterator functions) insidepath(...)
, which is used by assign (... = ...
) expressions etc. #439 - Fix issue and also make
toactual
andtosym
work more similar totovalue
. #432 - Fix issue with unknown fields (gaps found after decoding) where one continuous gap could end up split into two of more unknown fields. #431
- More format documentation and also nicer help output. Also now all documentation is in markdown format. #430 #422
# or help(matroska) in the REPL $ fq -h matroska matroska: Matroska file decoder Decode examples =============== # Decode file as matroska $ fq -d matroska . file # Decode value as matroska ... | matroska Lookup element using path ========================= $ fq 'matroska_path(".Segment.Tracks[0)")' file.mkv Get path to element =================== $ fq 'grep_by(.id == "Tracks") | matroska_path' file.mkv References ========== - https://tools.ietf.org/html/draft-ietf-cellar-ebml-00 - https://matroska.org/technical/specs/index.html - https://www.matroska.org/technical/basics.html - https://www.matroska.org/technical/codec_specs.html - https://wiki.xiph.org/MatroskaOpus
Decoder changes
ar
Allow empty integer strings. For example owner id can be an empty string. #428bitcoin_blkdat
Assert that there is a header. As the format is part of the probe group this speeds up probing. #402bplist
Add Apple Binary Property List decoder.$ fq '.objects.entries[0] | .key, .value' Info.plist │00 01 02 03 04 05 06 07 08 09│0123456789│.objects.entries[0].key{}: 0x32│ 5c │ \ │ type: "ascii_string" (5) (ASCII encoded string) 0x32│ 5c │ \ │ size_bits: 12 │ │ │ size: 12 0x32│ 43 46 42 75│ CFBu│ value: "CFBundleName" 0x3c│6e 64 6c 65 4e 61 6d 65 │ndleName │ │00 01 02 03 04 05 06 07 08 09│0123456789│.objects.entries[0].value{}: 0x1ea│ 5f │ _ │ type: "ascii_string" (5) (ASCII encoded string) 0x1ea│ 5f │ _ │ size_bits: 15 0x1ea│ 10 │ . │ large_size_marker: 1 (valid) 0x1ea│ 10 │ . │ exponent: 0 0x1ea│ 18 │ . │ size_bigint: 24 │ │ │ size: 24 0x1ea│ 41 70 70 6c│ Appl│ value: "AppleProResCodecEmbedded" 0x1f4│65 50 72 6f 52 65 73 43 6f 64│eProResCod│ 0x1fe│65 63 45 6d 62 65 64 64 65 64│ecEmbedded│
- Supports
torepr
$ fq torepr.CFBundleName Info.plist "AppleProResCodecEmbedded"
- Supports
elf
- More robust decoding when string tables are missing. #417
# extract entry opcodes and disassemble with ndisasm $ fq -n '"f0VMRgIBAQAAAAAAAAAAAAIAPgABAAAAeABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAOAABAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAIAAAAAAAsDxmvwYADwU=" | frombase64 | . as $b | elf | $b[.header.entry-.program_headers[0].vaddr:]' \ | ndisasm -b 64 - 00000000 B03C mov al,0x3c 00000002 66BF0600 mov di,0x6 00000006 0F05 syscall
- Now decodes program header notes. #421
- More robust decoding when string tables are missing. #417
markdown
Add decoder. Is used in fq to render CLI help. #422# array with all level 1 and 2 headers $ fq -d markdown '[.. | select(.type=="heading" and .level<=2)?.children[0]]' README.md [ "fq", "Usage", "Presentations", "Install", "TODO and ideas", "Development and adding a new decoder", "Thanks and related projects", "License" ]
matroska
Add support for sample lacing. Used by FLAC samples etc. #404mp4
More codec names and also use official names from mp4ra.org. #424
# show details of first two track in file $ fq -o line_bytes=10 '.tracks[0,1]' big_buck_bunny.mp4 │00 01 02 03 04 05 06 07 08 09│0123456789│.tracks[0]{}: track 0x00910a│20 68 10 01 a0 40 0e 20 8c 1b│ h...@. ..│ samples[0:1295]: 0x009114│c2 2b 99 09 84 42 60 a8 c4 60│.+...B`..`│ * │until 0x541697.7 (5473678) │ │ │ │ │ id: 1 │ │ │ data_format: "mp4a" (MPEG-4 Audio) │00 01 02 03 04 05 06 07 08 09│0123456789│.tracks[1]{}: track 0x00a5e6│ 00│ .│ samples[0:1440]: 0x00a5f0│00 00 0c 06 00 07 8b 71 b0 00│.......q..│ 0x00a5fa│00 03 00 40 80 00 00 00 15 06│...@......│ * │until 0x540959.7 (5464939) │ │ │ │ │ id: 2 │ │ │ data_format: "avc1" (Advanced Video Coding)
html
Handle leading doc type and processing directives. #414
Changelog
a77cec92
Added documentation and tests, fixed bad date parsingd784db69
Adds support for Apple Binary Plist, version 005711f290
Code fixes from PR, still need to add tests and testdata6b04f2de
Documentation cleanupbcccde23
Fixes and embeds documentationebae938d
Fixes bug in integer parsing368d183b
Size check on nBits to save memory84ca1010
Update docker-golang from 1.19.0 to 1.19.1c47c3866
Update github-go-version from 1.19.0, 1.19.0, 1.19.0 to 1.19.1816169b6
Update github-golangci-lint to 1.50.0 from 1.49.021f2980e
Update make-golangci-lint to 1.50.0 from 1.49.05f619940
adds function for decoding fixed sized arraysf08f44f1
ar: Integer strings might be empty004406de
bitcoin_blkdat,bitcoin_block: Make sure there is a header if blkdat421b2b30
bplist: Fix unknown field for singletons and add torepr tests16b01211
bplist: Make torepr convert to valuesfe64530e
csv: Add tsv and header examplecb3dc802
decode,tar: Add scalar description and Try* helpersa6429ffe
decode: Remove RangeSorted flag as we can decide on array/struct insteada468684a
deps: Manual update ones not using bumpa7a101ca
doc,help: Nicer format help and move help tests into each format725ab1b1
doc,html,xml: Add more documentation and examplesabd19ed8
doc: Fix format sections a bit0fdc03a4
doc: Fix some incorrect example prompts5382d46a
elf: Basic program header notes decoding12105d8c
elf: Treat missing string tables as empty to be more robust3deceeeb
fixes from PR comments226a9a3e
generics: Use more from x/exp404b1704
gojq: Update fq fork376f0ebb
gojq: Update rebased fq fork87b2c6c1
help,doc: Use markdown for format documentation again8016352b
html: Handle html with leading doctype etc768df301
interp,decode: For struct use map to lookup fieldc4219d69
interp: Fix interrupt panic for cli eval00ee10a1
interp: Make to{actual,sym} behave similar to tovalue00a50662
markdown: Add decoder7749e1b5
matroska: Add proper lacing support20a15372
mp4: Fix data_format typo2655ba09
mp4: More codec names (from mp4ra.org)7cd43b49
performance: increase performance by map usage6a6fec54
range,decode: Use own range sort impl to speed up a bit0f35fe48
ranges,decode: Correctly skip empty ranges when adding unknown fieldsea81efec
readline: Update rebased fq fork369f4016
removed unnecessary type conversions3198602d
removed unused return type7d865343
sortex: Package with type safe sort helpers808202fa
test: Skip go test with -race by default12836abe
updates fqtest1e47f4f2
updates tests post integer-bug fix3d8ea1de
updates torepr for data type1385b5d0
wasm: Add some documentationd6316d5c
wav: Decode smpl chunk
0.0.9
Changes
- New
wasm
WebAssembly Binary Format decoder by Takashi Oguma @bitbears-dev
# show part of code_section $ fq '.sections[4].content.code.x[0].code.e | d' add.wasm │00 01 02 03 04 05 06 07 08 09│0123456789│.sections[4].content.code.x[0].code.e[0:4]: │ │ │ [0]{}: in 0x3c│ 20│ │ opcode: "local.get" (0x20) 0x46│01 │. │ x: 1 (valid) │ │ │ [1]{}: in 0x46│ 20 │ │ opcode: "local.get" (0x20) 0x46│ 00 │ . │ x: 0 (valid) │ │ │ [2]{}: in 0x46│ 6a │ j │ opcode: "i32.add" (0x6a) │ │ │ [3]{}: in 0x46│ 0b │ . │ opcode: "end" (0xb)
# count opcode usage $ fq '.sections[] | select(.id == "code_section") | [.. | .opcode? // empty] | count | map({key: .[0], value: .[1]}) | from_entries' add.wasm { "end": 1, "i32.add": 1, "local.get": 2 }
# list exports and imports $ fq '.sections | {import: map(select(.id == "import_section").content.im.x[].nm.b), export: map(select(.id == "export_section").content.ex.x[].nm.b)}' add.wasm { "export": [ "memory", "add" ], "import": [] }
- Decode value display now shows address bar on new format or buffer. Should make it easier to spot changes and read hex and ASCII view. #365
Examples of PCAP with different formats and TCP stream buffers:... │00 01 02 03 04 05 06 07 08 09│0123456789│ packet{}: (ether8023_frame) 0x00668│ 00 0a 95 67 49 3c │ ...gI< │ destination: "00:0a:95:67:49:3c" (0xa9567493c) 0x00668│ 00 c0 f0│ ...│ source: "00:c0:f0:2d:4a:a3" (0xc0f02d4aa3) 0x00672│2d 4a a3 │-J. │ 0x00672│ 08 00 │ .. │ ether_type: "ipv4" (0x800) (Internet Prot... │00 01 02 03 04 05 06 07 08 09│0123456789│ payload{}: (ipv4_packet) 0x00672│ 45 │ E │ version: 4 ... │00 01 02 03 04 05 06 07 08 09│0123456789│ payload{}: (tcp_segment) 0x00686│ 00 50 │ .P │ source_port: "http" (80) (World Wide ... ... │ │ │ ipv4_reassembled[0:0]: │ │ │ tcp_connections[0:1]: │ │ │ [0]{}: tcp_connection │ │ │ client{}: │ │ │ ip: "192.168.69.2" │ │ │ port: 34059 │ │ │ has_start: true │ │ │ has_end: true │ │ │ skipped_bytes: 0 │00 01 02 03 04 05 06 07 08 09│0123456789│ 0x000│47 45 54 20 2f 74 65 73 74 2f│GET /test/│ stream: raw bits 0x000│65 74 68 65 72 65 61 6c 2e 68│ethereal.h│ * │until 0x1bc.7 (end) (445) │ │ ...
- Add
--unicode-output
/-U
argument to force use of Unicode characters to improve output readability. #377- For example useful when piping to less and you want fancy unicode and colors:
fq -cU d file | less -r
- For example useful when piping to less and you want fancy unicode and colors:
to_entries
now preserves struct field order. #340- Experimental
`raw string`
literal support. Work the same as golang raw string literals. Useful in REPL when pasting things etc but should probably be avoided in jq scripts. #371 - Properly fail lexing of invalid binary, octal and hex number literals. #371
- REPL completion now include all functions. Before some functions with multiple argument counts were skipped. #375
- Switch to new gopacket fork with speedup and bug fixes. Remove SLL2 workarounds in fq. #386
Decoder changes
csv
Correctly handle decode values whentocsv
normalize to strings. Before array and object ended up being JSON serialized to strings. #341- Normalize to strings is done so that non-string scalars can be used:
$ fq -n '[[1,true,null,"a"]] | tocsv' "1,true,,a\n"
- Normalize to strings is done so that non-string scalars can be used:
dns
DNS over UDP format was accidentally used to probe TCP streams #366elf
Remove redundantprogram_header
structflac
- Add 32 bit samples support. #378 Thanks @ktmf01
- Properly decode/checksum samples in partitions with raw samples. #379 Thanks @ktmf01
Now successfully decodes all test cases from https://github.com/ietf-wg-cellar/flac-test-files
jsonl
Add decoder. Decodes JSON lines. There is alsofromjsonl
andtojsonl
. #374macho
- Split FAT Macho decoding into
macho_fat
format which also fixed handling of file offsets in sections. #362 - Decode symbol and string sections. #352
- Split FAT Macho decoding into
matroska
Remove new lines in descriptions. Messes up tree. #369mp3_frame
- Support LSF (low sampling frequency) frames. #376
- Skip trying to figure out what main data is for current frame and not. Was incorrect and doing it properly probably requires hoffman decoding. #376
pcap
Support files with nanosecond precision. Has a different magic. #382prores_frame
Add basic decoder. Decodes container and fram header. #396 Thanks @Doctor-love for test filestar
Fix regression when decoding number fields. Now ok again to be empty string. #372wasm
Add WebAssembly Binary Format decoder. #383 Thanks to Takashi Oguma @bitbears-dev- Decodes to a tree following the WASM binary grammar specification
yaml
Fail on trailing data. Before it succeeded with the last value. #373zip
- Don't require PK header as there seems to be zip files with prepended data. #359
- Correctly limit amount of backwards search for EOCD (end of content directory). #363
xml
Correctly handle decode values whentoxml
normalize to strings. Before array and object ended up being JSON serialized to strings. #341xml
- Change attribute prefix to
@
instead of-
and make it an optionattribute_prefix
. #401 - Skip default namespace in element names. #389
- Always include attributes and children even when empty in array mode. Makes it a lot easier to work with as you can assume
.[1]
will be attributes and so on. #357 - Normalize to strings is done so that non-string scalars can be used:
$ fq -nr '{a: {"-boolean": true, "-number": 123, "-null": null}} | toxml' <a boolean="true" null="" number="123"></a>
- Allow and ignore trailing
<?procinstr?>
and improve trailing data error message. #368 - Correctly sort if any
#seq
is found and also properly sort negative#seq
. #384
- Change attribute prefix to
Changelog
0cd846a1
*extra: Rename extra to just ex and refactor to use genericsfb583e2c
Add 32 bps FLAC to testc1d5b2b1
Add sample size entry to list for 32bps flac streams3f209c46
Fix decoding of FLAC raw entropy partition25061aca
Update docker-golang from 1.18.4 to 1.18.50de2c906
Update docker-golang from 1.18.5 to 1.19.07b8d95bf
Update github-go-version from 1.18.4, 1.18.4, 1.18.4 to 1.18.5103991f7
Update github-go-version from 1.18.5, 1.18.5, 1.18.5 to 1.19.04255b87a
Update github-golangci-lint from 1.47.2 to 1.47.3198305ec
Update github-golangci-lint from 1.47.3 to 1.48.0fa9fec30
Update github-golangci-lint from 1.48.0 to 1.49.0f579e9c3
Update make-golangci-lint from 1.47.2 to 1.47.3c8069d22
Update make-golangci-lint from 1.47.3 to 1.48.0004eb564
Update make-golangci-lint from 1.48.0 to 1.49.0abcc7366
add ULEB and SLEB to known words for spell check9238251b
ci: Skip -race for windows and macos913f5780
columnwriter,dump: Add Column interface and refactor into BarColumn and MultiLineColumn5d9ffead
decode,scalar: Map empty string also else sym might ends up nil326dada7
decode: Add LEB128 readers502f451c
decode: Refactor to use scalar type assert helper840292ba
decode: Simplify compound range sort behaviour15f7c67a
dev,fuzz: Add some useful retrigger snippets46dca8cd
dns: Don't use dns (udp) format for tcp alsoc233215a
dns: Rename isTCP to hasLengthHeadered424783
doc,interp: Update and add more examplesf247edb5
doc: Update README demo a bit with new features3613b6d4
elf: Remove redundant program_header struct8a19978b
flac: Make gen script generate correct fqtest files2bfbe9a9
flac_frame: Cleanup some dev lefterovers and todos64b23659
fqtest: Run tests in parallelaf35b284
gojq: Preserve keys order for to_entries when used with JQValue804ad1e2
gojq: Update fq forkadd3dcfd
gojq: Update fq fork, fix scope argcount issued898732c
gojq: Update fq fork, new scope function, rawstring, stricter integers394717ca
gopacket: Switch/update to new fork, remove SLL2 hack4eae7ffd
interp,doc: Add -R raw string slurp hint to -s helpd8792fd1
interp,dump: Correctly flush columns if data will be shown29005c70
interp,dump: Show address bar for root, nested roots and on format changec7559b59
interp: Add --unicode-output/-U to force use of unicode9e447c9a
interp: Use RegisterFS instead of format files701c67c1
jsonl: Add decoder, also tojsonl encoderbc6cffde
lint,decode,fuzz:: Fix nilerr warnings, one real one should be ignored for now3c21b058
lint: Fix ioutil deprecation, reformat for new doc standardb2d4e6d9
macho: Decode cmd symtab symbols725c8e83
macho: Split into macho/macho_fat, fix offset issue and add string decoding2e407386
matroska: Strip newlines in descriptioncf15661e
mp3_frame: Add LSF support and fix incorrect main data handling74c7dc4e
pcap: Add ns support and add header field8fc43533
prores_frame: Add basic container and frame header decoderdc32ac08
script: Use strings.Builder to collect output0d44b937
tar: Some number fields can be empty545dac8c
test: Update tests, go 1.19 uses \xff instead of \u00ffce438872
wasm:make doc
074c22c9
wasm: add-timeout 20m
for go test to workaround ci test failcd037c51
wasm: add comment to clarify lazy initializationf73965d2
wasm: add wasm to probe list00869b37
wasm: avoid race conditiondb8021c9
wasm: define and use constants for some insturctionsbcc0dfd9
wasm: fix comment format289ddf59
wasm: fix lint issues3fca7cc0
wasm: fix lint issuescbb5a8ed
wasm: further simplification934ed9a8
wasm: initial versione5cf1731
wasm: make the godoc formatter happyb0f3fec8
wasm: remove nolint:unparam which is no longer needede1691dec
wasm: remove unused functionae4529c4
wasm: rungolangci-lint run --fix
fead68de
wasm: tidy up3298d181
wasm: to be able to probe2eb17505
wasm: update testsd5d9e738
wasm: use FieldULEB128() / FieldSLEB128() defined in the upstream7401d141
wasm: use WRITE_ACTUAL=1 to generate .fqtest files2037b86a
wasm: use map, not switchae08bf70
wasm: use s.ActualU() instead of s.Actual.(uint64)63f4a726
wasm: use scalar.UToSymStr for simplicity0ad5a8ec
wasm: use underscores for symbol valuesfa20c74c
xml,csv,interp: Handle JQValue when string normalizingf4e01372
xml,html: Always include attrs and children in array mode9a5fcc89
xml: Allow trailing71900c2a
xml: Correctly sort if one #seq is found and allow negative seq numbers716323ce
xml: Even more namespace fixesf24d685a
xml: Keep track of default namespace and skip it element names095e1161
xml: Switch from "-" to "@" as attribute prefix and make it an option3623eac3
yaml: Error on trailing yaml/jsond607bee1
zip: Correctly limit max EOCD find19b70899
zip: Skip header assert as there are zip files with other things appended
0.0.8
Changes
- Add support for some common structured serialization formats: #284 #335
- XML,
toxml
,fromxml
options for indent, jq mapping variants (object or array) and order preservation - HTML,
fromhtml
options for indent, jq mapping variants (object or array) and order preservation - TOML,
totoml
,fromtoml
- YAML,
toyaml
,fromyaml
- jq-flavored JSON (optional key quotes and trailing comma)
tojq
,fromjq
options for indent #284# query a YAML file $ fq '...' file.yml # convert YAML to JSON # note -r for raw string output, without a JSON string with JSON would outputted $ fq -r 'tojson({indent:2})' file.yml $ fq -nr '{hello: {world: "test"}} | toyaml, totoml, toxml, tojq({indent: 2})' hello: world: test [hello] world = "test" <hello> <world>test</world> </hello> { hello: { world: "test" } } $ echo '<doc><element a="b"></doc>' | fq -r '.doc.element."-a"' b $ echo '<doc><element a="b"></doc>' | fq -r '.doc.element."-a" = "<test>" | toxml({indent: 2})' <doc> <element a="<test>"></element> </doc>
- CSV,
tocsv
,fromcsv
options for separator and comment character$ echo -e '1,2\n3,4' | fq -rRs 'fromcsv | . + [["a","b"]] | tocsv' 1,2 3,4 a,b
- XML,
- Add support for binary encodings
- Base64.
tobase64
,frombase64
options for encoding variants.$ echo -n hello | base64 | fq -rRs 'frombase64 | tostring' hello
- Hex string.
tohex
,fromhex
- Base64.
- Add support for text formats
- XML entities
toxmlentities
,fromxmlentities
- URL
tourl
,fromurl
$ echo -n 'https://host/path/?key=value#fragment' | fq -Rs 'fromurl | ., (.host = "changed" | tourl)' { "fragment": "fragment", "host": "host", "path": "/path/", "query": { "key": "value" }, "rawquery": "key=value", "scheme": "https" } "https://changed/path/?key=value#fragment"
- URL path encoding
tourlpath
,fromurlpath
- URL encoding
tourlencode
,fromurlencode
- URL query
tourlquery
,fromurlquery
- XML entities
- Add support for common hash functions:
- MD4
tomd4
- MD5
tomd5
$ echo -n hello | fq -rRs 'tomd5 | tohex' 5d41402abc4b2a76b9719d911017c592
- SHA1
tosha1
- SHA256
tosha256
- SHA512
tosha512
- SHA3 224
tosha3_224
- SHA3 256
tosha3_256
- SHA3 384
tosha3_384
- SHA3 512
tosha3_512
- MD4
- Add support for common text encodings:
- ISO8859-1
toiso8859_1
,fromiso8859_1
- UTF8
tutf8
,fromutf8
- UTF16
toutf16
,fromutf16
- UTF16LE
toutf16le
,fromutf16le
- UTF16BE
toutf16be
,fromutf16be
$ echo -n 00680065006c006c006f | fq -rRs 'fromhex | fromutf16be' hello
- ISO8859-1
- Add
group
function, same asgroup_by(.)
#299 - Update/rebase readline dependency (based on @tpodowd https://github.com/chzyer/readline/pull/207) #305 #308
- Less blinking/redraw in REPL
- Lots of small bug fixes
- Update/rebase gojq dependency #247
- Fixes JQValue destructing issue (ex:
<some object JQValue> as {$key}
)
- Fixes JQValue destructing issue (ex:
- Major rewrite/refactor how native function are implemented. Less verbose and less error-prone as now shared code takes care of type casting and some argument errors. #316
- Add
tojson($opts)
that support indent option.tojson
still works as before (no indent).$ echo '{a: 1}' | fq -r 'tojson({indent: 2})' { "a": 1 }
- Rename
--decode-file
(will still work) to--argdecode
be be more consistent with existing--arg*
arguments. #309 - On some decode error cases fq can now keep more of partial tree making it easier to know where it stopped #245
- Build with go 1.18 #272
Decoder changes
bitcoin
Add Bitcoin blkdat, block, transcation and script decoders #239elf
Use correct offset to dynamic linking string table #304tcp
Restructure into separate client/server objects and addskipped_bytes
(number of bytes with known missing ACK),has_start
(has first byte in stream) andhas_end
(has last byte in stream) per direction #251- Old:
│00 01 02 03 04 05 06 07│01234567│.tcp_connections[0]{}: tcp_connection │ │ │ source_ip: "192.168.69.2" │ │ │ source_port: 34059 │ │ │ destination_ip: "192.168.69.1" │ │ │ destination_port: "http" (80) (World Wide Web HTTP) │ │ │ has_start: true │ │ │ has_end: true 0x000│47 45 54 20 2f 74 65 73│GET /tes│ client_stream: raw bits 0x008│74 2f 65 74 68 65 72 65│t/ethere│ * │until 0x1bc.7 (end) (44│ │ 0x000│48 54 54 50 2f 31 2e 31│HTTP/1.1│ server_stream: raw bits 0x008│20 32 30 30 20 4f 4b 0d│ 200 OK.│ * │until 0x191.7 (end) (40│ │
- New:
│00 01 02 03 04 05 06 07│01234567│.tcp_connections[0]{}: tcp_connection │ │ │ client{}: │ │ │ ip: "192.168.69.2" │ │ │ port: 34059 │ │ │ has_start: true │ │ │ has_end: true │ │ │ skipped_bytes: 0 0x000│47 45 54 20 2f 74 65 73│GET /tes│ stream: raw bits 0x008│74 2f 65 74 68 65 72 65│t/ethere│ * │until 0x1bc.7 (end) (44│ │ │ │ │ server{}: │ │ │ ip: "192.168.69.1" │ │ │ port: "http" (80) (World Wide Web HTTP) │ │ │ has_start: true │ │ │ has_end: true │ │ │ skipped_bytes: 0 0x000│48 54 54 50 2f 31 2e 31│HTTP/1.1│ stream: raw bits 0x008│20 32 30 30 20 4f 4b 0d│ 200 OK.│ * │until 0x191.7 (end) (40│ │
zip
Add 64-bit support and adduncompress
option #278matroska
Update and regenerate based on latest spec and also handle unknown ids better #291mp4
Changes:- Fix PSSH decode issue #283
- Add track for track_id references without tfhd box
- Makes it possible to see samples in fragments without having an init segment.
Note it is possible to decode samples in a fragment file by concatenating the init and fragment file ex:
cat init frag | fq ...
. - Add
senc
box support #290 - Don't decode encrypted samples #311
- Add
track_id
to tracks #254 - Add fairplay PSSH system ID #310
- Properly handle
trun
data offset #294 - Skip decoding of individual PCM samples for now #268
- Add
mvhd
,tkhd
,mdhd
andmehd
version 1 support #258 - Make sure to preserve sample table order #330
fairplay_spc
Add basic FairPlay Server Playback Context decoder #310avc_pps
Correctly check for more rbsp data
Changelog
210940a4
Update docker-golang from 1.18.1 to 1.18.2fbeabdc3
Update docker-golang from 1.18.2 to 1.18.351a414db
Update docker-golang from 1.18.3 to 1.18.43017e8b4
Update github-go-version from 1.18.1, 1.18.1, 1.18.1 to 1.18.2c597f7f7
Update github-go-version from 1.18.2, 1.18.2, 1.18.2 to 1.18.3dd283923
Update github-go-version from 1.18.3, 1.18.3, 1.18.3 to 1.18.4d10a3616
Update github-golangci-lint from 1.45.2 to 1.46.075b5946c
Update github-golangci-lint from 1.46.0 to 1.46.13ffa9efb
Update github-golangci-lint from 1.46.1 to 1.46.24be8cb91
Update github-golangci-lint from 1.46.2 to 1.47.01b8f4be8
Update github-golangci-lint from 1.47.0 to 1.47.1fc596a7a
Update github-golangci-lint from 1.47.1 to 1.47.262be9223
Update gomod-BurntSushi/toml from 1.1.0 to 1.2.05db7397a
Update make-golangci-lint from 1.45.2 to 1.46.0456742ea
Update make-golangci-lint from 1.46.0 to 1.46.106757119
Update make-golangci-lint from 1.46.1 to 1.46.23d69e9d0
Update make-golangci-lint from 1.46.2 to 1.47.02170925d
Update make-golangci-lint from 1.47.0 to 1.47.1c4199c0f
Update make-golangci-lint from 1.47.1 to 1.47.202f00be9
Update usage.md75169a65
asn1: Add regression test for range decode fix ##330b0096bc1
avc_pps: Correct check if there is more rbsp data5d67df47
avro_ocf: Fix panic on missing meta schema417255b7
bitcoin: Add blkdat, block, transcation and script decodera6a97136
decode: Cleanup Try/ pairs3ce660a2
decode: Keep decode tree on RangeFn errorc4dd518e
decode: Make compound range sort optional8bb4a6d2
decode: Range decode with new decoder to preserve bit reader342612eb
dev: Cleanup linters and fix some unused args78aa96b0
dev: Cleanup some code to fix a bunch of new linter warnings3570f1f0
doc: Add more related tools7aff654a
doc: Clarify decode, slurp and spew args0863374f
doc: Correct bencode spec URL10cc5518
doc: Improve and cleanup text formatsb1006119
doc: Typos and add note about Try* functionsc27646a6
doc: Update and shorten README.md a bitb0388722
doc: Use singular jq value to refer to jq valuea980656c
doc: go 1.18 and improve intro text a bita64c28d9
dump: Skip JQValueEx if there are not options40481f66
elf,fuzz: Error on too large string tablef66a359c
elf: Use correct offset to dynamic linking string table64f3e5c7
fairplay: Add basic SPC decoder and PSSH system idcae288e6
format,intepr: Refactor json, yaml, etc into formats also move out related functionse9d9f8ae
fq: Use go 1.18377af133
fqtest: Cleanup path usage2464ebc2
fuzz: Replace built tag with FUZZTEST env and use new interp api0f78687b
gojq: Fix JQValue index and destructuring issue and rebase fq fork59c7d0df
gojq: Rebase fq forkc57dc17d
gojq: Rebase fq fork9a7ce148
gojq: Update rebased fq forkc1a0cda5
gojq: Update rebased fq fork32361dee
gojqextra: Cleanup gojq type cast code9b2e474e
gojqextra: Simplify function type helpersfd302093
hevc_vps,fuzz: Error on too many vps layersefa5e23a
icc_profile: Correctly clamp align padding on EOF1ddea1ad
interp,format: Refactor registry usage and use function helpersa3c33fc1
interp: Add group/095e61965
interp: Add internal is helpers3b717c3b
interp: Add to/from for some common serialzations, encodings and hashes6b088000
interp: Cast jq value to go value properly for encoding functionsf5be5180
interp: Cleanup and clarify some format namingc7701851
interp: Extract to/from map/struct to own package8dde3ef5
interp: Fix crash when including relatve path when no search paths are set735c443b
interp: Improve type normalization and use it for toyaml and totoml81a014ce
interp: Make empty _finally fin error on error2dc509ab
interp: Refactor dump and revert #259 for nowab8c728a
interp: Rename --decode-file to --argdecode to be more consistentdff3cc11
interp: dump: Fix column truncate issue with unicode bars5109df4a
interp: dump: Show address bar for nested roots80214921
interp: help: Fix incorrect options example76714349
mapstruct: Handle nested values when converting to camel casec92f4f13
matroska: Update ebml_matroska.xml and allow unknown idsc2a359bd
mod: Update golang.org/x/{crypto,net}3780375d
mp3: Use d.FieldValueU and some cleanup7b27e506
mp4,bitio: Fix broken pssh decoding and add proper reader cloning to bitio6b00297e
mp4,senc: Refactor current track/moof tracking and add senc box support8228ecae
mp4: Add track id field and add track for tfhd with unseen track_idea2cc3c2
mp4: Don't decode encrypted samplesc6d0d89c
mp4: Don't range sort samples, keep sample table order7d25fbfd
mp4: Properly use trun data offsetba844eb0
mp4: Skip fields for pcm samples for now0e02bb66
mp4: iinf: Only assume sub boxes for version 02e328180
mp4: mvhd,tkhd,mdhd,mehd: Add version 1 support44bab274
readline: Rebase on top of tpodowd's redraw/completion fixes PRa5122690
readline: Rebase on top of tpodowd's update PR54dcdce9
readline: Update fq fork6e7267d2
readme: add MacPorts install details76161a1b
scalar,mp4,gzip,tar: Add timestamp to description9133f0e5
scalar: Add *Fn type to map value and clearer naming34cf5442
tcp: Split into client/server structs and add skipped_bytes and has_start/end per direction1aaaefb0
wav,bencode,mpeg_ps_packet,id3v1: Random fixes47350e46
zip: Add uncompress=false test and some docse6412744
zip: Add zip64 support and uncompress optionaa694e3f
zip: s/Decompress/Uncompress/
0.0.7
Changes
- Format specific options
- Formats can now have own options
- Example to skip decoding of samples in a mp4 file use:
fq -d decode_samples=false d file.mp4
or... | mp4({decode_samples: false}})
- To see supported options for a formats see formats documentation, use
fq -h mp4
orhelp(mp4)
in the REPL.
- gojq fork rebase:
- Many performance improvements from upstream
- Assign to a JQValue will now shallowly turn it into a jq value and then be assigned.
- Refactor and rewrote large parts to make it easier to rebase and maintain in the future.
Decoder changes
amf0
Add Action Message Format 0 decoder #214hevc_pps
Add H.265/HEVC Picture Parameter Set decoder #210hevc_sps
Add H.265/HEVC Sequence Parameter Set decoder #210hevc_vpc
Add H.265/HEVC Video Parameter Set decoder #210mp3
Addmax_unique_header_config
andmax_sync_seek
options #242mp4
Simplify granule structure a bit #242mp4
Adddecode_samples
andallow_truncate
options #242flac_frame
Addbits_per_sample
option #242icmpv6
Add Internet Control Message Protocol v6 decoder #216id3v2
Add v2.0 PIC supportipv6_packet
Add Internet protocol v6 packet decoder #216macho
Remove redundant arch struct level and cleanup some sym values #226macho
Add raw fields for section and encryption info #238mp4
Add more HEIF boxes support #221mpeg_pes
Support MPEG1 #219rtmp
Add Real-Time Messaging Protocol decoder. Only plain RTMP for now. #214matroska
Symbol name cleanup #220tcp
Better port matching and make it possible to know if byte stream has start/end. #223udp
Better port matching #223
Changelog
010f6430
Update docker-golang from 1.17.8 to 1.18.005096f50
Update docker-golang from 1.18.0 to 1.18.1e5f61e22
Update github-go-version from 1.17.7, 1.17.7, 1.17.7 to 1.18.0fdfc5c5b
Update github-go-version from 1.18.0, 1.18.0, 1.18.0 to 1.18.14ea362e3
Update github-golangci-lint from 1.44.2 to 1.45.02a90485b
Update github-golangci-lint from 1.45.0 to 1.45.2d9195ac4
Update gomod-mapstructure from 1.4.3 to 1.5.0cf88bc11
Update make-golangci-lint from 1.44.2 to 1.45.03a0799cb
Update make-golangci-lint from 1.45.0 to 1.45.234cbe487
amf0: Decode strings in more detailb2a865ea
avc_sps: Add chroma format name mappingb35b1804
decode,format: Add d.FieldFormatOrRaw(Len)f4480c6f
decode,interp: Support for format specific options5ff67e4c
formats: Sym and field name cleanup to be more jq friendly3c029925
github: Update action versions02a97fa3
gojq: Rebase fq fork2e240447
gojq: Rebase fq fork518f6af4
gojq: Rebase fq fork88f791e0
gojq: Rebase fq fork8c918702
gojq: Rebase fq forkadde8c70
gojq: Rebase fq forkd79afeb3
gojq: Rebase fq forkdd0d97ea
gojq: Rebase fq fork (speedup and fix range with JQValue)afd724bf
gojq: Rebase fq fork. Fixes JQValue path tracking when iterating74978c9d
hevc: Add hevc_vps, hevc_sps and hevc_pps decodersc0202483
hevc_vpc,hevc_sps: Use same naming for profile as in spec09385c61
id3v2: Add 2.0 PIC support9cb4b57a
interp,cli: Handle ctrl-c properly607202bb
interp: Don't truncate last display column6f03471d
interp: Paths with a array as root was missing start dotdabad850
interp: Proper display column truncatee8678ca8
interp: Remove opts refactor leftoverd376520f
interp: Remove to*range pad argument and fix stdout padding issue087d1241
interp: Simpler and more efficient hexdump21ad628a
interp: dump: Show field name for compound values in arrayse8dc7112
ipv6,icmpv6: Add decoderd6c31dac
macho: Add section and encryption_info raw data fields5424eed7
macho: Cleanup syms and remove redundant fat_arch structf8d79a57
matroska: More sym cleanupf34ebd83
mp4: Add more HEIF boxesf8fd6b7f
mp4: Add more HEIF boxes39ba5c4d
mpeg_pes: Support mpeg1 and some cleanupd8aaf303
rtmp,amf0: Add decoders788b0ac1
rtmp,amf0: Improve decoders, aac asc, chunk stream interrupt, fix amf0 ecma arrays5d25bbc2
tcp,udp: Refactor and make port matching better
0.0.6
Added macho
decoder (thanks @Akaame), nicer REPL interrupt, error and prompt, add slurp
/spew
functions and explode
for binary.
Added fq talk slides from Binary Tools Summit 2022 to README.md
.
Changes
- Major query rewrite refactor to share code for slurp-ish functions
repl
,slurp
and futurehelp
system. #178 - REPL improvements:
- Much improved eval and output interrupt. Should fix more or less all issue with un-interruptable long outputs. It is still possible to get "hangs" if some decode value ends up being expanded into a huge string etc. #191 #192
- Prompt paths now has colors support. #181
- Shows an arrow on parse error.
- Faster on multi inputs. #165
- Speedup interpreter by skipping redundant includes. #172
- gojq fork rebase: #179
- Fixes
try ... | ... catch
precedence issue. tonumber
now supports non-base-10 numbers.
- Fixes
- Add
slurp
/spew
to collect outputs and outputs them later.1,2,3 | slurp("a")
collects, later dospew("a")
to output them. Also a global array$a
will be available. #178
- Add
explode
for binary. #188"a" | tobits | explode
return bits[0,1,1,0,0,0,0,1]
."åäö" | tobytes | explode
return utf8 bytes instead of codepoints[195,165,195,164,195,182]
.
- Add optional sub topic to
--help
: #177- Replace
--formats
with--help formats
. #181 - Add
--help options
to see all default option values. #181
- Replace
- Remove
var
, useslupr
instead.
Decoder changes
macho
Add decoder. Thanks @Akaame #43mp4
Supportcolr
box. #176
Changelog
ee5e4718
Update docker-golang from 1.17.7 to 1.17.8ca04cc20
Update github-golangci-lint from 1.44.0 to 1.44.15c6e1d32
Update github-golangci-lint from 1.44.1 to 1.44.21b8e6936
Update make-golangci-lint from 1.44.0 to 1.44.19d5ba826
Update make-golangci-lint from 1.44.1 to 1.44.2cd2cbef6
decode: Some cleanup9e4f2641
dev: Add .jq-lsp.jq to add additional builtins for jq-lspc6a90cfc
doc,asn1_ber: Add more documentationc53bd777
doc: Add bts2022 videob97776c9
doc: Add fq bts2022 presentationd334c2d4
doc: Add href in supported format listc95b0d6d
doc: Forgot make doca202df9a
doc: Improve and fix some typos9ec1d357
doc: Improve project description758b2d0e
doc: Regenerate after macho merge920629f5
doc: Regenerate and fix macho section sized3397cf9
doc: Tweak format diagramd47e04c4
fixup! macho: CPU_SUBTYPE_MULTIPLE and TYPE_ALL are 0xff_ff_ff_ff27e76157
format: Simplify torepr, no need for _f function206dcd02
fuzz: Include more testdata seed filesbe6f0093
gojq: Rebase fq fork and add support for non-10 base for tonumber33efb02a
interp,repl: Add path and value colors to prompt41551de3
interp,repl: Improved eval and output interruptdff7e7da
interp: Cleanup binary regexp overloading and add explodefe8183b5
interp: Color parse in jq6f10745a
interp: Fix interrupt regression after query rewrite refactorf66f115e
interp: Make _finally handle null, call fin once and lasteeb59152
interp: Make help output less wide9dc59e5d
interp: Move _is_decode_value to jq0bc11719
interp: Move opts eval to options.jq3f50bb90
interp: Rework formats and options help03f450f8
interp: Skip redundant includesc5918d23
macho: CPU_SUBTYPE_MULTIPLE and TYPE_ALL are 0xff_ff_ff_ff5c974209
macho: TS string to UTC04eae939
macho: add basic docs5e95d1c3
macho: add cpuSubTypes2638f419
macho: add darwin_amd64 test5c5bd879
macho: add fqtest actualizationbf214d5e
macho: add nolint suppression to const defs333a3243
macho: add scalar.Hex mapper to addr fieldsa86e7043
macho: add section type parsing90b94631
macho: adopt plural-singular scheme for FieldStructArrayLoopb78ed02f
macho: barebones decoder imple199d219
macho: basic impl for ar and fat file parsing66feebc5
macho: change parseFlags impl for ordered resultsb5fe9ce6
macho: change registry description20e5be3f
macho: delete ar decoder codeefdd0bf5
macho: discard lc_ and lowercase command namesb0911af2
macho: docs review changesa29bfca5
macho: expand filetypes and header flagsfb0654ec
macho: fix FieldUTF8NullFixedLen for segnamed1f093ce
macho: fix fat header decode bug0d648928
macho: fix null in segname sectname9eb71dc6
macho: generate doc via make doc3991c51a
macho: handle unknown lc_commands betteref2919b3
macho: introduce arm and fat tests98c9840d
macho: linting changes for ar parse1feb81c9
macho: little-endian to little_endian141a8e84
macho: mach_header_X to header9206d9d8
macho: magicToHex to scalar.Hex2021b054
macho: make actual70b84cde
macho: ntools fix LC_MAIN fix78699f3a
macho: parse flags individually4016ad0b
macho: parse segment section flags5a48cb30
macho: refactor prebound_dylib2e7767cd
macho: remake docs33347503
macho: reuse ar decoder228757b9
macho: review fixes5ee9a23c
macho: review fixese3daee7d
macho: simplify thread state decoder70c9d519
macho: thread state visualizationa4789dc1
macho: timestamp mapper2ccb8087
macho: update test cases v to dv74abe990
macho: update tests12eb7cc5
macho: use FieldUTF8NullFixedLen5f4ad410
macho: use FieldUTF8NullFixedLen for segnamef8690e6c
mp4: Add colr box supportb157751a
mp4: Reformat and use dv in test0a043f90
repl,interp: Refactor repl and slurpca8cdadb
repl: Add comments and query from/to helper9cb4205b
repl: Correct error arrow position in color modee238f292
repl: Speedup multi input to sub-repl56ae4a0c
test: Make expect cli test more robust
0.0.5
Improved binary slicing and bit reading, avro_ocf
decoder (thanks @xentripetal), asn1_ber
decoder, renamed display
aliases, new grep_by
and paste
function.
Changes
- Big internal bit reader refactor. Now much more consistent code and fixes some issues reading and decoding of binary arrays and binary slices. #123
- Bit reading and IO have been moved to a
bitio
package. - Non-simple bit reading have been move out of
bitio
todecode
package. [0,1,1,0,0,1,1,0,0,1,1,1,0,0,0,1 | tobits] | tobytes | tostring
returns"fq"
.[.frames[0], .frames[-1]] | mp3
decode mp3 based on first and last frame of other mp3.
- Bit reading and IO have been moved to a
- Add
grep_by
that recursively selects using a filter condition and ignores errors. #102grep_by(.type == "trak")
finds all objects where.type
is "trak" (all mp4 track boxes).grep_by(tonumber | . >= 40 and . <= 100)
find all numbers between 40 and 100.grep_by(format == "jpeg")
find all jpegs.
- Add
paste
function to read string from stdin util ^D (EOF). Can be used to paste in REPl etc. #143paste | frompem | asn1_ber | repl
wait for PEM encoded text on stdin (paste and press ^D), decode it withasn1_ber
and start a sub-REPL with the result.paste | fromjson
decode pasted JSON.eval(paste)
eval pasted jq expression.
- Cleanup display aliases. Remove
v
andf
, addda
,dd
,dv
andddv
. #112d
/d($opts)
display value and truncate long arrays and buffersda
/da($opts)
display value and don't truncate arraysdd
/dd($opts)
display value and don't truncate arrays or buffersdv
/dv($opts)
verbosely display value and don't truncate arrays but truncate buffersddv
/ddv($opts)
verbosely display value and don't truncate arrays or buffers
- Refactor
radix
intotoradix($base)
/fromradix($base)
. #139 - Remove
number_to_bytes
. Can be done withtobytes
. #139 - Change
tobytes
to zero pad most significant bits to byte alignment if needed. #133 - Add
tobytes
/tobits
variant that takes an argument to add extra padding. #1330xf | tobytes
8 bit binary with last 4 bits set0xf | tobytes(4)
32 bit binary with last 4 bits set0xf | tobits(12)
12 bit binary with last 4 bits set
- Rename fq type buffer to binary as it makes more sense. #133
- Add
topem
/frompem
to work with PEM encoding. #92 - Add Windows scoop install. #137 Thanks @thushan
- Add
display
, decode value, binary and binary array documentation. #118 #136 #133 - Add decode API documentation. #149
- Improved REPL completion for keys. #144
- Add
-o force=<bool>
option that sets force decode option. Same asmp4({force: true})
. #126
Decoder changes
avro_ocf
Add decoder. #38 Thanks @xentripetal- Full avro OCF support. Handles all primitive, complex, and logical types besides decimals.
- Able to handle deflate, snappy, and null codecs for blocks.
asn1_ber
Add decoder. #92- Also decodes CER and DER (X.690) but with no additional validation at the moment.
- Support all types but real type is currently limited to range for 64 bit integer/float.
- Has
torepr
support. - No schema support.
aac_frame
Only decode object types we know about. #130mp3
Shorter sync find heuristics. #104mp4
Addstz2
supportmp4
Addpnot
(preview container) andjP
(JPEG 2000) signature. #125
Also thanks to @Doctor-love for keeping things tidy.
Changelog
6fc1efd9
Add test case with all data typesae4a6243
Adds Windows Scoop instructions for fq.4b809a73
Change avro codec to funcs66ca1f10
Change tests to use new verbose syntax7345b8c7
Cleanup07ddf36f
Cleanup for linting4508241b
Cleanup snappy0909fb6d
Comment on snappy decompression21cfc70c
Dates need to specify UTC too75b84961
Fix lint7a8e3ca2
Hook into registry, add codecs251053ef
Initial pass on logical types2605bce4
Lint and add basic docee184075
Parse header using avro decoders. Still not certain this is the best idea. Will get opinions before finalizing.ab50088d
Polish of problem template and clarifying questions27789f2d
Regenerate docs5a1d35e7
Remove redundant question and fix typo31c4c0d3
Support snappy and deflate codecs0300c955
Take heading off doc to match make doc format6f57cdbf
Timestamps should be UTC06085a26
Undo change to doc/file.mp4. I have no idea how this got changed in the first place? Maybe some macos shenanigans.d137a72a
Update docker-golang from 1.17.6 to 1.17.7267e30ec
Update github-go-version from 1.17.6, 1.17.6 to 1.17.71e859cda
Update github-golangci-lint from 1.43.0 to 1.44.016849c8f
Update lintingd02d8968
Update make-golangci-lint from 1.43.0 to 1.44.068e85a2d
Use existing scalar description helper3bab3d65
aac_frame: Only try decode object types we know about0829c167
asn1_ber: Add decoder0312c92c
asn1_ber: Add more doc and multiple outputs for frompem06245d12
binary,decode,doc: Rename buffer to binary and add some documentation7c521534
bitio,decode: Refactor bitio usage and make buffer slicing more correct0d74e879
bitio,doc: Even more cleanupd854ed57
bitio: Cleanup documentation a bit82aeb355
bitio: More doc cleanup01ecde64
bump: Add snappy configde64a99e
cleanup some docs, change enum to mapper, error zigzag on more than 8 bytes6cd1c38f
decode,scalar: Add scalar.Str{Uint/Int/F}ToSym to parse numbers4ab6381d
decode: Add scalars args to FieldRootBitBufbe71eb01
decode: Rename LenFn() to LimitedFn, add FramedFn and document7bc25219
doc,interp: Add some example usages to cli help8e47fb1a
doc,matroska: Fix filename in examplec15f5283
doc: Add format links to format tableb86da7ae
doc: Add initial decoder API documentation49c90f89
doc: Add macOS security notes and move supported format up a bit06b67e4b
doc: Add more license detailsa8664ed5
doc: Add per format documentation09552628
doc: Add snappy license36307857
doc: Cleanup and add more decode value and binary documentation710c29b2
doc: Color edges in diagram based on destf0ce7179
doc: Document display and some more jq hintsb3504680
doc: More decode API details and polish6b51b067
doc: More display alias leftover fixesdd3e40fb
doc: Unbreak formats_digaram.jq since radix changec52a1a23
doc: Use f($a; $b) instead of jq f/2 notation233d86a3
fq: Add arch and os to --versionb8efd8e5
fuzz: Fuzz all formatse1bdfdf8
fuzz: List seed numbers and make it build again6090b65e
fuzz: Make it compile again and run one format per fuzzaea48847
github: Add basic issue templateb55ca2cd
gojq: Rebase fq branch47c978e4
goreleaser: Use zip for macos85371173
id3v2: Should assert not validate magicd6ca4818
initial work for avro OCF filesca68e6a1
interp: Add Platform() method to OS interfacee792598c
interp: Add grep_by/1 to recursively match using a filter0a1a5610
interp: Add missing default opts for tovalue48a19cb8
interp: Add paste function to allow pasting text into REPL etcfc0aacb6
interp: Cleanup display aliases, now: d, da, dd, dv, ddvbf7a483f
interp: Fix handling of group decode error from stdin26d9650b
interp: Refactor radix* into toradix($base)/fromradix($base)366f6b18
interp: Support force decode as -o force=true77ab667b
interp: Use absolute path in errorsc31ec2a3
interp: Use correct sym color898dfec1
lint: Fix typeassert and case exhaustive warningsd5401166
make docbf170be8
make: Cleanup some not very used targets8d2d88f4
mp3: Decrease max sync seek length between frames to 4kd555c324
mp4,fuzz: Fatal error on infinite sgpd box entries45b00aab
mp4: Add stz2 support092609be
mp4: Add video preview (pnot) and JPEG 2000 (jP) signaturesfebce5a5
mpeg_spu: Fatal error on infinite loopc58ba28d
mpeg_spu: Fatal error on unknown cmdd1943dad
pcapng,fuzz: Fix infinite loop by fatal error on block length <= 02ab395a0
protobuf: Add note about sub message decodingaf053811
repl,interp: Make stdio work during completionbd9be2c5
repl: Fix completion of non-underscore extkeys69c745d3
simplify scalar usage778a1a41
zip: Assert signature not validate
(Some commits have been removed from list for clarity)
0.0.4
Changes
- Add a
torepr/0
function that converts decoded value into what it represents. Initially works for:bencode
,cbor
,bson
andmsgpack
#74 Example usage:fq torepr file.cbor
fq -i torepr file.cbor
fq torepr.field file.cbor
fq 'torepr | .field | ...' file.cbor
- Add
stderr/0
function for jq compatibility #58 - Bitwise operators
band
,bor
etc are now normal functions instead of operators. Was done to be syntax compatible with jq #61 Uses the same convention as jq math functions: Unary uses input123 | bnot
, more than one argument all as argumentsband(123; 456)
- Decode API now supports null values #81
- Decode API now supports arbitrary large integers #79
- TCP reassembly now supports streams with missing SYN/ACK #57
- Update readline package to version with less dependencies #83
- Make REPL prompt more jqish #70
Decoder changes
bencode
Add decoder #64cbor
Add decoder #75msgpack
Add decoder #69mp4
Much improved sample decode #82 #78png
Decode PLTE and tRNS chunks #59tar
Don't assume there is a end marker and support more than 2 blocks #86 #87
Also thanks to @Doctor-love for keeping things tidy.
Changelog
af8e7ef
bencode: Add decoder0b0f28e
cbor: Add decoder1383b41
decode,interp: Add arbitrary large integer support (BigInt)548a065
decode,interp: Finish up nil value supportff5c0b8
decode: Error on negative number of bits when reading numberscf8a50c
decode: Use stable sort for values to not change order or values with same range startb4694b6
doc,dev: Add some more decoder implementation help0c1716b
doc: Add alpine and go run809210b
doc: Add more dev tips59b8803
doc: Document dev dependencies and related PRs/issues etc6ca4767
doc: Improve formats graph a bit8e9700d
doc: Improve readme a bit and add torepr example0cf486d
elf: fix all-platforms naming typo263f1ae
flac: Don't allow zero subframe sample size729a6ca
formats: Sort and make lists less likely to cause collision78c0775
fq: Embed version in sourceaa7adb6
fq: Update version to 0.0.47461264
fuzz: Skip other tests when fuzzingbe0ef80
interp,fq: Make bit operators normal functionsa3cfcd0
interp: Add stderr again for jq compat149cb3f
interp: Add torepr/0 that converts decode value into what it reptresentsb3a0980
interp: Document bit opts funcs and add some error tests8d10423
make: Fix quote issue in release script4a1e859
mp4: Improved stsz handling61bf2ce
mp4: Refactor sample decode into something more sanea6bf62c
msgpack: Add decoderedad481
num,mathextra: Rename num package to mathextrabfc977b
png: Decode PLTE and tRNS chunks and cleanup syms a bit36d2891
readline: Update to version with less deps9770b00
repl: Make prompt for array and iter more jqishba1edef
tar: Allow more than 2 zero end blocks at end5921d76
tar: Don't assume there is a end markeredd0ae1
tcp,flow: By default allow missing syn/ack for now
(Some commits have been removed from list for clarity)
0.0.3
Changes
- Now works on Windows #52
- Now builds and runs on 32-bit CPUs #30 @danfe
print/0
,println/0
function now properly convert input to string if needed. #54match
functions now don't try to be smart with buffers, use.tobytes
etc instead. Less confusing and also unbreakgrep
:ing decode values. #53 Now this works:fq 'grep("^strtab$") | parent | {name, string}' /bin/ls
- Add Arch package #19 @orhun @ulrichSchreiner @dundee
- Add Nix package #22 @siraben @jtojnar @portothree
- Add FreeBSD port @danfe
Decoder changes
bson
Add Binary JSON deccoderar
Add Unix archive decoderbsd_loopback_frame
Add BSD lookback frame decoder (used in pcap files)elf
Now does a two-pass decode to correctly handle string table referenceself
Decode more sections: symbol tables and hashesmatroska
Assert sane tag size only for stringspcap
Don't fail if incl_len > spanlen
Also thanks to @Doctor-love @mathieu-aubin for keeping things tidy.
Changelog
628f0f4
bson: Add decoder46b59d0
crc: Unbreak build on 32-bit arch681dbc2
elf,ar: Add ar decoder, improved elf decodere5c620d
github,ci: Add windows, macos and 32-bit linux52dddbb
goreleaser: Use draft release to allow release note changese365f22
interp: Cleanup stdio usage and functions55b1d5c
interp: Move _registry to decodeb6515c8
interp: Remove buffer smartness for regexp match functionsb867113
matroska: Assert sane tag size only for stringsb9aef39
pcap,pcapng,bsd_loopback_frame: Add decoder, refactor link frame into a groupaf23eb8
pcap: Don't fail if incl_len > spanlena41f0d4
windows: Correct @builtin include path joinbf9e13c
windows: Unbreak tests
(Some commits have been removed from list for clarity)
0.0.2
Changelog
00f34c2
Update docker-golang from 1.17.3 to 1.17.405b179c
Update docker-golang from 1.17.4 to 1.17.5c721ac8
Update github-go-version from 1.17.3, 1.17.3 to 1.17.4befe783
Update github-go-version from 1.17.4, 1.17.4 to 1.17.575aa475
decode: Generate Try?Scalar* methods for readers too9b683cd
decode: Cleanup some io panic(err)e1e8a23
doc: Add color/unicode section and move config sectionee023d7
doc: Add some more related and similar projectsd02c7c4
doc: Add some more usage examplesbe46d5f
doc: Cleanup todo and add some dev notes47deb4d
doc: Fix interpretation typofe68b51
doc: Improve readme text a bit916cb30
doc: Improve usage examples as bit5cb3496
docker: Fix broken build, copy fq.goc2131bb
flac: Cleanup scalar usage and fix incorrect sample rates1500fd9
gojq: Update to rebased fq fork3601fe3
gzip: fuzz: Don't uncompress on unknown compress method (nil create reader fn)f4f6383
interp: Add ._index for values in arrays4558192
interp: Cleanup buffer code and implement ExtType()e823475
interp: Fix help a bitfa350c6
interp: Move display to jqf7c7801
interp: Rework buffer regex support6ed2e2e
interp: dump: Indicate arrays using jq-syntax9aec91a
interp: match: Fix issue with regexp meta characters when matching using a buffere5e81e7
make: Fix prof build issuee91b22b
matroska,ebml: Use scalar and require sane tag sizeeb9698f
mp4,ctts: Seem more usable to treat sample count/offset as signedc149732
mp4,trun,fuzz: Limit number of constant sample entries406263b
mp4: Add comment about hdlr.component_name prefix byte28a3b71
mp4: Cleanup sample decode code6278529
mp4: fuzz: Make sure stsz has sane number of entries on constant sample size9f08af3
mpeg,aac: Factor out escape value decodingdc1aea3
opus: Cleanup endian usage and fix incorrect preskip decode2b2320d
pcap,flows: fuzz: Handle broken packets more nicely1d7ace3
pcap,pcapng,tcp: Use capture length not original lengthb525d0b
pcap: fuzz: Skip ssl2 packet if too short713ffe4
scalar: Add Require* and Require/Validate/AssertRange*f348002
sll2: fuzz: Limit address length to max 8 byteseb4718f
tar: Cleanup api usage45026eb
tar: Cleanup constant usage a bit more91cc6d8
tar: Fix size decode regression after cleanup07a2ebe
tiff,fuzz: Fatal error on infinite ifd loops91217e8
tiff: Fix endian typo and cleanup todos3850968
udp: Use proper udp payload format var name6a8d77b
vorbis_comment: Cleanup endian usage and naming a bit57e9f41
vorbis_packet: Cleanup endian usagef5a4d26
vscode: Use tabsize 2 for jq filesdd883b3
wav: Cleanup endian usagee260830
webp: Cleanup endian usage
0.0.1
Changelog
4242bf6
*_annexb: Refactor into avc/hevc_annexbe86b45b
Add *grep/1/2 and find/1/236fd74a
Add comment how raw byte regexp matching worksd1be167
Add decode struct each order test7f36f70
Add to/bytes/bits[range]571bf29
Change project title95ec5e1
Cleanup and rename s/BufferView/BufferRange9797cdc
Cleanup dev/snippets.jq565f18d
Correct avc_au format variable name6a1fa04
Decode hvc1 as hevc samplesa also74bad2d
Fix broken value.fqtest514739a
Give proper error on missing short flag57f0ec1
Improve cli help a bit9704659
Initf33b310
Refactor decode.Value gojq bindings3d90b6d
Remove fixed commente4e269b
Rename and move cli test to pkg/cli1bd34bf
Same args error behavior as jq3693667
Start of configurable json bit buffer formats590ee52
Update ci-golang from 1.17.0 to 1.17.172a3f69
Update ci-golangci-lint from 1.42.0 to 1.42.1078cf29
Update docker-golang from 1.17.1 to 1.17.2f5a8484
Update docker-golang from 1.17.2 to 1.17.31371bc7
Update docker-golangci-lint from 1.42.1 to 1.43.0f1ad700
Update github-go-version from 1.17.1, 1.17.1 to 1.17.2314bd17
Update github-go-version from 1.17.2, 1.17.2 to 1.17.353a8d91
Update github-golangci-lint from 1.42.1 to 1.43.0898cd26
Update golang from 1.17.0 to 1.17.131cd26e
Update golangci-lint from 1.42.0 to 1.42.1d4b2d58
Update gomod-mapstructure from 1.4.2 to 1.4.31decf85
Update make-golangci-lint from 1.42.0 to 1.42.1233aaa1
Update make-golangci-lint from 1.42.1 to 1.43.015e9f6f
ansi: Correct background reset code1ccab2d
apev2: Add test27e4770
apev2: Fatal if > 1000 tags3bf1a57
avc: Cleanup and add color names etc777191f
avc: Correct sign expgolomb decode20021f4
bitio: Handle < 0 nbits7c4b0b3
bitio: Simplify by embedding readerf600f2e
build: Require go 1.1777f97aa
builtin: Add chunk_by, count_by and debug27ba359
bump: Add action and cleanup names71e87e6
bump: Cleanup config, add config for release.yml8f2f524
bump: Move bump config to where it's used184df0a
cli: A bit clearner array and iter promptd350971
cli: Add --decode-file VAR PATH support17104f0
cli: Add --options to make help a bit nicer6356a84
cli: Add --raw-string93fd097
cli: Add -M -C support and default to color if tty8dc0f06
cli: Add completion tests2010cac
cli: Add error test706b2f2
cli: Add exit 2 (like jq) for no args569b631
cli: Add output join tests49f541c
cli: Add proper repl iterator support3304f29
cli: Add string_input options test0dd848d
cli: Better filenames in errors22eb53d
cli: Cleanup MaybeLogFilec14c29a
cli: Cleanup and more comments10d7ed7
cli: Fix error filename on script error2b8d11d
cli: Fix indent2d4eb9c
cli: Fix non-string variables and var(; f) variant to delete etcf5ffd32
cli: Implement --arg, --argjson and --rawfileae5566a
cli: Include paths and some refactorec98fd3
cli: Make --argjson and --decode-file error similarac8cfca
cli: Make --raw-string work with input/0 and inputs/0b33f2cd
cli: Make profile build optional and move it to clie2ff2a2
cli: Move help/0 to inter.jq, better help for -nd0bb9a5
cli: Nicer grammar for --null-input help78eb737
cli: Nicer usage and indent input iteration394e2b3
cli: Only compelete at end or whitespace8d1fafe
cli: Only show fq info for --help2684ed2
cli: Prepare completion for better variables supporte666380
cli: REPL and multiple files75cf46f
cli: Refactor options codef8ab00e
cli: Remove unused eval debug arg5c8fb5f
cli: Revert accidental history path change55cd45f
cli: Simplify code2874bc7
cli: Unbreak colors in windows48517c7
cli: Unbreak part of completion518b725
cli: Use format/0 to check if value is a format21bef18
cli: User defined global vars538f4ff
cli: add -nul-output compat85d1719
cli: jq compat, multiple -Lc8f0264
cli: more jq compatf893295
cli: rename fq.jq to interp.jq1436fdc
completion: Better and _internal handlingc7416e6
decode, interp: More buffer reuse6ee7977
decode,format: Allow root array58ba84f
decode,interp: Add RecoverableErrorer interface instead of enumerateb66ed32
decode,interp: Make fuzzing work again and cleanup fatal/error code5052bae
decode,interp: Refactor to allow decode/fillgap a ranged4142b8
decode,png: Add FieldFormatReaderLen, refactor out zlib to format826c509
decode: Add Generated header for scalar3db11d3
decode: Add UTF8Fn functions and trim some null terminated stringsc083a9e
decode: Fix MapRawToScalar regressionc17483d
decode: Fix accidental rename6fba1a8
decode: Fix bitbuf root handling a bitd1e1cd9
decode: Fix walk root depth issue causing dump to indent incorrectly1b32b42
decode: Major decode API refactor7af191d
decode: Move io helper into *D26d615b
decode: Move name/description into DecodeOptions986d5ec
decode: Move registry package to decode/registry and add a format group typeede2e77
decode: Nicer scalar template and add doc6207fcc
decode: Pass context to be able to cancel properly5d98a69
decode: Refactor Error/Fatal into printf functions9f55b6e
decode: Refactor and add symbol struct and mapping2fc0a71
decode: Refactor scalar usage8eaba88
decode: Refactor walk code a bit, add WalkRoot* to stay inside one rootf40320b
decode: Remove D.Scalar* and add d.(Try)FieldScala*Fn insteadc155c89
decode: Rename format *Decode to *Formatf801cc0
decode: Rename s/FieldTryFormat/TryFieldFormat for consistency776a6b3
decode: Reuse read buffer per decode to speed things up9d116df
decode: Rework use of TryFieldReaderRangeFormatd48ebc1
decode: Simplify Compound.Children473b224
decode: Simplify and move format arg into DecodeOptions0480a2f
decode: Some format decode and sub buffer worka49e924
decode: Use golang.org/x/text for text decodingaf3e6b1
dev: Add format_summary.jq4c6de82
dev: Add summary how start to dump tree worksa926c8f
dev: Some debug notesb17a715
difftest: Remove accidental log1e1ad14
difftest: Sync code3cea849
dns: Cleanup a bitd469edf
doc,make: Correctly strip out graphviz version from svg15d85e1
doc: Add find/1 find/226ea6d8
doc: Cleanupa131210
doc: Cleanup and add note about . argument0a97f86
doc: Cleanup and note about repl limit8440e8a
doc: Cleanup todo and dev a bit15b6d64
doc: Cleanup up a bit1047d90
doc: Document io packages a bit1a0089e
doc: Fix typo and some improvements97c7403
doc: Fix typo in README0814206
doc: Fix typos and old examples0e8c82a
doc: Improve readme goals a bit2f9d93d
doc: Improved readme and cleanup todo242525f
doc: Move formats to own file583bc38
doc: Regenerate demo.svga050adc
doc: Regenerate demo.svg18e3e20
doc: Regenerate demo.svg with newer ansisvg1f61704
doc: Regenerate svg after ansisvg monospace updatea7459b3
doc: Some basic usage and cleanup6fa5ae8
doc: Some fixes00b7c18
doc: Some more doc work07c7daa
doc: Some rewording5a82224
doc: Update21a74fa
doc: Updated6d3265
doc: Update README a bitdf5bd19
doc: Update TODOfb13fe5
doc: Update todoeee3c4e
doc: Use unicode pipe in demob9b0326
doc: fq - jq for files790198c
docker: Make image build again and install expect2387ec8
docker: Use golang 1.17f8e5944
dump,json: Properly figure if compound or notee972f4
dump: Add ascii header69c6d15
editlit.jq: Update after mp4 field renames27095b5
es: Decode MPEG ASC if audio stream761c411
exif: Add note about JPEGInterchangeFormat344f628
flac: Calculate correct md5 when total samples count is zeroce044ba
flac: Cleanup2af08da
flac: Fix block_size regression4f0bf92
flac: Make md5_calculated be a buffer797bd4d
flac: Refactor flac_metadatablock into flac_metadatablocks1f26d4f
flac_frame: Correctly read escaped samples and also a bit less allocationsbc9951c
flac_frame: Fail if trying to decode outside block size723542a
flac_frame: Make utf8Uint reader more correct and robustb643e22
flac_frame: Support non-8 bit align sample size2daa738
flac_frame: Use d.Invalid for possible errorsc1d9b4d
flac_metadatablocks: typ > 127 can't happen, add app id984ba1a
flac_metadatablocks: type >= 127 is invalid2b35d28
flac_picture,mp4: avif images and data fallback is image format fails509b8f8
flac_picture: Add picture_type names4f8d037
format,decode: Some crc and endian refactoraa38ccf
format,interp: Use MustGroup and add probe order test577c0f5
format: Add panic if register after resolve606c0b6
format: Add vorbis-comment-picture test, add .gitignore and cleanup798141a
format: Cleanup commentsc0eebcc
format: Remove unused ProtoBufType4b48828
format: Rename source file to match format named1b514e
format: Some claeanupec97eca
format: Split default.go into format.go and shared.go25f5ad7
fq,cli: Rename chunk to streaks, cleanup905c0ab
fq: Add chunk/146d37ef
fq: Add cli sanity testb849895
fq: Add truncate array support to dump/display8cb380e
fq: Generate decode alises codedfcefc1
fq: Make format/0 native for performanceba273be
fq: Make relative include work with @builtin etcd23edaa
fq: Rename bits/0 bytes/0 to tobits tobytes, remove string/0a7a58c8
fq: Rename main.go to fq.go834f4a5
fq: use jq functions for all display alises31d7611
fqtest: Add env support and isterminal/width/height support285356d
fqtest: Cleanup and dont assert when WRITE_ACTUAL86b34a3
fqtest: Fix section regexpdee10db
fqtest: No need to escape empty stdout6916880
fqtest: Refactor our script part to own package01d8a90
funcs: Add delta/0 delta_by/096f7a75
funcs: Fix typo add count/0962d84d
funcs: Make intdiv truncate to int08ec4f0
funcs: Remove unused string functiond5c084c
funcs: chunk_by comment80eaa46
funcs: format helperc770a75
funcs: make in_bytes/bits_range more generic6ff5aca
gif: Support GIF87a0d87018
github: Install expect to cli test8e3d9d8
github: bump: Checkout with bump token so it's used when push0c7fa09
gojq: Initial update support1888bb2
gojq: Remove div operatord7dbe7c
gojq: Update fq branch to fix mod (-1 % 256) differencebf5c222
gojq: Update fq fork093ee71
gojq: Update fq fork1d15c1d
gojq: Update fq fork3044fef
gojq: Update fq fork5a5f01e
gojq: Update fq forkbfec366
gojq: Update fq fork4104a18
gojq: Update fq fork31a5047
gojq: Update fq fork0b90558
gojq: Update fq fork8277b79
gojq: Update fq fork, support JQValue alt //a34784d
gojq: Update fq gojq fork7ad3d25
gojq: Update fq gojq forkf5164ee
gojq: Update fq gojq forkac7568d
gojq: Update gojq fq forkf828ae1
gojq: Update gojq fq fork845bc6b
gojq: Update gojq fq forkd365ab7
gojq: Update gojq fq fork6420928
gojq: Update gojq fq forkc8776ab
gojq: Update gojq fq forkf4cd7bf
gojq: Update jq forkb75da30
gojq: Update jq fork03af2b5
gojq: Update rebased fq branchc3b7b5c
gojq: Update to rebased fq branch2d6573d
gojq: Update to rebased fq branchfdb811e
gojqextra,decode: Add generic lazy JQValueaab32cf
gojqextra,interp: Add lazy string to speed usage of decode value buffer where string is not used9035278
gojqextra: Move errors to own file86092e6
golangci: unused: Assume go 1.17ac106d9
goreleaser: Cleanupee611a4
gzip,bzip2: Calculate CRC5344c7e
icc: Add mluc support50d00d8
icc_profile: Add element alignment bytes field59e7fd4
icc_profile: Clamp alignment to end instead of check last tag (might not be last in buffer)a5b802b
icc_profile: Correct alignment byte count57a1207
id3v2: Support GEOB tagsf55b1af
inet: Add tcp and ipv4 reassembly26c594f
input: make -R mimic jq on io errord9b45ba
internal: _global_var returns new value instead of _global_statef9f8660
interp,decode: Add force option to ignore asserts6a15625
interp,decode: Refactor out Scalar from Value and merge Array/Struct into Compoundcc5f405
interp,format: Update tests after decode refactor/tosym/toactual9f2dddc
interp,gojqextra: Make buffers values even more lazy and error early on non-scalar callsbf19588
interp: Add ansi helper7298a4c
interp: Add buffer match support to find and grep0d693aa
interp: Add line between usage and args helpc997536
interp: Add root, buffer_root, format_root, parent and parents69e4eea
interp: Better error if format/group is not found7423f45
interp: Cleanup output types8d442b8
interp: Cleanup stdin reading and add more option testsb641c77
interp: Cleanup unfinished/broken preview67898cb
interp: Cleanup, use BufferRange for _open, progress for all decode0660ff0
interp: Clear up confusing --rawfile (add a jq alias)3fafee8
interp: Clearer help for -d879bb56
interp: Correctly check if _decode_value, add more has/1 tests2e964fa
interp: Disable progress after decode is done80b5d66
interp: Document inputs and repl/cli details13fae09
interp: Don't print context cancel96cc128
interp: Eval options in jq instead of calling jq from go178032e
interp: Fix $opts shadowing in decode4eccb1e
interp: Fix broken aes_ctr, should return buffer instead of []byte110c86b
interp: Fix broken dynamic width/height80a6997
interp: Fix file leak and always cache for nowcfdd922
interp: Fix prompt issue with format93322bc
interp: Implement format/0 in jq8e5442f
interp: Limit how often decode progress fn is calledf1fcbe5
interp: Make has/1 work for _ext keys826c8bd
interp: Make include abs path work again6034ad7
interp: More sure stdOS stops the signal forward gorutine6cacc9b
interp: Move *CtxWriter to ioextra, some comments cleanupafb1050
interp: Move _decode_value to value.jq3e7e133
interp: Move formats func def to jq5cd5633
interp: Move jq function impls closer to where they belong996be0f
interp: Move more options code into options.jq976e992
interp: Move progress logic to jq528e6b9
interp: Refactor and use mapstructure472c1ef
interp: Refactor out string_input to own function54e121c
interp: Refactor repl inputs a bit618c1ea
interp: Refactor/Rename BufferViewd6d9484
interp: Remove --options, probably just confusingb024316
interp: Remove accidental extra space after path in promptff143d0
interp: Remove redundant decode argabcecb8
interp: Remove unused []byte type01a407a
interp: Rename s/bufferrange/buffer and cleanup567bc4b
interp: Rename to* funcs to match36e5562
interp: Rename value.* to decode.* as it makes more sense0cce5ec
interp: Reorganize, move out repl and options, more functions to funcs.jqeedfd16
interp: Replace find with overloaded match that support buffer58bf069
interp: Return []byte value as a buffer for now1c3c65b
interp: Rework buffer, still confusing97f7317
interp: Rework repl prompt code and fix some whitespace issues again4af5739
interp: Rework string/buffer for decode valuesff2077b
interp: Simplify Function, aliases done in jq now1fe5d95
interp: Some better naming and typos1b7b2f9
interp: Use gojqextra.NonUpdatableTypeError6ce4ba9
interp: Use snake_case for all options9cba69e
interp: Use todescription in testscf26b1f
interp: _readline: Use _repeat_break, add test07b4210
interp: add topath/0 and make todescription return null if there is none16d1f45
interp: find buffer should always use ByteRuneReader3ff0c9b
lint: Enable errcheck adnd revive13e98d4
lint: Fix unused bufferRange and toBufferView13d5cbd
lint: Remove usused nolint, should somehow tell about decode.Copyad850d6
lint: want explicit types in gojqextra.go90c19c6
make,test: Move testjq to own script and reuse fq binary052b9c0
make: Build with -s -w same as goreleaser1557e14
make: CGO_ENABLED=0 for static build8019212
make: Enable -race for tests263a77f
make: Mark actual and cover as phonyb0694f5
make: Move build flags to vars75b59db
make: Move doc generate to helper scriptfcbfc29
make: Move testjq.sh into pkg/interp5bf4bc7
make: Rename testwrite to actual40e26e8
make: Rename to testjqab8080f
make: Reorganize test targets98a8bae
make: Silence git if no repo version found95b9c32
make: doc/formats.svg: Ignore graphviz version to get less diff30ad643
make: go build args should not be quotedf1507f7
mod: Use proper path and dont use replacec4a3120
mp3,README: some cleanupda386ea
mp3: Be more relaxed with zero padding, just warn1325e5c
mp3: Cleanup commentse104748
mp3: Continue try find frames on error046f2fd
mp3: Don't allow more than 64k between frames527f917
mp3: Error if > 5 unique header configs4344b62
mp3: Only look for supported mp3 sync headers8a4f66f
mp3: Probe order after formwats with raw samples and similar sync headers60df04b
mp3_frame: Only supports layer 3, fixes some probe issuesed21f36
mp3_frame: Rename samples_per_frame to sample_countdb586eb
mp4,matroska: Add *_path/0 variant that uses format_root9ac17bd
mp4: Add comment about future truncate to size option2e71fa1
mp4: Add smhd box278e909
mp4: Add tapt, prof, enof and clap boxes161dcaf
mp4: Better fragmented mp4 supporte47888e
mp4: Fix 64bit size regression0801882
mp4: Fix field name typo for sample_composition_time_offsets_presentf322e78
mp4: More _time decoding6b8d26c
mp4: Properly decode tfraf2c1327
mp4: Use ISOBMFF naming and some more tests589207d
mp4: Use descriptor field for all descriptor boxesc7d45ff
mp4: add pssh_playready formate6cb708
mpeg: Nicer sym and descriptionf4b11b4
mpeg_annexb: Add format6a8ba31
number_to_bytes: Force int to make it work with bigint88eade9
ogg: Add flac support7f76986
ogg: Cleanup bitio in format out, maybe later7b7faaf
pcap: Add pcap, pcapng, ether8023, ipv4, udp, udpfc76907
png: Add proper color type5c733ad
readline: Update fq fork4cee498
readme: Nicer demoffb5adf
registry: Move to pkg/registry, feels betterdcceaa4
repl: Fix help and error message a bit44d8b66
repl: Give error if repl is used in non-repl mode1d0ebb5
repl: Handle directives, add testsc9777aa
repl: completion in jqccf6cab
repl: use map in _query_slurp_wrap74b5750
shquote: Remove unnecessary sb.Reset()44251ca
snippet: Add mp4_matrix_structure_rotation79a1aea
snippets: Add urldecode684193a
snippets: add changes/1fda1dda
snippets: urlencode: only 0-9a-f5ad048d
tar: Fix 0 trim regression49d2e61
tar: Unbreak num parsing and add testc8fad57
tiff: Fix reading of mluc tags with multiple recordsb55f24a
todo: Add ignore range check ideabc1b3bf
todo: Add note about symbols and iprint improvements1d83554
todo: Add note about test and capture with bufferf839317
todo: Add some known issues4d94c9a
todo: Clenaup a bit17a708f
todo: Remove fixed repl item0af4c2b
todo: Update about readlined03a1c9
todo: add echo '{} {} {}' | jq differencef9622c2
vorbis_comment: Fix field name typobe0fdbe
vp9: Add profile and fix reserved_zero field collision646f902
vpx_ccr: Add color namesb0ad3f2
w45afbe6
wipd838d2f
zip: Add format decoder9029143
zip: Fix nested decode for none compress