summaryrefslogtreecommitdiff
path: root/src/app_adbdump.c
AgeCommit message (Collapse)AuthorFilesLines
2021-07-22adb: unify various interfaces to adb_m_processTimo Teräs1-20/+10
Removes code duplication, and puts important checks in one place. Support seamless decompression in adbdump.
2021-06-19fixup some includesTimo Teräs1-1/+0
- remove unneeded assert.h - add needed limits.h
2021-06-11mkpkg: new applet to create v2 packages with basic functionalityTimo Teräs1-0/+2
2021-06-02add adbgen applet to generate databases from it's text dumpTimo Teräs1-0/+34
2021-05-26add abstraction to adb "walking" - a sax like API to enumerate whole dbTimo Teräs1-199/+8
This converts 'adbdump' applet to generate adb_walk api callbacks, and implement gentext backend to generate the yaml-like text output.
2020-10-09rename adb_trust to apk_trust, and use it as package signature keystore tooTimo Teräs1-2/+2
2020-10-09make apk_database optional for applets that don't need itTimo Teräs1-4/+3
The new v3 applets don't use it, and eventually all applets will use the new formats only. This prepares the code for this, and moves trust, id_cache, and root_fd to apk_ctx which is enough for v3 applets at this time. The generic code is made to not initialize apk_database if it's not needed.
2020-10-09rename apk_db_options to apk_ctx, rework loggingTimo Teräs1-1/+2
makes apk_verbosity non-global fixes #10682
2020-10-09minor performance improvements on build and codeTimo Teräs1-1/+1
2020-10-09adb: introduce apk-tools database format, and few appletsTimo Teräs1-0/+246
This is a flat buffers inspired format that allows fast mmaped access to the data with low overhead, signature support and relatively good forward support.