(I wrote this post a while ago as a comment on Lemmy, where I cannot search or link it, so here as a kinda general discussion)
It is a great idea but the concept has issues.
This issue helps to understand it
seccomp background
libseccomp is a long established security “firewall for syscalls”, it allows to restrict what actions programs can perform on the system.
I dont know what exactly these are, as they are low level, but one of these actions is “create an unprivileged user namespace”.
Flatpak uses a single, “badness enumerating” seccomp filter, which means they block the syscalls “A”, “B” and “C” for all programs. All others are allowed, and (see the issue) programs need to define a more strict one individually. There is no modularity here.
user namespaces
A namespace is a virtual filesystem on top of the “real” one, where certain system files are mounted to. This means unprivileged programs can suddenly do “OS stuff”.
contra user namespaces
Many distros like Debian (and Arch) didnt enable this feature for a long time, because user namespaces mean that unprivileged userspace programs, like your browser, can suddenly access low level system components like the filesystem.
If there now is a bug in such a component (like a driver for some random filesystem like reiserfs), user namespaces allow the program to directly access a way more privileged area, escape here and possibly get root access.
That’s why these drivers should be blocklisted when not used, for example exotic or ancient filesystems.
This would not be possible when not using user namespaces.
Flatpak has a seccomp filter that blocks the creation of user namespaces, to avoid this low level system access. Which is a very good thing, but the missing modularity doesn’t allow anything else!
pro usernamespaces
Over time even slow pacing distros like Debian enabled user namespaces.
Today they are the core feature of bubblewrap, podman, docker, (and thus distrobox and toolbox)…
The concept is that a rootless binary, running in userspace, can access system components which would normally require root.
Firejail is the opposite example, it is a suid binary and sandboxes apps also when user namespaces are disabled. Chromium has a fallback suid sandbox which also runs as root, same with bubblewrap after the modification by 34N0 implemented in the “no userns” images of secureblue.
(You just need to change the permission of the binary to suid)
The problem is, a suid binary has root access. If there is a flaw in it, which was the case with firejail, the “nice and secure isolated app” could now use the suid binary to escalate its privileges to root level, more than what it could have done without it.
Browsers and Sandboxes
A browser is basically a platform to run “apps” on. Nearly all websites nowadays require executable code, which means browsers are the attack surface for malware. Scrap your verified Flathub or well maintained distro repository, a single website could use a weakness and break your system.
This was a thing back in the time… crazy huh?
Chromium (Chrome, Edge, Brave, Vivaldi, Opera, …) has the said suid sandbox as a fallback, I guess implemented back when user namespace sandboxes were not adopted enough.
But it normally uses a user namespace sandbox for process isolation, every tab runs in a different process, on Android too.
Firefox also uses user namespace sandboxes for tabs.
These user namespace sandboxes restrict the filesystem access.
Both use some form of BPF sandbox (Firefox using seccomp-bpf) to restrict the sub-processes’ (tabs etc) access to system calls.
This is called “stacking seccomp filters” and at least browsers often use that (while all other programs can use it too, also Flatpaks).
Flatpak and Chromium
Chromium relies on the ability to create sandboxes, with a suid binary (the strange not really used fallback method) or with user namespaces.
So much that it straight up doesn’t run if it cannot do that. The same goes for Electron apps, which are a browser platform running a single or very few processes.
This is why zypak was created. It redirects the calls of Chromium to flatpak, so it uses the builtin Flatpak sandbox for isolating the filesystem instead.
As I said, all Flatpak apps (and thus all processes) use the same seccomp filter if they dont implement their own seccomp stracking, like Browsers do.
Chromium uses BPF for all processes.
The lack of modularity means that most other app devs will not add their own hardened filters though.
I assume that zypak is less secure than the native sandbox, which is battle tested by Google, Microsoft and more companies. But as it’s job is just filesystem sandboxing, this could very likely be wrong.
It uses a filesystem sandbox (additionally to the BPF syscall isolation), it is not suid and uses user namespaces. It just needs a security audit and a bit of pentesting.
Flatpak and Firefox
The Firefox Flatpak is official.
What the heck?
Thats what I asked myself and found this informative issue.
Right now we just
fork(), so replacing that withflatpak-spawnwould cause a massive increase in memory usage? You would no longer have CoW sharing of memory.
So Firefox would need big architectural changes (implementing a fork server) to support a sandbox like Flatpak’s. It uses copy-on-write to save Memory and be more efficient.
Chromium works fine, as it uses zygote, the fork server also used on Android.
it’s not clear to me the “Flatpak Sandbox” it’s creating is comparable to what we have now (even with just
seccomp-bpf). We launch our subprocesses with specific, nailed down sandboxes.
If Chromium uses BPF too, they should compare that. They lack an entire sandboxing layer!
Fair usage in Flatpak
To sum it up:
Electron apps are fine to be ran as Flatpaks. The zypak sandbox may not isolate the processes from another as well as the normal one does, but they are controlled and known code.
Electron uses Chromium because of laziness, not because it needs the security of the platform. Daniel Micay, the creator of GrapheneOS, would also list a few very technical things why Electron has crippled security features of Chromium.
Thunderbird is using Firefox similar to Electron, just as a platform for known code, so this will be fair too.
Flatpak Firefox… is very likely lesssecure. If you use UBlock Origin with some filterlists, and an opt-in NoScript setup (which I highly recommend for privacy and security), the risk of running malicious code is way lower.
But the risk is literally getting malware, losing all your data, getting breached or intruded. So why leave out the filesystem sandboxing?
Isolating the Browser itself
Flatpak isolates the browsers from the system, which is really nice. If there is a weakness in the browser platform, a process could not just escalate and access everything Firefox can.
Bubblejail
So isolating the browser from the system using Bubblewrap, a modern and rootless sandboxing tool, sounds like a good idea.
The only issue is the always-the-same seccomp filter. The best solution would be a fix for the issue at the beginning, but for now we can use bubblejail.
It is a tool that makes the creation of bubblewrap and seccomp filters easy, and adds Desktop entries to launch existing apps through that sandbox.
For some reason it doesnt work at all anymore for me… but it did in the past. It is certainly not ready, but with some helping hands it can fix all the gaps, where system apps are needed for certain abilities.
May that be a VPN app, Nextcloud-client adding icons to your task manager, an IDE like VSCodium, Zed, Lapce, Kate… or isolating all your system apps!
So currently I use Fedora Firefox, which is very well maintained and checked for security build flags.
I will continue trying to get bubblejail running, but Firefox implementing a fork server will be the real, very very needed change. Then it can use zypak (or a fork of it) and be more secure.