├── .github └── workflows │ ├── build-test-ci.yml │ ├── ci-alpine-linux.yml │ ├── codespell.yml │ ├── coverity.yml │ └── python.yml ├── .gitignore ├── BUGS ├── COPYING ├── README.md ├── TODO ├── dumpelf.c ├── elf.h ├── fuzz-ar.c ├── lddtree.py ├── lddtree.sh ├── macho.h ├── make-seccomp-filters.sh ├── man ├── custom.xsl ├── dumpelf.docbook ├── fragment │ └── reftail ├── meson.build ├── pax-utils.docbook.in ├── pspax.docbook ├── scanelf.docbook └── scanmacho.docbook ├── meson-build-dist-man.sh ├── meson.build ├── meson_options.txt ├── paxelf.c ├── paxelf.h ├── paxinc.c ├── paxinc.h ├── paxldso.c ├── paxldso.h ├── paxmacho.c ├── paxmacho.h ├── porting.h ├── pspax.c ├── pylint ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── scanelf.c ├── scanmacho.c ├── seccomp-bpf.c ├── seccomp-bpf.h ├── security.c ├── security.h ├── symtree.sh ├── tests ├── lddtree │ ├── dotest-cmp │ ├── dotest-py │ ├── dotest-sfx │ ├── dotest-sh │ └── meson.build ├── lib.sh ├── pspax │ ├── dotest │ └── meson.build ├── scanelf │ ├── dotest │ ├── meson.build │ └── scanelf.simple.good └── source │ ├── dotest │ ├── meson.build │ └── space ├── version.h.in ├── xfuncs.c └── xfuncs.h /.github/workflows/build-test-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/.github/workflows/build-test-ci.yml -------------------------------------------------------------------------------- /.github/workflows/ci-alpine-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/.github/workflows/ci-alpine-linux.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/TODO -------------------------------------------------------------------------------- /dumpelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/dumpelf.c -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/elf.h -------------------------------------------------------------------------------- /fuzz-ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/fuzz-ar.c -------------------------------------------------------------------------------- /lddtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/lddtree.py -------------------------------------------------------------------------------- /lddtree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/lddtree.sh -------------------------------------------------------------------------------- /macho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/macho.h -------------------------------------------------------------------------------- /make-seccomp-filters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/make-seccomp-filters.sh -------------------------------------------------------------------------------- /man/custom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/man/custom.xsl -------------------------------------------------------------------------------- /man/dumpelf.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/man/dumpelf.docbook -------------------------------------------------------------------------------- /man/fragment/reftail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/man/fragment/reftail -------------------------------------------------------------------------------- /man/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/man/meson.build -------------------------------------------------------------------------------- /man/pax-utils.docbook.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/man/pax-utils.docbook.in -------------------------------------------------------------------------------- /man/pspax.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/man/pspax.docbook -------------------------------------------------------------------------------- /man/scanelf.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/man/scanelf.docbook -------------------------------------------------------------------------------- /man/scanmacho.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/man/scanmacho.docbook -------------------------------------------------------------------------------- /meson-build-dist-man.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/meson-build-dist-man.sh -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/meson_options.txt -------------------------------------------------------------------------------- /paxelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/paxelf.c -------------------------------------------------------------------------------- /paxelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/paxelf.h -------------------------------------------------------------------------------- /paxinc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/paxinc.c -------------------------------------------------------------------------------- /paxinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/paxinc.h -------------------------------------------------------------------------------- /paxldso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/paxldso.c -------------------------------------------------------------------------------- /paxldso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/paxldso.h -------------------------------------------------------------------------------- /paxmacho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/paxmacho.c -------------------------------------------------------------------------------- /paxmacho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/paxmacho.h -------------------------------------------------------------------------------- /porting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/porting.h -------------------------------------------------------------------------------- /pspax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/pspax.c -------------------------------------------------------------------------------- /pylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/pylint -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/requirements.txt -------------------------------------------------------------------------------- /scanelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/scanelf.c -------------------------------------------------------------------------------- /scanmacho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/scanmacho.c -------------------------------------------------------------------------------- /seccomp-bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/seccomp-bpf.c -------------------------------------------------------------------------------- /seccomp-bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/seccomp-bpf.h -------------------------------------------------------------------------------- /security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/security.c -------------------------------------------------------------------------------- /security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/security.h -------------------------------------------------------------------------------- /symtree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/symtree.sh -------------------------------------------------------------------------------- /tests/lddtree/dotest-cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/lddtree/dotest-cmp -------------------------------------------------------------------------------- /tests/lddtree/dotest-py: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sfx=${0##*-} 3 | . ./dotest-sfx 4 | -------------------------------------------------------------------------------- /tests/lddtree/dotest-sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/lddtree/dotest-sfx -------------------------------------------------------------------------------- /tests/lddtree/dotest-sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sfx=${0##*-} 3 | . ./dotest-sfx 4 | -------------------------------------------------------------------------------- /tests/lddtree/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/lddtree/meson.build -------------------------------------------------------------------------------- /tests/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/lib.sh -------------------------------------------------------------------------------- /tests/pspax/dotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/pspax/dotest -------------------------------------------------------------------------------- /tests/pspax/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/pspax/meson.build -------------------------------------------------------------------------------- /tests/scanelf/dotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/scanelf/dotest -------------------------------------------------------------------------------- /tests/scanelf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/scanelf/meson.build -------------------------------------------------------------------------------- /tests/scanelf/scanelf.simple.good: -------------------------------------------------------------------------------- 1 | main scanelf 2 | -------------------------------------------------------------------------------- /tests/source/dotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/source/dotest -------------------------------------------------------------------------------- /tests/source/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/source/meson.build -------------------------------------------------------------------------------- /tests/source/space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/tests/source/space -------------------------------------------------------------------------------- /version.h.in: -------------------------------------------------------------------------------- 1 | #define VCSID "@VCS_TAG@" 2 | -------------------------------------------------------------------------------- /xfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/xfuncs.c -------------------------------------------------------------------------------- /xfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gentoo/pax-utils/HEAD/xfuncs.h --------------------------------------------------------------------------------