mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #5014] Newest Steam client has black window under firejail (fix included) #2859
Labels
No labels
LTS merge
LTS merge
bug
bug
converted-to-discussion
doc-todo
documentation
duplicate
enhancement
file-transfer
firecfg
firejail-in-firejail
firetools
graphics
help wanted
information_old
installation
invalid
modif
moved
needinfo
networking
notabug
notourbug
old-version
overlayfs
packaging
profile-request
pull-request
question
question_old
removal
runtime-permissions
sandbox-ipc
security
stale
wiki
wiki
wontfix
wordpress
workaround
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/firejail#2859
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @TheOneric on GitHub (Mar 5, 2022).
Original GitHub issue: https://github.com/netblue30/firejail/issues/5014
Description
After yesterdays (2022.03.04) Steam client update, all content tabs in the Steam client are just black.
Running steam outside of firejail or with
--ignore-seccompfixes it. See below for details on the syscalls.Steps to Reproduce
Fix
Following the recommend seccomp debug procedure in a Fedora VM, the offending syscall was made from a
steamwebhelperprocess and isarch=c000003e syscall=161, i.e.chroot. This was tested on top of my changes to make Proton 5.13+ work, as described here: https://github.com/netblue30/firejail/issues/4366#issuecomment-1053756405.Similar to those changes, adding
seccomp !chrootto/etc/firejail/steam.localdid nothing, only altering the seccomp line in/etc/firejail/steam.profilewas successful in unblocking the syscall. Together with the changes for Proton, the diff is:Environment
0.9.68Checklist
/usr/bin/vlc) "fixes" it).https://github.com/netblue30/firejail/issues/1139)@ghost commented on GitHub (Mar 5, 2022):
Very nice debug work. Thanks for doing the work (also for #4366).
That's because seccomp doesn't seem to accumulate (any longer) like for example private-bin and private-etc do. It takes a completely new seccomp line that has all the needed exceptions to work from a foo.local file, followed by
ignore seccompto stop the one from the foo.profile to override it. Have a look in /etc/firejail/palemoon.profile for an example.Can you open a PR for this and #4366?