33 lines
729 B
Text
33 lines
729 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# shadowsocks-rust only:
|
|
# https://github.com/shadowsocks/shadowsocks-rust
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/ssserver
|
|
profile ssserver @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
network inet stream,
|
|
network inet6 stream,
|
|
network inet dgram,
|
|
network inet6 dgram,
|
|
|
|
@{exec_path} mr,
|
|
|
|
/etc/shadowsocks-rust/server/*/ss.json{,5} r,
|
|
|
|
owner @{user_config_dirs}/shadowsocks-rust/server/*/ss.json{,5} r,
|
|
|
|
owner @{PROC}/@{pid}/cgroup r,
|
|
|
|
include if exists <local/ssserver>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|