Conversation

I see lots of applications using seccomp-bpf simply because they can and it's good marketing but with no real attempt at making a meaningful sandbox with it or using it to reinforce an existing sandbox. They do it because they can and due to the OS development model it's fragile.
1
Replying to
Also note this doesn't allow getrandom so it's broken with github.com/GrapheneOS/har and has to be patched and rebuilt if libc is using that as the malloc implementation. Pledge would avoid that, but I think the real issue is the base OS should be doing nearly all of this instead.
1
1
It makes much more sense to expose a very high-level API to third party applications for fine-grained sandboxing. They should be targeted at standard app sandboxes in the first place, but having each reinvent fine-grained sandboxing and generally do it wrong (like this) is silly.
1
As an example, Android provides isolatedProcess for fine-grained sandboxing, which simply the semantic layer of the Chromium sandbox: developer.android.com/guide/topics/m It's what Chromium uses on Android rather than namespaces. As with the main app sandbox, the OS deals with the details.
1
1
I don't think seccomp-bpf and SELinux can work for traditional Linux distributions at scale. It works for Android because all third party code targets a standard app sandbox, and the OS makes backwards incompatible privacy/security changes tied to API level for the sandbox/APIs.
1
1
Both SELinux and seccomp-bpf are way too complicated / powerful to deal with them for every application. It does work quite well when the policies are developed as part of the OS. Treble driver support code for each device also provides SELinux policy extensions it needs to work.
1
It works because there is no system administrator arbitrarily building the OS by choosing a set of packages and arbitrary configurations. SELinux isn't viable as soon as you start expecting system administrators to deal with it. It works when only the OS developers have to do it.
1
Fedora and RHEL barely even use SELinux. They don't have strict full system policies where nothing is unconfined like Android, and all non-base system code tightly sandboxed. They use it in a very targeted and weak way. Despite that, system administrators hate it and disable it.
1
1
It just makes no sense to me. The same goes for expecting system administrators to configure seccomp-bpf policies, etc. It has to be done by the developers of the code, and really, that means the OS developers. A traditional Linux distro doesn't have unified development though.
1