mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-21 06:45:29 -06:00
To reduce clutter in the user home. This file is apparently intended to specify login information for remote systems, such as username and password for ftp/http connections (similarly to using ~/.ssh/config for ssh connections). From inetutils.info of GNU inetutils 2.6, which provides ftp and telnet binaries (among others): > 11.7 The ‘.netrc’ file > The ‘.netrc’ file contains login and initialization information used > by the auto-login process. It generally resides in the user's home > directory, but a location outside of the home directory can be set > using the environment variable ‘NETRC’. Both locations are overridden > by the command line option ‘-N’. The selected file must be a regular > file, or access will be denied. It seems that the file is intended to be created manually (just like ~/.ssh/config), as it is not mentioned in mpv(1). mpv supports using yt-dlp and ~/.netrc is mentined in yt-dlp(1), though it does not look like it would create the file either. Note also that this entry is not present in any other profile (including the ones that allow ~/.netrc). Related commits: *5d741795c("Use whitelisting for video players (#3472)", 2020-08-15) *8bf892d67("Fix missing mkfile in5d741795c3", 2020-08-16) This is a follow-up to #6732.
98 lines
2.6 KiB
Text
98 lines
2.6 KiB
Text
# Firejail profile for mpv
|
|
# Description: Video player based on MPlayer/mplayer2
|
|
# This file is overwritten after every install/update
|
|
quiet
|
|
# Persistent local customizations
|
|
include mpv.local
|
|
# Persistent global definitions
|
|
include globals.local
|
|
|
|
# In order to save screenshots to a persistent location,
|
|
# edit ~/.config/mpv/foobar.conf:
|
|
# screenshot-directory=~/Pictures
|
|
|
|
# mpv has a powerful Lua API and some of the Lua scripts interact with
|
|
# external resources which are blocked by firejail. In such cases you need to
|
|
# allow these resources by:
|
|
# - noblacklisting additional paths
|
|
# - whitelisting additional paths
|
|
# - adding additional binaries to private-bin
|
|
# - changing/weakening the D-Bus policy
|
|
# - ...
|
|
#
|
|
# Often these scripts require a shell:
|
|
#include allow-bin-sh.inc
|
|
#private-bin sh
|
|
|
|
noblacklist ${HOME}/.cache/mpv
|
|
noblacklist ${HOME}/.config/mpv
|
|
noblacklist ${HOME}/.config/youtube-dl
|
|
noblacklist ${HOME}/.config/yt-dlp
|
|
noblacklist ${HOME}/.config/yt-dlp.conf
|
|
noblacklist ${HOME}/.dvdcss
|
|
noblacklist ${HOME}/.local/state/mpv
|
|
noblacklist ${HOME}/.netrc
|
|
noblacklist ${HOME}/yt-dlp.conf
|
|
noblacklist ${HOME}/yt-dlp.conf.txt
|
|
|
|
# Allow lua (blacklisted by disable-interpreters.inc)
|
|
include allow-lua.inc
|
|
|
|
# Allow python (blacklisted by disable-interpreters.inc)
|
|
include allow-python2.inc
|
|
include allow-python3.inc
|
|
|
|
blacklist /usr/libexec
|
|
|
|
include disable-common.inc
|
|
include disable-devel.inc
|
|
include disable-exec.inc
|
|
include disable-interpreters.inc
|
|
include disable-programs.inc
|
|
include disable-shell.inc
|
|
|
|
read-only ${DESKTOP}
|
|
mkdir ${HOME}/.cache/mpv
|
|
mkdir ${HOME}/.config/mpv
|
|
mkdir ${HOME}/.local/state/mpv
|
|
whitelist ${HOME}/.cache/mpv
|
|
whitelist ${HOME}/.config/mpv
|
|
whitelist ${HOME}/.config/youtube-dl
|
|
whitelist ${HOME}/.config/yt-dlp
|
|
whitelist ${HOME}/.config/yt-dlp.conf
|
|
whitelist ${HOME}/.dvdcss
|
|
whitelist ${HOME}/.local/state/mpv
|
|
whitelist ${HOME}/.netrc
|
|
whitelist ${HOME}/yt-dlp.conf
|
|
whitelist ${HOME}/yt-dlp.conf.txt
|
|
whitelist /usr/share/lua*
|
|
whitelist /usr/share/mpv
|
|
include whitelist-common.inc
|
|
include whitelist-player-common.inc
|
|
include whitelist-usr-share-common.inc
|
|
include whitelist-var-common.inc
|
|
|
|
apparmor
|
|
caps.drop all
|
|
netfilter
|
|
nogroups
|
|
noinput
|
|
nonewprivs
|
|
noroot
|
|
nou2f
|
|
protocol unix,inet,inet6,netlink
|
|
seccomp !set_mempolicy
|
|
seccomp.block-secondary
|
|
tracelog
|
|
|
|
# mpv links to libluajit, so no need to reference "lua*" in private-bin:
|
|
# https://github.com/netblue30/firejail/pull/5711#discussion_r1125622615
|
|
private-bin env,mpv,python*,waf,youtube-dl,yt-dlp
|
|
# private-cache causes slow OSD, see #2838
|
|
#private-cache
|
|
private-dev
|
|
|
|
dbus-user none
|
|
dbus-system none
|
|
|
|
restrict-namespaces
|