-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsunaba.sh
executable file
·305 lines (263 loc) · 7.45 KB
/
sunaba.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
#!/usr/bin/env bash
# list of arguments that will be passed to bwrap
argv=()
function arg(){ argv+=("--$1" "${@:2}"); }
function _pass() {
for p in "${@:2}"; do
arg "$1" "$p" "$p"
done
}
function pass() { _pass bind "$@"; }
function ro-pass() { _pass ro-bind "$@"; }
function dev-pass() { _pass dev-bind "$@"; }
function try-pass() { _pass bind-try "$@"; }
function try-ro-pass() { _pass ro-bind-try "$@"; }
function try-dev-pass() { _pass dev-bind-try "$@"; }
# enables networking capability
# usage: enable_net
function enable_net() {
ro-pass '/etc/resolv.conf'
arg share-net
}
# enables pipewire/pulse related files for audio
# usage: enable_audio
function enable_audio() {
if [ -S "$XDG_RUNTIME_DIR/pipewire-0" ]; then
ro-pass "$XDG_RUNTIME_DIR/pipewire-0"
fi
if [ -d "$XDG_RUNTIME_DIR/pulse" ]; then
ro-pass "$XDG_RUNTIME_DIR/pulse"
fi
}
# enables display support (should be both X11 and Wayland)
# usage: enable_display
function enable_display() {
if [ ! -z "$DISPLAY" ]; then
# arg bind "/tmp/.X11-unix/X${DISPLAY#:*}" "/tmp/.X11-unix/X${DISPLAY#:*}"
DISPLAY_ID="$(grep -Pom1 '[0-9]+' <<< "$DISPLAY" | head -n 1)"
pass "/tmp/.X11-unix/X${DISPLAY_ID#:*}"
arg setenv 'DISPLAY' :"$DISPLAY_ID"
ro-pass "$XAUTHORITY"
arg setenv 'XAUTHORITY' "$XAUTHORITY"
fi
# for wayland
if [ -S "$XDG_RUNTIME_DIR/wayland-0" ]; then
ro-pass "$XDG_RUNTIME_DIR/wayland-0"
XAUTH_PATH="$(ls "$XDG_RUNTIME_DIR"/xauth_* | head -n 1)"
ro-pass "$XAUTH_PATH"
arg setenv 'XAUTHORITY' "$XAUTH_PATH"
fi
}
# enables dbus suppoprt
# usage: enable_dbus
function enable_dbus() {
ro-pass '/run/dbus'
ro-pass '/etc/machine-id'
ro-pass "$XDG_RUNTIME_DIR/bus"
arg setenv 'DBUS_SESSION_BUS_ADDRESS' "unix:path=$XDG_RUNTIME_DIR/bus"
}
# passes DRI devices
# usage: pass_dri
function pass_dri() {
ro-pass '/sys/devices'
dev-pass '/dev/dri'
}
# passes DRM devices
# usage: pass_drm
function pass_drm() {
ro-pass '/sys/class/drm'
}
# passes NVIDIA related items
# usage: pass_nvidia
function pass_nvidia() {
for i in '/dev/nvidia'*; do
dev-pass "$i"
done
ro-pass '/sys/module/nvidia'
}
# common passthrough
# usage: common_env <host_homedir_replacement>
function common_env(){
# if no homedir is set, fail
if [ -z "$1" ]; then
echo 'common_passthrough requires an argument of the home dir to sandbox' >&2
return 1
fi
# ensure that path is existant and can work
if ! mkdir -p "$1"; then
echo 'failed to create the sandbox homedir' >&2
return 1
fi
# clear slate
arg clearenv
# setup the default "fs"
arg dev '/dev'
arg proc '/proc'
arg tmpfs '/tmp'
ro-pass '/bin'
arg symlink '/usr/lib' '/lib'
arg symlink '/usr/lib' '/lib64'
arg symlink '/run' '/var/run'
ro-pass '/usr'
# passing through /etc files
ro-pass \
'/etc/passwd' \
'/etc/fonts' '/etc/environment' '/etc/localtime'
# these file may or may not exist, so only try but don't fail
try-ro-pass \
'/etc/profile' '/etc/profile.d' '/etc/bash.bashrc' \
'/etc/ld.so.cache' '/etc/ld.so.conf' '/etc/ld.so.conf.d'
# set uid/gid to 1000
arg uid 1000
arg gid 1000
# basic devices
ro-pass '/sys/dev/char'
arg bind "$1" "/home/$USER"
# pass-through certificates
ro-pass '/usr/share/ca-certificates'
ro-pass '/etc/ssl'
ro-pass '/etc/ca-certificates'
# default home env + path (not exported due to profile.d not being loaded by default)
arg setenv 'HOME' "/home/$USER"
arg setenv 'XDG_CACHE_HOME' "/home/$USER/.cache"
arg setenv 'XDG_CONFIG_HOME' "/home/$USER/.config"
arg setenv 'XDG_RUNTIME_DIR' "$XDG_RUNTIME_DIR"
arg setenv 'PATH' '/usr/local/sbin:/usr/local/bin:/usr/bin'
# unshare everything
arg unshare-all
# pass appropriate terminal
if [ ! -z "$TERM" ]; then
arg setenv 'TERM' "$TERM"
fi
# ensure everything dies with parent
arg die-with-parent
}
# pass input devices
# usage: pass_input_devices
function pass_input_devices(){
dev-pass "/dev/input"
}
# executes the bwrap with given arguments
# usage: execute <command> [...arguments]
function execute() {
bwrap "${argv[@]}" -- "$@"
}
#
# sunaba.sh is used as a script
#
if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
function print_help(){
echo "usage: $0 [flags] -- <bwrap args> -- <command> [arguments]"
echo " $0 [flags] -- <command> [arguments]"
echo ""
echo "this script implicitly calls 'common_env' with '\$SANDBOX_DIR' which will be set to '\$HOME/.sandbox' by default"
echo "the flags can be the following:"
echo " -d enables X11/Wayland support"
echo " -a enabled PipeWire/pulseaudio support"
echo " -n enables networking capabilities"
echo " -s passes dbus system socket"
echo " -r passes all dri devices"
echo " -i passes all input devices"
echo " -v verbose (just dumps the argv before execution)"
echo " -h displays this help and exits"
echo " -N passes nvidia devices"
echo " -D passes DRM devices"
echo ""
echo "for convenience, these options were added to bwrap args:"
echo " --pass <path> equivalent to '--bind <path> <path>'"
echo " --ro-pass <path> the same as above, however with '--ro-bind'"
exit 1
}
# if $SANDBOX_DIR is not specified, use the default in $HOME/.sandbox
if [ -z "$SANDBOX_DIR" ]; then
SANDBOX_DIR="$HOME/.sandbox"
fi
common_env "$SANDBOX_DIR"
# VERBOSE just dumps the final arguments passed to bwrap
VERBOSE=0
# parse the flags (default)
while getopts 'dansrihvND' option; do
case "$option" in
d) enable_display ;;
a) enable_audio ;;
n) enable_net ;;
s) enable_dbus ;;
r) pass_dri ;;
i) pass_input_devices ;;
h) print_help ;;
v) VERBOSE=1 ;;
N) pass_nvidia ;;
D) pass_drm ;;
*) echo "option=$option" ;;
esac
done
# get the items past the flags
shift "$((OPTIND-1))"
if [ "$VERBOSE" -eq 1 ]; then echo ">> AFTER_OPTS: '$*'"; fi
# has_bwrap_args == a double dash is found after the first '--'
has_bwrap_args=0
# arguments/items specified *before* the double-dash (could be bwrap args/command)
group_argv=()
for option in "$@"; do
shift 1
if [ "$option" = "--" ]; then
has_bwrap_args=1
break
fi
group_argv+=("$option")
done
# in case additional bwrap options are used
# eg.: sunaba.sh -- bwrap -- command
changed_cwd=0
pass_next=0
if [ "$has_bwrap_args" -eq 1 ]; then
for bwrap_arg in "${group_argv[@]}"; do
if [ "$pass_next" -ne 0 ]; then
if [ ! -e "$bwrap_arg" ]; then
echo "failed: could not resolve '$bwrap_arg'"
exit 1
fi
for n in $(seq "$pass_next"); do
argv+=("$bwrap_arg")
done
pass_next=0
continue
elif [ "$bwrap_arg" = "--pass" ]; then
argv+=("--bind")
pass_next=2
continue
elif [ "$bwrap_arg" = "--ro-pass" ]; then
argv+=("--ro-bind")
pass_next=2
continue
elif [ "$bwrap_arg" = "--chdir" ]; then
argv+=("--chdir")
pass_next=1
changed_cwd=1
continue
fi
argv+=("$bwrap_arg")
done
fi
if [ "$changed_cwd" -eq 0 ]; then
# default chdir to home dir
arg chdir "/home/$USER"
fi
if [ "$pass_next" -ne 0 ]; then
echo "failed: trailing option (either --[ro]-pass or --chdir)"
exit 1
fi
# execution phase
user_command=()
if [ "$has_bwrap_args" -eq 1 ]; then
user_command=("$@")
else
user_command=("${group_argv[@]}")
fi
if [ "$VERBOSE" -eq 1 ]; then echo ">> user_command: '${user_command[*]}'"; fi
# display help if there is no command to be run
if [ -z "${user_command[0]}" ]; then print_help; fi
# execute the command
if [ "$VERBOSE" -eq 1 ]; then echo ">> ARGV: '${argv[*]} -- ${user_command[*]}'"; fi
execute "${user_command[@]}"
fi