You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
4 months ago
..
examples v811_spc009_project 4 months ago
linux-x86 v811_spc009_project 4 months ago
rust v811_spc009_project 4 months ago
test v811_spc009_project 4 months ago
tools v811_spc009_project 4 months ago
.clang-format v811_spc009_project 4 months ago
Android.bp v811_spc009_project 4 months ago
CPPLINT.cfg v811_spc009_project 4 months ago
CleanSpec.mk v811_spc009_project 4 months ago
HACKING.md v811_spc009_project 4 months ago
LICENSE v811_spc009_project 4 months ago
METADATA v811_spc009_project 4 months ago
MODULE_LICENSE_BSD v811_spc009_project 4 months ago
Makefile v811_spc009_project 4 months ago
NOTICE v811_spc009_project 4 months ago
OWNERS v811_spc009_project 4 months ago
PRESUBMIT.cfg v811_spc009_project 4 months ago
PREUPLOAD.cfg v811_spc009_project 4 months ago
README.md v811_spc009_project 4 months ago
RELEASE.md v811_spc009_project 4 months ago
TEST_MAPPING v811_spc009_project 4 months ago
arch.h v811_spc009_project 4 months ago
bpf.c v811_spc009_project 4 months ago
bpf.h v811_spc009_project 4 months ago
common.mk v811_spc009_project 4 months ago
dump_constants.cc v811_spc009_project 4 months ago
elfparse.c v811_spc009_project 4 months ago
elfparse.h v811_spc009_project 4 months ago
gen_constants-inl.h v811_spc009_project 4 months ago
gen_constants.c v811_spc009_project 4 months ago
gen_constants.sh v811_spc009_project 4 months ago
gen_syscalls-inl.h v811_spc009_project 4 months ago
gen_syscalls.c v811_spc009_project 4 months ago
gen_syscalls.sh v811_spc009_project 4 months ago
get_googletest.sh v811_spc009_project 4 months ago
libconstants.h v811_spc009_project 4 months ago
libminijail-private.h v811_spc009_project 4 months ago
libminijail.c v811_spc009_project 4 months ago
libminijail.h v811_spc009_project 4 months ago
libminijail.pc.in v811_spc009_project 4 months ago
libminijail_unittest.cc v811_spc009_project 4 months ago
libminijailpreload.c v811_spc009_project 4 months ago
libsyscalls.h v811_spc009_project 4 months ago
minijail0.1 v811_spc009_project 4 months ago
minijail0.5 v811_spc009_project 4 months ago
minijail0.c v811_spc009_project 4 months ago
minijail0.sh v811_spc009_project 4 months ago
minijail0_cli.c v811_spc009_project 4 months ago
minijail0_cli.h v811_spc009_project 4 months ago
minijail0_cli_unittest.cc v811_spc009_project 4 months ago
navbar.md v811_spc009_project 4 months ago
parse_seccomp_policy.cc v811_spc009_project 4 months ago
platform2_preinstall.sh v811_spc009_project 4 months ago
scoped_minijail.h v811_spc009_project 4 months ago
setup.py v811_spc009_project 4 months ago
signal_handler.c v811_spc009_project 4 months ago
signal_handler.h v811_spc009_project 4 months ago
syscall_filter.c v811_spc009_project 4 months ago
syscall_filter.h v811_spc009_project 4 months ago
syscall_filter_unittest.cc v811_spc009_project 4 months ago
syscall_filter_unittest_macros.h v811_spc009_project 4 months ago
syscall_wrapper.c v811_spc009_project 4 months ago
syscall_wrapper.h v811_spc009_project 4 months ago
system.c v811_spc009_project 4 months ago
system.h v811_spc009_project 4 months ago
system_unittest.cc v811_spc009_project 4 months ago
testrunner.cc v811_spc009_project 4 months ago
util.c v811_spc009_project 4 months ago
util.h v811_spc009_project 4 months ago
util_unittest.cc v811_spc009_project 4 months ago

README.md

Minijail

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!

[TOC]

What is it?

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.

Getting the code

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

Building

See the HACKING.md document for more details.

Release process

See the RELEASE.md document for more details.

Additional tools

See the tools/README.md document for more details.

Contact

We've got a couple of contact points.

Talks and presentations

The following talk serves as a good introduction to Minijail and how it can be used.

Video, slides.

Example usage

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.

Change root to any user

# 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)

Drop root while keeping some capabilities

# minijail0 -u jorgelo -c 3000 -- /bin/cat /proc/self/status
Name: cat
...
CapInh: 0000000000003000
CapPrm: 0000000000003000
CapEff: 0000000000003000
CapBnd: 0000000000003000

Historical notes

Q. "Why is it called minijail0?"

A. It is minijail0 because it was a rewrite of an earlier program named minijail, which was considerably less mini, and in particular had a dependency on libchrome (the Chrome OS packaged version of Chromium's //base). We needed a new name to not collide with the deprecated one.

We didn't want to call it minijail2 or something that would make people start using it before we were ready, and it was also concretely less since it dropped libbase, etc. Technically, we needed to be able to fork/preload with minimal extra syscall noise which was too hard with libbase at the time (onexit handlers, etc that called syscalls we didn't want to allow). Also, Elly made a strong case that C would be the right choice for this for linking and ease of controlled surprise system call use.

https://crrev.com/c/4585/ added the original implementation.

Source: Conversations with original authors, ellyjones@ and wad@.