1BWRAP(1)                         User Commands                        BWRAP(1)
2
3
4

NAME

6       bwrap - container setup utility
7

SYNOPSIS

9       bwrap [OPTION...] [COMMAND]
10

DESCRIPTION

12       bwrap is a privileged helper for container setup. You are unlikely to
13       use it directly from the commandline, although that is possible.
14
15       It works by creating a new, completely empty, filesystem namespace
16       where the root is on a tmpfs that is invisible from the host, and which
17       will be automatically cleaned up when the last process exists. You can
18       then use commandline options to construct the root filesystem and
19       process environment for the command to run in the namespace.
20
21       By default, bwrap creates a new mount namespace for the sandbox.
22       Optionally it also sets up new user, ipc, pid, network and uts
23       namespaces (but note the user namespace is required if bwrap is not
24       installed setuid root). The application in the sandbox can be made to
25       run with a different UID and GID.
26
27       If needed (e.g. when using a PID namespace) bwrap is running a minimal
28       pid 1 process in the sandbox that is responsible for reaping zombies.
29       It also detects when the initial application process (pid 2) dies and
30       reports its exit status back to the original spawner. The pid 1 process
31       exits to clean up the sandbox when there are no other processes in the
32       sandbox left.
33

OPTIONS

35       When options are used multiple times, the last option wins, unless
36       otherwise specified.
37
38       General options:
39
40       --help
41           Print help and exit
42
43       --version
44           Print version
45
46       --args FD
47           Parse nul-separated arguments from the given file descriptor. This
48           option can be used multiple times to parse options from multiple
49           sources.
50
51       Options related to kernel namespaces:
52
53       --unshare-user
54           Create a new user namespace
55
56       --unshare-user-try
57           Create a new user namespace if possible else skip it
58
59       --unshare-ipc
60           Create a new ipc namespace
61
62       --unshare-pid
63           Create a new pid namespace
64
65       --unshare-net
66           Create a new network namespace
67
68       --unshare-uts
69           Create a new uts namespace
70
71       --unshare-cgroup
72           Create a new cgroup namespace
73
74       --unshare-cgroup-try
75           Create a new cgroup namespace if possible else skip it
76
77       --unshare-all
78           Unshare all possible namespaces. Currently equivalent with:
79           --unshare-user-try --unshare-ipc --unshare-pid --unshare-net
80           --unshare-uts --unshare-cgroup-try
81
82       --uid UID
83           Use a custom user id in the sandbox (requires --unshare-user)
84
85       --gid GID
86           Use a custom group id in the sandbox (requires --unshare-user)
87
88       --hostname HOSTNAME
89           Use a custom hostname in the sandbox (requires --unshare-uts)
90
91       Options about environment setup:
92
93       --chdir DIR
94           Change directory to DIR
95
96       --setenv VAR VALUE
97           Set an environment variable
98
99       --unsetenv VAR
100           Unset an environment variable
101
102       Options for monitoring the sandbox from the outside:
103
104       --lock-file DEST
105           Take a lock on DEST while the sandbox is running. This option can
106           be used multiple times to take locks on multiple files.
107
108       --sync-fd FD
109           Keep this file descriptor open while the sandbox is running
110
111       Filesystem related options. These are all operations that modify the
112       filesystem directly, or mounts stuff in the filesystem. These are
113       applied in the order they are given as arguments. Any missing parent
114       directories that are required to create a specified destination are
115       automatically created as needed.
116
117       --bind SRC DEST
118           Bind mount the host path SRC on DEST
119
120       --dev-bind SRC DEST
121           Bind mount the host path SRC on DEST, allowing device access
122
123       --ro-bind SRC DEST
124           Bind mount the host path SRC readonly on DEST
125
126       --remount-ro DEST
127           Remount the path DEST as readonly. It works only on the specified
128           mount point, without changing any other mount point under the
129           specified path
130
131       --proc DEST
132           Mount procfs on DEST
133
134       --dev DEST
135           Mount new devtmpfs on DEST
136
137       --tmpfs DEST
138           Mount new tmpfs on DEST
139
140       --mqueue DEST
141           Mount new mqueue on DEST
142
143       --dir DEST
144           Create a directory at DEST
145
146       --file FD DEST
147           Copy from the file descriptor FD to DEST
148
149       --bind-data FD DEST
150           Copy from the file descriptor FD to a file which is bind-mounted on
151           DEST
152
153       --ro-bind-data FD DEST
154           Copy from the file descriptor FD to a file which is bind-mounted
155           readonly on DEST
156
157       --symlink SRC DEST
158           Create a symlink at DEST with target SRC
159
160       Lockdown options:
161
162       --seccomp FD
163           Load and use seccomp rules from FD. The rules need to be in the
164           form of a compiled eBPF program, as generated by
165           seccomp_export_bpf.
166
167       --exec-label LABEL
168           Exec Label from the sandbox. On an SELinux system you can specify
169           the SELinux context for the sandbox process(s).
170
171       --file-label LABEL
172           File label for temporary sandbox content. On an SELinux system you
173           can specify the SELinux context for the sandbox content.
174
175       --block-fd FD
176           Block the sandbox on reading from FD until some data is available.
177
178       --userns-block-fd FD
179           Do not initialize the user namespace but wait on FD until it is
180           ready. This allow external processes (like newuidmap/newgidmap) to
181           setup the user namespace before it is used by the sandbox process.
182
183       --info-fd FD
184           Write information in JSON format about the sandbox to FD.
185
186       --new-session
187           Create a new terminal session for the sandbox (calls setsid()).
188           This disconnects the sandbox from the controlling terminal which
189           means the sandbox can't for instance inject input into the
190           terminal.
191
192           Note: In a general sandbox, if you don't use --new-session, it is
193           recommended to use seccomp to disallow the TIOCSTI ioctl, otherwise
194           the application can feed keyboard input to the terminal.
195
196       --die-with-parent
197           Ensures child process (COMMAND) dies when bwrap's parent dies.
198           Kills (SIGKILL) all bwrap sandbox processes in sequence from parent
199           to child including COMMAND process when bwrap or bwrap's parent
200           dies. See prctl, PR_SET_PDEATHSIG.
201
202       --as-pid-1
203           Do not create a process with PID=1 in the sandbox to reap child
204           processes.
205
206       --cap-add CAP
207           Add the specified capability when running as privileged user. It
208           accepts the special value ALL to add all the permitted caps.
209
210       --cap-drop CAP
211           Drop the specified capability when running as privileged user. It
212           accepts the special value ALL to drop all the caps. By default no
213           caps are left in the sandboxed process. The --cap-add and
214           --cap-drop options are processed in the order they are specified on
215           the command line. Please be careful to the order they are
216           specified.
217

ENVIRONMENT

219       HOME
220           Used as the cwd in the sandbox if --cwd has not been explicitly
221           specified and the current cwd is not present inside the sandbox.
222           The --setenv option can be used to override the value that is used
223           here.
224

EXIT STATUS

226       The bwrap command returns the exit status of the initial application
227       process (pid 2 in the sandbox).
228
229
230
231Project Atomic                                                        BWRAP(1)
Impressum