0696600c41
The reasons for this are forward looking to pkgbase: * /sbin/init is a special binary; try not to replace it with every package update because an rc script was touched. (a follow-up commit will make init its own package) * having rc in its own place will allow more easy replacement of the rc framework with alternatives, such as openrc. Discussed with: brd (during BSDCam), kmoore Requested by: cem, bz PR: 231522 Approved by: re (gjb)
53 lines
992 B
Bash
Executable File
53 lines
992 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: ugidfw
|
|
# REQUIRE: FILESYSTEMS
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ugidfw"
|
|
desc="Firewall-like access controls for file system objects"
|
|
rcvar="ugidfw_enable"
|
|
start_cmd="ugidfw_start"
|
|
stop_cmd="ugidfw_stop"
|
|
required_modules="mac_bsdextended"
|
|
|
|
ugidfw_load()
|
|
{
|
|
if [ -r "${bsdextended_script}" ]; then
|
|
. "${bsdextended_script}"
|
|
fi
|
|
}
|
|
|
|
ugidfw_start()
|
|
{
|
|
[ -z "${bsdextended_script}" ] && bsdextended_script=/etc/rc.bsdextended
|
|
|
|
if [ -r "${bsdextended_script}" ]; then
|
|
ugidfw_load
|
|
echo "MAC bsdextended rules loaded."
|
|
fi
|
|
}
|
|
|
|
ugidfw_stop()
|
|
{
|
|
local rulecount
|
|
|
|
# Disable the policy
|
|
#
|
|
# Check for the existence of rules and flush them if needed.
|
|
rulecount=$(sysctl -in security.mac.bsdextended.rule_count)
|
|
if [ ${rulecount:-0} -gt 0 ]; then
|
|
ugidfw list | sed -n '2,$p' | cut -d ' ' -f 1 | sort -r -n |
|
|
xargs -n 1 ugidfw remove
|
|
echo "MAC bsdextended rules flushed."
|
|
fi
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|