├── .clang-format ├── .dockerignore ├── .github └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .lgtm.yml ├── CODE-OF-CONDUCT.md ├── COPYING ├── Containerfile.alpine ├── Containerfile.cross ├── Containerfile.static.fedora ├── Containerfile.static.ubuntu ├── Makefile.am ├── NEWS ├── README.md ├── SECURITY.md ├── autogen.sh ├── configure.ac ├── contrib └── fix-mode.py ├── direct.c ├── fuse-overlayfs.1 ├── fuse-overlayfs.1.md ├── fuse-overlayfs.h ├── fuse_overlayfs_error.h ├── lib ├── Makefile.am ├── bitrotate.c ├── bitrotate.h ├── hash.c ├── hash.h ├── limits.in.h ├── stdbool.in.h ├── stdint.in.h ├── sys_types.in.h └── xalloc-oversized.h ├── m4 ├── 00gnulib.m4 ├── absolute-header.m4 ├── extern-inline.m4 ├── gnulib-cache.m4 ├── gnulib-common.m4 ├── gnulib-comp.m4 ├── gnulib-tool.m4 ├── include_next.m4 ├── limits-h.m4 ├── longlong.m4 ├── multiarch.m4 ├── off_t.m4 ├── ssize_t.m4 ├── stdbool.m4 ├── stdint.m4 ├── sys_types_h.m4 ├── wint_t.m4 └── zzgnulib.m4 ├── main.c ├── plugin-manager.c ├── plugin-manager.h ├── plugin.h ├── rpm └── fuse-overlayfs.spec.template ├── tests ├── alpine.sh ├── fedora-installs.sh ├── suid-test.c ├── unlink.sh └── unpriv.sh ├── utils.c └── utils.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/.gitignore -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/COPYING -------------------------------------------------------------------------------- /Containerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/Containerfile.alpine -------------------------------------------------------------------------------- /Containerfile.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/Containerfile.cross -------------------------------------------------------------------------------- /Containerfile.static.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/Containerfile.static.fedora -------------------------------------------------------------------------------- /Containerfile.static.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/Containerfile.static.ubuntu -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec autoreconf -fis 3 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/fix-mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/contrib/fix-mode.py -------------------------------------------------------------------------------- /direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/direct.c -------------------------------------------------------------------------------- /fuse-overlayfs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/fuse-overlayfs.1 -------------------------------------------------------------------------------- /fuse-overlayfs.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/fuse-overlayfs.1.md -------------------------------------------------------------------------------- /fuse-overlayfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/fuse-overlayfs.h -------------------------------------------------------------------------------- /fuse_overlayfs_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/fuse_overlayfs_error.h -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/bitrotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/bitrotate.c -------------------------------------------------------------------------------- /lib/bitrotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/bitrotate.h -------------------------------------------------------------------------------- /lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/hash.c -------------------------------------------------------------------------------- /lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/hash.h -------------------------------------------------------------------------------- /lib/limits.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/limits.in.h -------------------------------------------------------------------------------- /lib/stdbool.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/stdbool.in.h -------------------------------------------------------------------------------- /lib/stdint.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/stdint.in.h -------------------------------------------------------------------------------- /lib/sys_types.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/sys_types.in.h -------------------------------------------------------------------------------- /lib/xalloc-oversized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/lib/xalloc-oversized.h -------------------------------------------------------------------------------- /m4/00gnulib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/00gnulib.m4 -------------------------------------------------------------------------------- /m4/absolute-header.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/absolute-header.m4 -------------------------------------------------------------------------------- /m4/extern-inline.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/extern-inline.m4 -------------------------------------------------------------------------------- /m4/gnulib-cache.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/gnulib-cache.m4 -------------------------------------------------------------------------------- /m4/gnulib-common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/gnulib-common.m4 -------------------------------------------------------------------------------- /m4/gnulib-comp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/gnulib-comp.m4 -------------------------------------------------------------------------------- /m4/gnulib-tool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/gnulib-tool.m4 -------------------------------------------------------------------------------- /m4/include_next.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/include_next.m4 -------------------------------------------------------------------------------- /m4/limits-h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/limits-h.m4 -------------------------------------------------------------------------------- /m4/longlong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/longlong.m4 -------------------------------------------------------------------------------- /m4/multiarch.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/multiarch.m4 -------------------------------------------------------------------------------- /m4/off_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/off_t.m4 -------------------------------------------------------------------------------- /m4/ssize_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/ssize_t.m4 -------------------------------------------------------------------------------- /m4/stdbool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/stdbool.m4 -------------------------------------------------------------------------------- /m4/stdint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/stdint.m4 -------------------------------------------------------------------------------- /m4/sys_types_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/sys_types_h.m4 -------------------------------------------------------------------------------- /m4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/wint_t.m4 -------------------------------------------------------------------------------- /m4/zzgnulib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/m4/zzgnulib.m4 -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/main.c -------------------------------------------------------------------------------- /plugin-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/plugin-manager.c -------------------------------------------------------------------------------- /plugin-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/plugin-manager.h -------------------------------------------------------------------------------- /plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/plugin.h -------------------------------------------------------------------------------- /rpm/fuse-overlayfs.spec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/rpm/fuse-overlayfs.spec.template -------------------------------------------------------------------------------- /tests/alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/tests/alpine.sh -------------------------------------------------------------------------------- /tests/fedora-installs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/tests/fedora-installs.sh -------------------------------------------------------------------------------- /tests/suid-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/tests/suid-test.c -------------------------------------------------------------------------------- /tests/unlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/tests/unlink.sh -------------------------------------------------------------------------------- /tests/unpriv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/tests/unpriv.sh -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/fuse-overlayfs/HEAD/utils.h --------------------------------------------------------------------------------