]> git.ipfire.org Git - ipfire-2.x.git/blame - src/initscripts/init.d/unbound
unbound: Do not try removing forwarders when unbound is not running
[ipfire-2.x.git] / src / initscripts / init.d / unbound
CommitLineData
d0e5f71f
ML
1#!/bin/sh
2# Begin $rc_base/init.d/unbound
3
4# Description : Unbound DNS resolver boot script for IPfire
5# Author : Marcel Lorenz <marcel.lorenz@ipfire.org>
d0e5f71f
ML
6
7. /etc/sysconfig/rc
8. ${rc_functions}
9
b29c97b1
AF
10TEST_DOMAIN="ipfire.org"
11
12# This domain will never validate
13TEST_DOMAIN_FAIL="dnssec-failed.org"
14
7ebc0a16 15INSECURE_ZONES=
b8f5eda8 16USE_FORWARDERS=1
d0e5f71f 17
36792be6
MT
18# Cache any local zones for 60 seconds
19LOCAL_TTL=60
20
b8f5eda8
MT
21# Load optional configuration
22[ -e "/etc/sysconfig/unbound" ] && . /etc/sysconfig/unbound
d0e5f71f
ML
23
24function cidr() {
25 local cidr nbits IFS;
26 IFS=. read -r i1 i2 i3 i4 <<< ${1}
27 IFS=. read -r m1 m2 m3 m4 <<< ${2}
28 cidr=$(printf "%d.%d.%d.%d\n" "$((i1 & m1))" "$((i2 & m2))" "$((i3 & m3))" "$((i4 & m4))")
29 nbits=0
30 IFS=.
31 for dec in $2 ; do
32 case $dec in
33 255) let nbits+=8;;
34 254) let nbits+=7;;
35 252) let nbits+=6;;
36 248) let nbits+=5;;
37 240) let nbits+=4;;
38 224) let nbits+=3;;
39 192) let nbits+=2;;
40 128) let nbits+=1;;
41 0);;
42 *) echo "Error: $dec is not recognised"; exit 1
43 esac
44 done
45 echo "${cidr}/${nbits}"
46}
47
f75c279b
AF
48ip_address_revptr() {
49 local addr=${1}
50
51 local a1 a2 a3 a4
52 IFS=. read -r a1 a2 a3 a4 <<< ${addr}
53
54 echo "${a4}.${a3}.${a2}.${a1}.in-addr.arpa"
55}
56
b8f5eda8
MT
57read_name_servers() {
58 local i
59 for i in 1 2; do
60 echo "$(</var/ipfire/red/dns${i})"
61 done | xargs echo
62}
63
64config_header() {
65 echo "# This file is automatically generated and any changes"
66 echo "# will be overwritten. DO NOT EDIT!"
67 echo
68}
69
70update_forwarders() {
b29c97b1
AF
71 if [ "${USE_FORWARDERS}" = "1" -a -e "/var/ipfire/red/active" ]; then
72 local forwarders
73 local broken_forwarders
74
75 local ns
76 for ns in $(read_name_servers); do
77 test_name_server ${ns} &>/dev/null
78 case "$?" in
79 # Only use DNSSEC-validating or DNSSEC-aware name servers
80 0|2)
81 forwarders="${forwarders} ${ns}"
82 ;;
83 *)
84 broken_forwarders="${broken_forwarders} ${ns}"
85 ;;
86 esac
87 done
88
89 # Show warning for any broken upstream name servers
90 if [ -n "${broken_forwarders}" ]; then
91 boot_mesg "Ignoring broken upstream name server(s): ${broken_forwarders:1}" ${WARNING}
92 echo_warning
93 fi
b8f5eda8 94
b29c97b1
AF
95 if [ -n "${broken_forwarders}" -a -z "${forwarders}" ]; then
96 boot_mesg "Falling back to recursor mode" ${WARNING}
97 echo_warning
b8f5eda8 98
b29c97b1
AF
99 elif [ -n "${forwarders}" ]; then
100 boot_mesg "Configuring upstream name server(s): ${forwarders:1}" ${INFO}
101 echo_ok
b8f5eda8 102
e24d6112 103 echo "${forwarders}" > /var/ipfire/red/dns
b29c97b1
AF
104 unbound-control -q forward ${forwarders}
105 return 0
106 fi
b8f5eda8 107 fi
b29c97b1
AF
108
109 # If forwarders cannot be used we run in recursor mode
e24d6112 110 echo "local recursor" > /var/ipfire/red/dns
b29c97b1 111 unbound-control -q forward off
b8f5eda8
MT
112}
113
f75c279b
AF
114own_hostname() {
115 local hostname=$(hostname -f)
0d7ca700 116 # 1.1.1.1 is reserved for unused green, skip this
f75c279b
AF
117 if [ -n "${GREEN_ADDRESS}" -a "${GREEN_ADDRESS}" != "1.1.1.1" ]; then
118 unbound-control -q local_data "${hostname} ${LOCAL_TTL} IN A ${GREEN_ADDRESS}"
119 fi
120
121 local address
122 for address in ${GREEN_ADDRESS} ${BLUE_ADDRESS} ${ORANGE_ADDRESS}; do
123 [ -n "${address}" ] || continue
124 [ "${address}" = "1.1.1.1" ] && continue
125
126 address=$(ip_address_revptr ${address})
127 unbound-control -q local_data "${address} ${LOCAL_TTL} IN PTR ${hostname}"
128 done
129}
130
36792be6
MT
131update_hosts() {
132 local enabled address hostname domainname
133
134 while IFS="," read -r enabled address hostname domainname; do
135 [ "${enabled}" = "on" ] || continue
136
137 # Build FQDN
138 local fqdn="${hostname}.${domainname}"
139
140 unbound-control -q local_data "${fqdn} ${LOCAL_TTL} IN A ${address}"
f75c279b 141
868d2a1f
MT
142 # Skip reverse resolution if the address equals the GREEN address
143 [ "${address}" = "${GREEN_ADDRESS}" ] && continue
144
f75c279b
AF
145 # Add RDNS
146 address=$(ip_address_revptr ${address})
147 unbound-control -q local_data "${address} ${LOCAL_TTL} IN PTR ${fqdn}"
36792be6
MT
148 done < /var/ipfire/main/hosts
149}
150
b8f5eda8
MT
151write_forward_conf() {
152 (
153 config_header
154
7ebc0a16 155 local insecure_zones="${INSECURE_ZONES}"
a6dcc5bb 156
b8f5eda8
MT
157 local enabled zone server remark
158 while IFS="," read -r enabled zone server remark; do
159 # Line must be enabled.
160 [ "${enabled}" = "on" ] || continue
161
a6dcc5bb
MT
162 # Zones that end with .local are commonly used for internal
163 # zones and therefore not signed
164 case "${zone}" in
165 *.local)
166 insecure_zones="${insecure_zones} ${zone}"
167 ;;
168 esac
169
b8f5eda8
MT
170 echo "forward-zone:"
171 echo " name: ${zone}"
172 echo " forward-addr: ${server}"
173 echo
174 done < /var/ipfire/dnsforward/config
a6dcc5bb
MT
175
176 if [ -n "${insecure_zones}" ]; then
177 echo "server:"
178
179 for zone in ${insecure_zones}; do
180 echo " domain-insecure: ${zone}"
181 done
182 fi
b8f5eda8
MT
183 ) > /etc/unbound/forward.conf
184}
185
b658a451
MT
186write_tuning_conf() {
187 # https://www.unbound.net/documentation/howto_optimise.html
188
189 # Determine number of online processors
190 local processors=$(getconf _NPROCESSORS_ONLN)
191
192 # Determine number of slabs
193 local slabs=1
194 while [ ${slabs} -lt ${processors} ]; do
195 slabs=$(( ${slabs} * 2 ))
196 done
197
198 # Determine amount of system memory
199 local mem=$(get_memory_amount)
200
201 # In the worst case scenario, unbound can use double the
202 # amount of memory allocated to a cache due to malloc overhead
203
204 # Large systems with more than 2GB of RAM
205 if [ ${mem} -ge 2048 ]; then
206 mem=128
207
208 # Small systems with less than 256MB of RAM
209 elif [ ${mem} -le 256 ]; then
210 mem=8
211
212 # Everything else
213 else
214 mem=32
215 fi
216
217 (
218 config_header
219
220 # We run one thread per processor
221 echo "num-threads: ${processors}"
222
223 # Adjust number of slabs
224 echo "infra-cache-slabs: ${slabs}"
225 echo "key-cache-slabs: ${slabs}"
226 echo "msg-cache-slabs: ${slabs}"
227 echo "rrset-cache-slabs: ${slabs}"
228
229 # Slice up the cache
230 echo "rrset-cache-size: $(( ${mem} / 2 ))m"
231 echo "msg-cache-size: $(( ${mem} / 4 ))m"
232 echo "key-cache-size: $(( ${mem} / 4 ))m"
233 ) > /etc/unbound/tuning.conf
234}
235
236get_memory_amount() {
237 local key val unit
238
239 while read -r key val unit; do
240 case "${key}" in
241 MemTotal:*)
242 # Convert to MB
243 echo "$(( ${val} / 1024 ))"
244 break
245 ;;
246 esac
247 done < /proc/meminfo
248}
b8f5eda8 249
b29c97b1
AF
250test_name_server() {
251 local ns=${1}
252
253 # Return codes:
254 # 0 DNSSEC validating
255 # 1 Error: unreachable, etc.
256 # 2 DNSSEC aware
257 # 3 NOT DNSSEC-aware
258
259 # Exit when the server is not reachable
260 ns_is_online ${ns} || return 1
261
262 # Return 0 if validating
263 ns_is_validating ${ns} && return 0
264
265 local errors
266 for rr in DNSKEY DS RRSIG; do
267 if ! ns_forwards_${rr} ${ns}; then
268 errors="${errors} ${rr}"
269 fi
270 done
271
272 if [ -n "${errors}" ]; then
273 echo >&2 "Unable to retrieve the following resource records from ${ns}: ${errors:1}"
274 return 3
275 fi
276
277 # Is DNSSEC-aware
278 return 2
279}
280
281# Sends an A query to the nameserver w/o DNSSEC
282ns_is_online() {
283 local ns=${1}
284
285 dig @${ns} +nodnssec A ${TEST_DOMAIN} >/dev/null
286}
287
288# Resolving ${TEST_DOMAIN_FAIL} will fail if the nameserver is validating
289ns_is_validating() {
290 local ns=${1}
291
292 dig @${ns} A ${TEST_DOMAIN_FAIL} | grep -q SERVFAIL
293}
294
295# Checks if we can retrieve the DNSKEY for this domain.
296# dig will print the SOA if nothing was found
297ns_forwards_DNSKEY() {
298 local ns=${1}
299
300 dig @${ns} DNSKEY ${TEST_DOMAIN} | grep -qv SOA
301}
302
303ns_forwards_DS() {
304 local ns=${1}
305
306 dig @${ns} DS ${TEST_DOMAIN} | grep -qv SOA
307}
308
309ns_forwards_RRSIG() {
310 local ns=${1}
311
312 dig @${ns} +dnssec A ${TEST_DOMAIN} | grep -q RRSIG
313}
314
315ns_supports_tcp() {
316 local ns=${1}
317
318 dig @${ns} +tcp A ${TEST_DOMAIN} >/dev/null || return 1
319}
320
d0e5f71f
ML
321case "$1" in
322 start)
80bc6022
MT
323 # Print a nicer messagen when unbound is already running
324 if pidofproc -s unbound; then
325 statusproc /usr/sbin/unbound
326 exit 0
327 fi
328
b8f5eda8 329 eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings)
d0e5f71f 330
b8f5eda8
MT
331 # Create control keys at first run
332 if [ ! -r "/etc/unbound/unbound_control.key" ]; then
333 unbound-control-setup -d /etc/unbound &>/dev/null
334 fi
335
336 # Update configuration files
b658a451 337 write_tuning_conf
b8f5eda8
MT
338 write_forward_conf
339
340 boot_mesg "Starting Unbound DNS Proxy..."
341 loadproc /usr/sbin/unbound || exit $?
342
f75c279b
AF
343 # Make own hostname resolveable
344 own_hostname
345
b8f5eda8
MT
346 # Update any known forwarding name servers
347 update_forwarders
36792be6
MT
348
349 # Update hosts
350 update_hosts
b8f5eda8 351 ;;
d0e5f71f
ML
352
353 stop)
b8f5eda8
MT
354 boot_mesg "Stopping Unbound DNS Proxy..."
355 killproc /usr/sbin/unbound
356 ;;
d0e5f71f
ML
357
358 restart)
b8f5eda8
MT
359 $0 stop
360 sleep 1
361 $0 start
362 ;;
d0e5f71f
ML
363
364 status)
b8f5eda8 365 statusproc /usr/sbin/unbound
b8f5eda8
MT
366 ;;
367
368 update-forwarders)
cd812106
MT
369 # Do not try updating forwarders when unbound is not running
370 if ! pgrep unbound &>/dev/null; then
371 exit 0
372 fi
373
b8f5eda8
MT
374 update_forwarders
375 ;;
d0e5f71f 376
b29c97b1
AF
377 test-name-server)
378 ns=${2}
379
380 test_name_server ${ns}
381 ret=${?}
382
383 case "${ret}" in
384 0)
385 echo "${ns} is validating"
386 ;;
387 2)
388 echo "${ns} is DNSSEC-aware"
389 ;;
390 3)
391 echo "${ns} is NOT DNSSEC-aware"
392 ;;
393 *)
394 echo "Test failed for an unknown reason"
395 ;;
396 esac
397
398 if ns_supports_tcp ${ns}; then
399 echo "${ns} supports TCP fallback"
400 else
401 echo "${ns} does not support TCP fallback"
402 fi
403
404 exit ${ret}
405 ;;
406
d0e5f71f 407 *)
b29c97b1 408 echo "Usage: $0 {start|stop|restart|status|update-forwarders|test-name-server}"
b8f5eda8
MT
409 exit 1
410 ;;
d0e5f71f
ML
411esac
412
413# End $rc_base/init.d/unbound