commit | 320c4fc6aadf837b9d032ab4e37451458c0e6628 | [log] [tgz] |
---|---|---|
author | Jorge Lucangeli Obes <jorgelo@google.com> | Thu Dec 10 10:38:30 2020 -0500 |
committer | Treehugger Robot <treehugger-gerrit@google.com> | Thu Dec 10 19:42:44 2020 +0000 |
tree | 9c61132d11322772a0cd5ad3b8784463c438bb70 | |
parent | 31adc6c9a4dbfd049a8648d1e09e2886e686034a [diff] |
Stop attempting to unmount /proc in the user namespace case. This will never work, because in the user namespace case the new mount namespace is less privileged than the parent mount namespace and therefore mounts coming from the parent namespace (like /proc) cannot be piecemeal unmounted: the are locked together. Instead of printing a warning message every time, elide the warning message and add a longer explanation to the code. In the future we can consider fixing this by first forking off a new mount namespace, doing the /proc remount, and then entering new user+mount namespaces, but this is not high priority. Bug: None Test: ./minijail0.sh -U -m -M -- /bin/id no longer prints the warning. Test: sudo ./minijail0.sh -pv -- /bin/mount shows one RO /proc mount. Change-Id: I364033be71dc69ae4051f377a8491c9e222bc900
The Minijail homepage is https://google.github.io/minijail/.
The main source repo is https://android.googlesource.com/platform/external/minijail/.
There might be other copies floating around, but this is the official one!
Minijail is a sandboxing and containment tool used in Chrome OS and Android. It provides an executable that can be used to launch and sandbox other programs, and a library that can be used by code to sandbox itself.
You're one git clone
away from happiness.
$ git clone https://android.googlesource.com/platform/external/minijail $ cd minijail
Releases are tagged as linux-vXX
: https://android.googlesource.com/platform/external/minijail/+refs
See the HACKING.md document for more details.
See the RELEASE.md document for more details.
See the tools/README.md document for more details.
We've got a couple of contact points.
The following talk serves as a good introduction to Minijail and how it can be used.
The Chromium OS project has a comprehensive sandboxing document that is largely based on Minijail.
After you play with the simple examples below, you should check that out.
# id uid=0(root) gid=0(root) groups=0(root),128(pkcs11) # minijail0 -u jorgelo -g 5000 /usr/bin/id uid=72178(jorgelo) gid=5000(eng) groups=5000(eng)
# minijail0 -u jorgelo -c 3000 -- /bin/cat /proc/self/status Name: cat ... CapInh: 0000000000003000 CapPrm: 0000000000003000 CapEff: 0000000000003000 CapBnd: 0000000000003000