Compare commits
No commits in common. "main" and "configs" have entirely different histories.
|
@ -1,4 +1,2 @@
|
||||||
.idea
|
.idea
|
||||||
bwbox
|
main
|
||||||
result
|
|
||||||
scripts/applications
|
|
||||||
|
|
13
bwbox.nimble
13
bwbox.nimble
|
@ -1,13 +0,0 @@
|
||||||
# Package
|
|
||||||
|
|
||||||
version = "1.0.0"
|
|
||||||
author = "mawalu"
|
|
||||||
description = "An experimental sandbox tool for linux apps"
|
|
||||||
license = "MIT"
|
|
||||||
srcDir = "."
|
|
||||||
bin = @["bwbox"]
|
|
||||||
|
|
||||||
|
|
||||||
# Dependencies
|
|
||||||
|
|
||||||
requires "nim >= 1.6.0"
|
|
|
@ -1,4 +1 @@
|
||||||
{
|
{"extends": "shell", "mountcwd": true}
|
||||||
"extends": "shell",
|
|
||||||
"mountcwd": true
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"mount": [],
|
||||||
|
"romount": ["/etc", "/var", "/usr", "/opt", ".oh-my-zsh", ".zsh", ".zshrc"],
|
||||||
|
"symlinks": [
|
||||||
|
{"src": "usr/lib", "dst": "/lib"},
|
||||||
|
{"src": "usr/lib64", "dst": "/lib64"},
|
||||||
|
{"src": "usr/bin", "dst": "/bin"},
|
||||||
|
{"src": "usr/sbin", "dst": "/sbin"}
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,6 +1 @@
|
||||||
{
|
{"extends": "shell", "romount": [".gitconfig", ".gnupg", "/run/user/1000/gnupg", ".ssh/config"], "mountcwd": true, "mount": [".ssh/known_hosts"]}
|
||||||
"extends": "shell",
|
|
||||||
"romount": [".gitconfig", ".gnupg", "/run/user/1000/gnupg", ".ssh/config"],
|
|
||||||
"mountcwd": true,
|
|
||||||
"mount": [".ssh/known_hosts"]
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,7 +1 @@
|
||||||
{
|
{"extends": "default", "romount": [".Xauthority", "/tmp/.X11-unix", "/run/user/1000/pulse/native"], "dbus": true, "dbuscall": ["org.freedesktop.Notifications.*=@/org/freedesktop/Notifications", "org.freedesktop.portal.*=*"], "dbusbroadcast": ["org.freedesktop.portal.*=@/org/freedesktop/portal/*"]}
|
||||||
"extends": "default",
|
|
||||||
"romount": [".Xauthority", "/tmp/.X11-unix", "/run/user/1000/pulse/native"],
|
|
||||||
"dbus": true,
|
|
||||||
"dbuscall": ["org.freedesktop.Notifications.*=@/org/freedesktop/Notifications", "org.freedesktop.portal.*=*"],
|
|
||||||
"dbusbroadcast": ["org.freedesktop.portal.*=@/org/freedesktop/portal/*"]
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,5 +1 @@
|
||||||
{
|
{"extends": "default", "romount": [".oh-my-zsh", ".zsh", ".zshrc", ".zshrc-local"], "sethostname": true}
|
||||||
"extends": "default",
|
|
||||||
"romount": [".oh-my-zsh", ".zsh", ".zshrc", ".zshrc-local"],
|
|
||||||
"sethostname": true
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"extends": "default",
|
|
||||||
"romount": ["/run/user/1000/pulse/native", "/run/user/1000/wayland-1"],
|
|
||||||
"dbus": true,
|
|
||||||
"dbuscall": ["org.freedesktop.Notifications.*=@/org/freedesktop/Notifications", "org.freedesktop.portal.*=*"],
|
|
||||||
"dbusbroadcast": ["org.freedesktop.portal.*=@/org/freedesktop/portal/*"]
|
|
||||||
}
|
|
26
flake.lock
26
flake.lock
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"nodes": {
|
|
||||||
"nixpkgs": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1720893482,
|
|
||||||
"narHash": "sha256-fGQczQ3JuvqSK3rYsJvvbE7j8BENLp8DqJH1B0uXYKg=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "94c843e8f05bac70e905c48c965ba7be79bde613",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": "nixpkgs"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": "root",
|
|
||||||
"version": 7
|
|
||||||
}
|
|
20
flake.nix
20
flake.nix
|
@ -1,20 +0,0 @@
|
||||||
{
|
|
||||||
description = "An experimental sandboxing tool for linux apps";
|
|
||||||
|
|
||||||
inputs.nixpkgs.url = github:NixOS/nixpkgs;
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs }: {
|
|
||||||
packages.x86_64-linux.default =
|
|
||||||
with import nixpkgs { system = "x86_64-linux"; };
|
|
||||||
buildNimPackage {
|
|
||||||
name = "bwbox";
|
|
||||||
src = self;
|
|
||||||
nativeBuildInputs = [pkgs.makeWrapper];
|
|
||||||
postInstall = ''
|
|
||||||
wrapProgram $out/bin/bwbox \
|
|
||||||
--prefix PATH ':' ${pkgs.bubblewrap}/bin \
|
|
||||||
--prefix PATH ':' ${pkgs.xdg-dbus-proxy}/bin
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
18
lib/args.nim
18
lib/args.nim
|
@ -5,10 +5,9 @@ type Args* = object
|
||||||
name*: Option[string]
|
name*: Option[string]
|
||||||
cmd*: Option[seq[string]]
|
cmd*: Option[seq[string]]
|
||||||
profile*: Option[string]
|
profile*: Option[string]
|
||||||
debug*: bool
|
|
||||||
|
|
||||||
proc getCmd*(args: Args): seq[string] =
|
proc getCmd*(args: Args): seq[string] =
|
||||||
return args.cmd.get(@[getEnv("SHELL", "/bin/sh")])
|
return args.cmd.get(@[getEnv("SHELL", "/bin/bash")])
|
||||||
|
|
||||||
proc getProfile*(args: Args): string =
|
proc getProfile*(args: Args): string =
|
||||||
if args.profile.isSome:
|
if args.profile.isSome:
|
||||||
|
@ -17,33 +16,26 @@ proc getProfile*(args: Args): string =
|
||||||
return "default"
|
return "default"
|
||||||
|
|
||||||
proc parseArgs*(): Option[Args] =
|
proc parseArgs*(): Option[Args] =
|
||||||
var args = Args(debug: false)
|
var args = Args()
|
||||||
|
|
||||||
var command = newSeq[string]()
|
var command = newSeq[string]()
|
||||||
var parsingSandboxArgs = true
|
|
||||||
var i = 1
|
var i = 1
|
||||||
|
|
||||||
while i <= paramCount():
|
while i <= paramCount():
|
||||||
var arg = paramStr(i)
|
var arg = paramStr(i)
|
||||||
|
|
||||||
if arg == "--name" and parsingSandboxArgs:
|
if arg == "--name":
|
||||||
args.name = some(paramStr(i + 1))
|
args.name = some(paramStr(i + 1))
|
||||||
i += 2
|
i += 2
|
||||||
elif arg == "--profile" and parsingSandboxArgs:
|
elif arg == "--profile":
|
||||||
args.profile = some(paramStr(i + 1))
|
args.profile = some(paramStr(i + 1))
|
||||||
i += 2
|
i += 2
|
||||||
elif arg == "--debug" and parsingSandboxArgs:
|
|
||||||
args.debug = true
|
|
||||||
i += 1
|
|
||||||
else:
|
else:
|
||||||
parsingSandboxArgs = false
|
echo arg
|
||||||
command.add(arg)
|
command.add(arg)
|
||||||
i += 1
|
i += 1
|
||||||
|
|
||||||
if command.len > 0:
|
if command.len > 0:
|
||||||
args.cmd = some(command)
|
args.cmd = some(command)
|
||||||
|
|
||||||
if args.name.isSome or args.cmd.isSome or args.profile.isSome:
|
|
||||||
return some(args)
|
return some(args)
|
||||||
else:
|
|
||||||
return none(Args)
|
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
import os
|
|
||||||
import posix
|
import posix
|
||||||
import sequtils
|
import sequtils
|
||||||
|
|
||||||
type BwrapCall* = object
|
type BwrapCall* = object
|
||||||
args*: seq[string]
|
args: seq[string]
|
||||||
|
|
||||||
proc addArg*(call: var BwrapCall, args: varargs[string]): var BwrapCall {.discardable.} =
|
proc addArg*(call: var BwrapCall, args: varargs[string]): var BwrapCall {.discardable.} =
|
||||||
for arg in args:
|
for arg in args:
|
||||||
|
@ -15,4 +14,4 @@ proc addMount*(call: var BwrapCall, mType: string, path: string): var BwrapCall
|
||||||
call
|
call
|
||||||
|
|
||||||
proc exec*(call: var BwrapCall) =
|
proc exec*(call: var BwrapCall) =
|
||||||
discard execv("/usr/bin/env", allocCStringArray(@["/usr/bin/env", "bwrap"].concat(call.args)))
|
discard execv("/usr/bin/bwrap", allocCStringArray(@["bwrap"].concat(call.args)))
|
||||||
|
|
|
@ -3,7 +3,6 @@ import options
|
||||||
import bwrap
|
import bwrap
|
||||||
import utils
|
import utils
|
||||||
import json
|
import json
|
||||||
import os
|
|
||||||
|
|
||||||
type Link* = object
|
type Link* = object
|
||||||
src*: string
|
src*: string
|
||||||
|
@ -24,7 +23,6 @@ type Config* = object
|
||||||
dbusown*: Option[seq[string]]
|
dbusown*: Option[seq[string]]
|
||||||
dbuscall*: Option[seq[string]]
|
dbuscall*: Option[seq[string]]
|
||||||
dbusbroadcast*: Option[seq[string]]
|
dbusbroadcast*: Option[seq[string]]
|
||||||
devmount*: Option[seq[string]]
|
|
||||||
|
|
||||||
proc applyConfig*(call: var BwrapCall, config: Config) =
|
proc applyConfig*(call: var BwrapCall, config: Config) =
|
||||||
for mount in config.mount.get(@[]):
|
for mount in config.mount.get(@[]):
|
||||||
|
@ -36,14 +34,6 @@ proc applyConfig*(call: var BwrapCall, config: Config) =
|
||||||
for symlink in config.symlinks.get(@[]):
|
for symlink in config.symlinks.get(@[]):
|
||||||
call.addArg("--symlink", symlink.src, symlink.dst)
|
call.addArg("--symlink", symlink.src, symlink.dst)
|
||||||
|
|
||||||
for device in config.devmount.get(@[]):
|
|
||||||
call.addArg("--dev-bind", device, device)
|
|
||||||
|
|
||||||
if config.mountcwd.get(false):
|
|
||||||
call
|
|
||||||
.addMount("--bind", getCurrentDir())
|
|
||||||
.addArg("--chdir", getCurrentDir())
|
|
||||||
|
|
||||||
proc loadConfig*(path: string): Config =
|
proc loadConfig*(path: string): Config =
|
||||||
return readFile(path)
|
return readFile(path)
|
||||||
.parseJson()
|
.parseJson()
|
||||||
|
@ -63,7 +53,6 @@ proc extendConfig*(config: var Config): Config {.discardable.} =
|
||||||
config.mountcwd = some(config.mountcwd.get(eConf.mountcwd.get(false)))
|
config.mountcwd = some(config.mountcwd.get(eConf.mountcwd.get(false)))
|
||||||
config.sethostname = some(config.sethostname.get(eConf.sethostname.get(false)))
|
config.sethostname = some(config.sethostname.get(eConf.sethostname.get(false)))
|
||||||
config.allowdri = some(config.allowdri.get(eConf.allowdri.get(false)))
|
config.allowdri = some(config.allowdri.get(eConf.allowdri.get(false)))
|
||||||
config.devmount = some(config.devmount.get(eConf.devmount.get(@[])))
|
|
||||||
|
|
||||||
config.dbus = some(config.dbus.get(eConf.dbus.get(false)))
|
config.dbus = some(config.dbus.get(eConf.dbus.get(false)))
|
||||||
config.dbussee = some(config.dbussee.get(@[]).concat(eConf.dbussee.get(@[])))
|
config.dbussee = some(config.dbussee.get(@[]).concat(eConf.dbussee.get(@[])))
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import strutils
|
import strutils
|
||||||
import sequtils
|
|
||||||
import options
|
import options
|
||||||
import config
|
import config
|
||||||
import utils
|
import utils
|
||||||
|
@ -37,15 +36,9 @@ proc sandboxExec*(args: Args) =
|
||||||
config.extendConfig()
|
config.extendConfig()
|
||||||
|
|
||||||
call
|
call
|
||||||
.addArg("--new-session")
|
|
||||||
.addArg("--dev", "/dev")
|
.addArg("--dev", "/dev")
|
||||||
.addMount("--dev-bind", "/dev/random")
|
.addMount("--dev-bind", "/dev/random")
|
||||||
.addMount("--dev-bind", "/dev/urandom")
|
.addMount("--dev-bind", "/dev/urandom")
|
||||||
.addMount("--ro-bind", "/sys/block")
|
|
||||||
.addMount("--ro-bind", "/sys/bus")
|
|
||||||
.addMount("--ro-bind", "/sys/class")
|
|
||||||
.addMount("--ro-bind", "/sys/dev")
|
|
||||||
.addMount("--ro-bind", "/sys/devices")
|
|
||||||
.addArg("--tmpfs", "/tmp")
|
.addArg("--tmpfs", "/tmp")
|
||||||
.addArg("--tmpfs", "/dev/shm")
|
.addArg("--tmpfs", "/dev/shm")
|
||||||
.addArg("--proc", "/proc")
|
.addArg("--proc", "/proc")
|
||||||
|
@ -55,10 +48,6 @@ proc sandboxExec*(args: Args) =
|
||||||
.addArg("--setenv", "BWSANDBOX", "1")
|
.addArg("--setenv", "BWSANDBOX", "1")
|
||||||
.applyConfig(config)
|
.applyConfig(config)
|
||||||
|
|
||||||
if config.sethostname.get(false):
|
|
||||||
call
|
|
||||||
.addArg("--hostname", hostname)
|
|
||||||
|
|
||||||
if config.dbus.get(false):
|
if config.dbus.get(false):
|
||||||
# todo: handle process and cleanup later
|
# todo: handle process and cleanup later
|
||||||
let proxy = startDBusProxy(config, hostname)
|
let proxy = startDBusProxy(config, hostname)
|
||||||
|
@ -71,11 +60,13 @@ proc sandboxExec*(args: Args) =
|
||||||
if config.allowdri.get(false):
|
if config.allowdri.get(false):
|
||||||
enableDri(call)
|
enableDri(call)
|
||||||
|
|
||||||
# resolve binary path outside of the sandbox
|
if config.mountcwd.get(false):
|
||||||
var cmd = args.getCmd
|
call
|
||||||
cmd[0] = findExe(cmd[0])
|
.addMount("--bind", getCurrentDir())
|
||||||
|
.addArg("--chdir", getCurrentDir())
|
||||||
|
|
||||||
echo call.args.join(" ")
|
if config.sethostname.get(false):
|
||||||
echo cmd
|
call
|
||||||
|
.addArg("--hostname", hostname)
|
||||||
|
|
||||||
call.addArg(cmd).exec()
|
call.addArg(args.getCmd).exec()
|
||||||
|
|
|
@ -15,19 +15,9 @@ proc checkRelativePath*(p: string): string =
|
||||||
getHomeDir().joinPath(p)
|
getHomeDir().joinPath(p)
|
||||||
|
|
||||||
proc getProfilePath*(profile: string): string =
|
proc getProfilePath*(profile: string): string =
|
||||||
let pid = getCurrentProcessId()
|
getConfigDir()
|
||||||
|
.joinPath(APP_NAME)
|
||||||
for path in [
|
.joinPath(profile)
|
||||||
getConfigDir().joinPath(APP_NAME),
|
|
||||||
&"/usr/share/{APP_NAME}",
|
|
||||||
parentDir(expandSymlink(&"/proc/{pid}/exe")).joinPath("configs")
|
|
||||||
]:
|
|
||||||
let file = path.joinPath(profile)
|
|
||||||
|
|
||||||
if fileExists(file):
|
|
||||||
return file
|
|
||||||
|
|
||||||
raise newException(IOError, "Profile not found")
|
|
||||||
|
|
||||||
proc getProfilePath*(args: Args): string =
|
proc getProfilePath*(args: Args): string =
|
||||||
getProfilePath(args.getProfile())
|
getProfilePath(args.getProfile())
|
||||||
|
@ -41,30 +31,17 @@ proc deviceExists(path: string): bool =
|
||||||
var res: Stat
|
var res: Stat
|
||||||
return stat(path, res) >= 0 and S_ISCHR(res.st_mode)
|
return stat(path, res) >= 0 and S_ISCHR(res.st_mode)
|
||||||
|
|
||||||
proc mountDriFolder(call: var BwrapCall, path: string) =
|
|
||||||
for file in walkPattern(&"{path}/*"):
|
|
||||||
if dirExists(file):
|
|
||||||
mountDriFolder(call, file)
|
|
||||||
elif deviceExists(file):
|
|
||||||
call.addMount("--dev-bind", file)
|
|
||||||
#else:
|
|
||||||
# call.addMount("--ro-bin", file)
|
|
||||||
|
|
||||||
# https://github.com/flatpak/flatpak/blob/1bdbb80ac57df437e46fce2cdd63e4ff7704718b/common/flatpak-run.c#L1496
|
# https://github.com/flatpak/flatpak/blob/1bdbb80ac57df437e46fce2cdd63e4ff7704718b/common/flatpak-run.c#L1496
|
||||||
proc enableDri*(call: var BwrapCall) =
|
proc enableDri*(call: var BwrapCall) =
|
||||||
const folder = "/dev/dri"
|
|
||||||
const mounts = [
|
const mounts = [
|
||||||
folder, # general
|
"/dev/dri", # general
|
||||||
"/dev/mali", "/dev/mali0", "/dev/umplock", # mali
|
"/dev/mali", "/dev/mali0", "/dev/umplock", # mali
|
||||||
"/dev/nvidiactl", "/dev/nvidia-modeset", # nvidia
|
"/dev/nvidiactl", "/dev/nvidia-modeset", # nvidia
|
||||||
"/dev/nvidia-uvm", "/dev/nvidia-uvm-tools" # nvidia OpenCl/CUDA
|
"/dev/nvidia-uvm", "/dev/nvidia-uvm-tools" # nvidia OpenCl/CUDA
|
||||||
]
|
]
|
||||||
|
|
||||||
if dirExists(folder):
|
|
||||||
mountDriFolder(call, folder)
|
|
||||||
|
|
||||||
for mount in mounts:
|
for mount in mounts:
|
||||||
if deviceExists(mount) or dirExists(mount):
|
if deviceExists(mount):
|
||||||
call.addMount("--dev-bind", mount)
|
call.addMount("--dev-bind", mount)
|
||||||
|
|
||||||
for i in 0..20:
|
for i in 0..20:
|
||||||
|
|
|
@ -5,6 +5,7 @@ import random
|
||||||
|
|
||||||
proc main(): int =
|
proc main(): int =
|
||||||
let args = parseArgs()
|
let args = parseArgs()
|
||||||
|
echo args
|
||||||
|
|
||||||
if args.isNone:
|
if args.isNone:
|
||||||
echo "Usage: bwshell --name=sandbox_name --profile=profile <sandbox_cmd>"
|
echo "Usage: bwshell --name=sandbox_name --profile=profile <sandbox_cmd>"
|
|
@ -1,4 +1,4 @@
|
||||||
#!/run/current-system/sw/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ $# -ne 1 ]; then
|
if [ $# -ne 1 ]; then
|
||||||
echo "Usage: $0 <target_dir>"
|
echo "Usage: $0 <target_dir>"
|
||||||
|
@ -12,18 +12,15 @@ check_dir() {
|
||||||
for application in "$dir/"*; do
|
for application in "$dir/"*; do
|
||||||
file="$(basename "$application")"
|
file="$(basename "$application")"
|
||||||
|
|
||||||
sed "s/^Exec=/Exec=bwbox --name '$file' --profile wayland /gi" "$application" > "$target/$file"
|
sed "s/Exec=/Exec=bwshell --name '$file' --profile gui /gi" "$application" > "$target/$file"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
dirs=($(echo "$XDG_DATA_DIRS" | tr ':' '\n'))
|
dirs=("/usr/share/applications" "$HOME/.local/share/applications")
|
||||||
dirs+=("$HOME/.local/share")
|
|
||||||
target="$1"
|
target="$1"
|
||||||
|
|
||||||
mkdir -p "$target"
|
mkdir -p "$target"
|
||||||
|
|
||||||
for dir in "${dirs[@]}"; do
|
for dir in "${dirs[@]}"; do
|
||||||
if [ -d "$dir/applications" ]; then
|
check_dir "$dir"
|
||||||
check_dir "$dir/applications"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue