nsjail/README.md

58 lines
1.7 KiB
Markdown
Raw Normal View History

2015-05-15 05:44:48 +08:00
### WHAT IS IT?
2015-05-15 08:25:55 +08:00
NsJail is a Linux process isolation tool making use of the namespacing features, and seccomp-bpf filters of the Linux kernel
2015-05-15 05:44:48 +08:00
2015-05-15 08:08:13 +08:00
This is NOT an official Google product.
2015-05-15 05:44:48 +08:00
### WHAT KIND OF ISOLATION DOES IT PROVIDE?
1. Linux namespaces: UTS, MOUNT, PID, IPC, NET, USER (optional)
2. FS chroot-ing (chroot()/pivot_root())
3. Seccomp-bpf syscall filters
### WHAT USE-CASES DOES IT COVER?
2015-05-15 08:27:23 +08:00
#### Isolating networking daemons (inetd-style)
2015-05-15 05:44:48 +08:00
2015-05-15 08:25:55 +08:00
+ Server:
2015-05-15 05:44:48 +08:00
$ ./nsjail -Ml --port 9000 --chroot /chroot/ --user 99999 --group 99999 -- /bin/sh -i
2015-05-15 08:25:55 +08:00
+ Client:
```
2015-05-15 05:44:48 +08:00
$ nc 127.0.0.1 9000
/ $ ifconfig
/ $ ifconfig -a
lo Link encap:Local Loopback
LOOPBACK MTU:65536 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
2015-05-15 08:25:55 +08:00
```
2015-05-15 05:44:48 +08:00
2015-05-15 08:27:23 +08:00
#### Isolating local processes (run it once, and exit)
2015-05-15 08:25:55 +08:00
```
2015-05-15 05:44:48 +08:00
$ ./nsjail -Mo --chroot /chroot/ --user 99999 --group 99999 -- /bin/sh -i
/ $ ifconfig -a
lo Link encap:Local Loopback
LOOPBACK MTU:65536 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
/ $ id
uid=99999 gid=99999
/ $exit
$
2015-05-15 08:25:55 +08:00
```
2015-05-15 05:44:48 +08:00
2015-05-15 08:27:23 +08:00
#### Isolating local processes (and re-running them)
2015-05-15 08:25:55 +08:00
```
2015-05-15 05:44:48 +08:00
$ ./nsjail -Mr --chroot /chroot/ --user 99999 --group 99999 -- /bin/sh -i
BusyBox v1.21.1 (Ubuntu 1:1.21.0-1ubuntu1) built-in shell (ash)
Enter 'help' for a list of built-in commands.
/ $ exit
BusyBox v1.21.1 (Ubuntu 1:1.21.0-1ubuntu1) built-in shell (ash)
Enter 'help' for a list of built-in commands.
/ $
2015-05-15 08:25:55 +08:00
```
2015-05-15 05:44:48 +08:00
### MORE INFO?
Type: './nsjail --help' - cmd-line switches are well-documented