blob: ca0446c3044faea637e383c1f2aea65eab2c03af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#!/usr/bin/openrc-run
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
extra_commands="check clear list panic save soft_panic"
extra_started_commands="reload"
depend() {
need localmount #434774
before net
}
checkkernel() {
if ! /sbin/nft list ruleset >/dev/null 2>/dev/null ; then
eerror "Your kernel lacks nftables support, please load"
eerror "appropriate modules and try again."
return 1
fi
return 0
}
checkconfig() {
if [ -z "${NFTABLES_SAVE}" -o ! -f "${NFTABLES_SAVE}" ] ; then
eerror "Not starting nftables. First create some rules then run:"
eerror "/etc/init.d/${SVCNAME} save"
return 1
fi
return 0
}
start_pre() {
checkconfig || return 1
checkkernel || return 1
check || return 1
}
start() {
ebegin "Loading ${SVCNAME} state and starting firewall"
/usr/lib/nftables/nftables.sh load "${NFTABLES_SAVE}"
eend $?
}
stop() {
if [ "${SAVE_ON_STOP}" = "yes" ] ; then
save || return 1
fi
ebegin "Stopping firewall"
if [ "${PANIC_ON_STOP}" = "hard" ]; then
/usr/lib/nftables/nftables.sh panic
elif [ "${PANIC_ON_STOP}" = "soft" ]; then
/usr/lib/nftables/nftables.sh soft_panic
else
/usr/lib/nftables/nftables.sh clear
fi
eend $?
}
reload() {
start_pre || return 1
start
}
clear() {
ebegin "Clearing rules"
/usr/lib/nftables/nftables.sh clear
eend $?
}
list() {
/usr/lib/nftables/nftables.sh list
}
check() {
ebegin "Checking rules"
/usr/lib/nftables/nftables.sh check "${NFTABLES_SAVE}"
eend $?
}
save() {
ebegin "Saving ${SVCNAME} state"
checkpath -q -d "$(dirname "${NFTABLES_SAVE}")"
checkpath -q -m 0600 -f "${NFTABLES_SAVE}"
/usr/lib/nftables/nftables.sh store "${NFTABLES_SAVE}"
eend $?
}
panic() {
if service_started ${SVCNAME}; then
rc-service ${SVCNAME} zap
fi
ebegin "Dropping all packets"
/usr/lib/nftables/nftables.sh panic
eend $?
}
soft_panic() {
if service_started ${SVCNAME}; then
rc-service ${SVCNAME} zap
fi
ebegin "Dropping new connections"
/usr/lib/nftables/nftables.sh soft_panic
eend $?
}
|